Dexodata API Documentation

Connect your applications to Dexodata services for proxy management, rotation, and usage analytics.

Quick Start

1. Generate Token

Create a personal API token in your dashboard and store it securely.

2. Call Endpoint

Use the Authorization: Bearer header for every request.

3. Monitor Usage

Track consumption and rate-limit headers to keep your integration stable.

Authentication

Base URL: https://api.dexodata.com

Auth Type: Bearer token

Header: Authorization: Bearer YOUR_API_TOKEN

Keep tokens private. Rotate keys if exposure is suspected.

Core Endpoints

MethodPathDescriptionAuth
GET/landing/proxy/poolsList available proxy pools by type and location.Required
GET/landing/proxy/pools/:id/endpointsGet connection endpoints for a selected pool.Required
POST/landing/proxy/rotateRequest IP rotation for a rotatable session.Required
GET/landing/usageRead current traffic and request usage statistics.Required
GET/landing/billing/planGet active plan, limits, and renewal details.Required

Code Examples

cURL

curl -X GET "https://api.dexodata.com/landing/usage" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Accept: application/json"

JavaScript

const response = await fetch("https://api.dexodata.com/landing/proxy/pools", {
  method: "GET",
  headers: {
    "Authorization": "Bearer YOUR_API_TOKEN",
    "Accept": "application/json"
  }
})

const data = await response.json()
console.log(data)

Python

import requests

url = "https://api.dexodata.com/landing/proxy/rotate"
headers = {
    "Authorization": "Bearer YOUR_API_TOKEN",
    "Accept": "application/json"
}
payload = {"session_id": "session_123"}

response = requests.post(url, headers=headers, json=payload, timeout=30)
print(response.status_code, response.json())

Best Practices

  • Use token-based authentication for all API requests.
  • Respect website terms of service and robots directives.
  • Set conservative request concurrency and backoff retries.
  • Rotate sessions only when required by the use case.
  • Monitor usage and set internal limits to avoid overage.

Frequently Asked Questions

Need help with integration?

Our team can help you design a stable, compliant integration for your use case.

We eat cookies. Read more about Cookies Policy