Anchor Text
Get anchor text distribution for a domain.
GET /v1/anchor-text
Returns anchor text phrases used in links pointing to the domain. Costs 2 credits.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
domain | string | Yes | The domain to query |
limit | integer | No | Max results (default 100, max 1000) |
offset | integer | No | Results to skip for pagination |
Request
curl "https://api.rankparse.com/v1/anchor-text?domain=example.com" \
-H "X-API-Key: rp_your_key"Response
{
"data": [
{
"anchor_text": "example",
"link_count": 1234,
"domain_count": 567
}
],
"credits_used": 2
}