Skip to main content
POST
/
api
/
ubersuggest
/
pages
/
keywords
/ubersuggest/pages/keywords
curl --request POST \
  --url https://api.anysite.io/api/ubersuggest/pages/keywords \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "page": "<string>",
  "count": 2,
  "timeout": 300,
  "lang": "en",
  "loc_id": 2840
}
'
[
  {
    "keyword": "<string>",
    "@type": "@ubersuggest_page_keyword",
    "position": 123,
    "position_group": 123,
    "type": "<string>",
    "volume": 123,
    "cpc": 123,
    "competition": 123,
    "seo_difficulty": 123,
    "paid_difficulty": 123,
    "traffic": 123,
    "url": "<string>",
    "updated_at": 123
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
page
string
required

Page URL to list ranking keywords for

Minimum string length: 1
Example:

"https://www.nytimes.com/"

count
integer
required

Max number of keywords 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

Keyword 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

keyword
string
required
@type
string
default:@ubersuggest_page_keyword
position
integer | null
position_group
integer | null
type
string | null
volume
integer | null
cpc
number | null
competition
number | null
seo_difficulty
integer | null
paid_difficulty
integer | null
traffic
integer | null
url
string | null
updated_at
integer | null