openapi: 3.2.0 info: title: Thordata Public Account API version: 1.0.0 description: Account, billing balance, proxy inventory, proxy sub-user management and IP whitelisting. Authenticated with the publicToken + publicKey pair, sent as the token and key headers (also accepted as query parameters). 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://openapi.thordata.com/api description: Public API tags: - name: Account description: Balances and usage statistics paths: /account/usage-statistics: get: operationId: getAccountUsageStatistics tags: - Account summary: Daily traffic usage statistics description: Returns query_days, range_usage_traffic (KB), total_usage_traffic (KB), traffic_balance (KB) and a daily usage breakdown. The query range cannot exceed 180 days (public API code 10021). parameters: - name: token in: query required: true description: Public token. May also be sent as the token header. schema: type: string - name: key in: query required: true description: Public key. May also be sent as the key header. schema: type: string - name: from_date in: query required: false description: Start date of the range schema: type: string - name: to_date in: query required: false description: End date of the range schema: type: string responses: '200': description: Success. Billed only when the payload code is 200. content: application/json: schema: $ref: '#/components/schemas/Envelope' '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' '403': description: Forbidden - the target server refused to fulfill the request. 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' '504': description: Timeout Error - the proxy server timed out waiting for the upstream server. Not billed. content: application/json: schema: $ref: '#/components/schemas/Envelope' /account/traffic-balance: get: operationId: getTrafficBalance tags: - Account summary: Remaining traffic balance description: Returns traffic_balance as a number in KB. parameters: - name: token in: query required: true description: Public token. May also be sent as the token header. schema: type: string - name: key in: query required: true description: Public key. May also be sent as the key header. schema: type: string responses: '200': description: Success. Billed only when the payload code is 200. content: application/json: schema: $ref: '#/components/schemas/Envelope' '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' '403': description: Forbidden - the target server refused to fulfill the request. 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' '504': description: Timeout Error - the proxy server timed out waiting for the upstream server. Not billed. content: application/json: schema: $ref: '#/components/schemas/Envelope' /account/wallet-balance: get: operationId: getWalletBalance tags: - Account summary: Wallet balance description: Returns balance as a number in USD. parameters: - name: token in: query required: true description: Public token. May also be sent as the token header. schema: type: string - name: key in: query required: true description: Public key. May also be sent as the key header. schema: type: string responses: '200': description: Success. Billed only when the payload code is 200. content: application/json: schema: $ref: '#/components/schemas/Envelope' '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' '403': description: Forbidden - the target server refused to fulfill the request. 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' '504': description: Timeout Error - the proxy server timed out waiting for the upstream server. 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. securitySchemes: PublicToken: type: apiKey in: header name: token description: Public token (THORDATA_PUBLIC_TOKEN) from the Thordata Dashboard. PublicKey: type: apiKey in: header name: key description: Public key (THORDATA_PUBLIC_KEY) from the Thordata Dashboard.