Thordata Proxy IP Extract API

Pull a batch of proxy endpoints as host:port pairs for the residential or unlimited product, filtered by country, state, city, protocol and session time, returned as plain text or JSON. Used to hand a pool of endpoints to a client that rotates them itself rather than relying on the gateway.

Operations 2

GET /api Extract residential proxy endpoints #
GET /unlimited_api Extract unlimited-product proxy endpoints #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/thordata-proxy-ip-extract-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

thordata-proxy-extract-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Thordata Proxy IP Extract Proxy Extract API
  version: 1.0.0
  description: Pull a batch of proxy endpoints (host:port) for the residential or unlimited product, optionally filtered by country, state, city, protocol and session time.
  contact:
    name: Thordata Support
    email: support@thordata.com
    url: https://www.thordata.com/contact-us
  x-derived-from: https://raw.githubusercontent.com/Thordata/thordata-sdk-spec/main/v1.json
  x-derived-by: API Evangelist enrichment pipeline
  x-derived-on: '2026-08-11'
servers:
- url: https://get-ip.thordata.net
  description: Proxy IP extraction
tags:
- name: Proxy Extract
  description: Batch proxy endpoint extraction
paths:
  /api:
    get:
      operationId: extractResidentialProxies
      tags:
      - Proxy Extract
      summary: Extract residential proxy endpoints
      description: Supports country/state/city filters.
      parameters:
      - name: city
        in: query
        required: false
        description: ''
        schema:
          type: string
      - name: country
        in: query
        required: false
        description: ''
        schema:
          type: string
      - name: num
        in: query
        required: true
        description: Number of IPs to request
        schema:
          type: string
      - name: port
        in: query
        required: false
        description: ''
        schema:
          type: string
      - name: protocol
        in: query
        required: false
        description: Proxy protocol hint for returned endpoints
        schema:
          type: string
      - name: return_type
        in: query
        required: false
        description: Response format
        schema:
          type: string
          enum:
          - txt
          - json
          default: txt
      - name: sep
        in: query
        required: false
        description: Separator used for txt return_type
        schema:
          type: string
          default: \r\n
      - name: state
        in: query
        required: false
        description: ''
        schema:
          type: string
      - name: td-customer
        in: query
        required: false
        description: Optional username identifier used by the service
        schema:
          type: string
      - name: time
        in: query
        required: false
        description: Time limit (seconds or minutes depending on backend), passed as 'time'
        schema:
          type: string
      responses:
        '200':
          description: Proxy endpoints as text (host:port separated by sep) or JSON.
          content:
            text/plain:
              schema:
                type: string
                example: 1.2.3.4:9999
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: integer
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        ip:
                          type: string
                        port:
                          type: integer
        '400':
          description: Bad Request - invalid parameters were passed. Not billed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Envelope'
        '401':
          description: Unauthorized - authentication failed; check token validity. Not billed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Envelope'
        '429':
          description: Too Many Requests - request rate exceeded the API limit. Retryable with exponential backoff. Not billed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Envelope'
        '500':
          description: Internal Server Error. Retryable with exponential backoff. Not billed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Envelope'
  /unlimited_api:
    get:
      operationId: extractUnlimitedProxies
      tags:
      - Proxy Extract
      summary: Extract unlimited-product proxy endpoints
      parameters:
      - name: city
        in: query
        required: false
        description: ''
        schema:
          type: string
      - name: country
        in: query
        required: false
        description: ''
        schema:
          type: string
      - name: num
        in: query
        required: true
        description: Number of IPs to request
        schema:
          type: string
      - name: port
        in: query
        required: false
        description: ''
        schema:
          type: string
      - name: protocol
        in: query
        required: false
        description: Proxy protocol hint for returned endpoints
        schema:
          type: string
      - name: return_type
        in: query
        required: false
        description: Response format
        schema:
          type: string
          enum:
          - txt
          - json
          default: txt
      - name: sep
        in: query
        required: false
        description: Separator used for txt return_type
        schema:
          type: string
          default: \r\n
      - name: state
        in: query
        required: false
        description: ''
        schema:
          type: string
      - name: td-customer
        in: query
        required: false
        description: Optional username identifier used by the service
        schema:
          type: string
      - name: time
        in: query
        required: false
        description: Time limit (seconds or minutes depending on backend), passed as 'time'
        schema:
          type: string
      responses:
        '200':
          description: Proxy endpoints as text (host:port separated by sep) or JSON.
          content:
            text/plain:
              schema:
                type: string
                example: 1.2.3.4:9999
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: integer
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        ip:
                          type: string
                        port:
                          type: integer
        '400':
          description: Bad Request - invalid parameters were passed. Not billed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Envelope'
        '401':
          description: Unauthorized - authentication failed; check token validity. Not billed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Envelope'
        '429':
          description: Too Many Requests - request rate exceeded the API limit. Retryable with exponential backoff. Not billed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Envelope'
        '500':
          description: Internal Server Error. Retryable with exponential backoff. Not billed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Envelope'
components:
  schemas:
    Envelope:
      type: object
      description: Thordata JSON envelope. The effective status is the payload `code` when present and not 200, otherwise the HTTP status (v1.json errors.precedence).
      properties:
        code:
          type: integer
          description: Application status code. 200 success, 300 not collected (not billed).
        msg:
          type: string
          description: 'Human-readable message. Alternate field names: message, error, detail, description.'
        data:
          description: Result payload; shape varies by operation.