Skip to main content
POST
/
api
/
ubersuggest
/
urls
/
backlink-counts
/ubersuggest/urls/backlink-counts
curl --request POST \
  --url https://api.anysite.io/api/ubersuggest/urls/backlink-counts \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "domains": [
    "<string>"
  ],
  "timeout": 300
}
'
[
  {
    "domain": "<string>",
    "@type": "@ubersuggest_url_backlink_counts",
    "backlinks": 123,
    "ref_domains": 123,
    "nofollow_backlinks": 123,
    "dofollow_backlinks": 123
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
domains
string[]
required

List of domains or URLs to get backlink counts for

Minimum array length: 1
Example:
["nytimes.com", "example.com"]
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

domain
string
required
@type
string
default:@ubersuggest_url_backlink_counts
ref_domains
integer | null