Skip to main content
POST
/
api
/
ubersuggest
/
domains
/
pages
/ubersuggest/domains/pages
curl --request POST \
  --url https://api.anysite.io/api/ubersuggest/domains/pages \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "domain": "<string>",
  "count": 2,
  "timeout": 300,
  "lang": "en",
  "loc_id": 2840
}
'
[
  {
    "url": "<string>",
    "@type": "@ubersuggest_domain_top_page",
    "path": "<string>",
    "domain": "<string>",
    "title": "<string>",
    "traffic": 123,
    "backlinks": 123,
    "ref_domains": 123,
    "facebook_shares": 123,
    "pinterest_shares": 123,
    "reddit_shares": 123
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
domain
string
required

Domain to list top traffic pages for

Minimum string length: 1
Example:

"nytimes.com"

count
integer
required

Max number of pages to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
lang
enum<string>
default:en

Content language

Available options:
en,
es,
de,
fr,
it,
pt,
nl,
pl,
ru,
ja,
hi
loc_id
integer
default:2840

Location id (resolve via the locations search endpoint, e.g. 2840 for the United States)

Required range: x >= 1
Example:

2840

Response

Successful Response

url
string
required
@type
string
default:@ubersuggest_domain_top_page
path
string | null
domain
string | null
title
string | null
traffic
integer | null
ref_domains
integer | null
facebook_shares
integer | null
pinterest_shares
integer | null
reddit_shares
integer | null