ReachReport's API (1.1.0)

Download OpenAPI specification:

ChangeLog

  • 1.1.0: added POST /traffics endpoint to handle batch requests.

Traffic

Get traffic data about a domain name or an URL.

query Parameters
access_token
required
string
Example: access_token=API_KEY

Your API_KEY

url
required
string
Example: url=google.com

Domain name (FQDN) or some URL

Responses

Response samples

Content type
application/json
{
  • "url": "google.com",
  • "result": {
    },
  • "credits": 99999
}

Traffics

Get a batch of traffic data about domain names and URLs.

Use this endpoint to simultaneously request up to 250 domains.

For each element in the "urls" array a result is returned, with a possible error code, in the "results" array.

Request Body schema: application/json
access_token
string
urls
Array of strings <= 250 items

Array of domains and URLs

Responses

Request samples

Content type
application/json
{
  • "access_token": "API_KEY",
  • "urls": [
    ]
}

Response samples

Content type
application/json
{
  • "credits": 99999,
  • "results": [
    ]
}