Skip to main content

Proxy for N8N

Davi avatar
Written by Davi
Updated over 3 months ago

Step 1: Copy Your API Token

  1. On your dashboard, go to Profile → API Key.

  2. Click Copy Token to copy your API key to the clipboard.

    Step 2: Authorize the Token

    1. Open the API Documentation page.

    2. Click the Authorize button.

    3. In the input field, enter your key in the following format:

      x-api-key your-api-key


      Click Authorize, then Close.

    Step 3: Test the Connection

    1. Choose any GET endpoint from the API documentation.

    2. Click Try it out, then Execute.

    3. If the setup is correct, you’ll receive a 200 OK response.

      • If you encounter an error, double-check that your token is correctly authorized.

Step 4: Set Up N8N

  1. On your N8N dashboard, click Add First Step.

  2. Select HTTP Request from the list of available nodes.

Step 5: Configure the Request

  1. Method: GET

  2. URL: https://api.nodemaven.com/api/v2/base/locations/countries/

    1. This is an example who retrieve a list of countries. You can check the full API URLs here. There you'll find other functions like:

      1. GET /api/v2/base/locations/countries/ — List of Countries in a defined location
        GET /api/v2/base/locations/regions/ — List of Regions in a defined location
        GET /api/v2/base/locations/cities/ — List of Cities in a defined location
        GET /api/v2/base/locations/isps/ — List of ISPs in a defined
        GET /api/v2/base/locations/zipcodes/ — List of zip codes in a defined location
        GET /api/v2/base/statistics/data/ — Data Statistics
        GET /api/v2/base/statistics/requests/ — Requests Statistics
        GET /api/v2/base/statistics/domains/ — Domains Statistics

  3. Enable the Toggle header switch.

  4. Add a new header:

    • Name: Authorization

    • Value: x-api-key your-api-key

  5. Add another header:

    • Name: Content-Type

    • Value: application/json

    Step 6: Execute the Request

    1. Click Execute Step.

    2. You should see a list of all available countries.

    Congratulations! Your N8N setup is complete and successfully connected to the API.

Did this answer your question?