GET
/
api
/
v1
/
backlinks
curl --request GET \
  --url https://www.fetchserp.com/api/v1/backlinks \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "backlinks_count": 123,
    "backlinks": [
      {
        "source_url": "<string>",
        "target_url": "<string>",
        "anchor_text": "<string>",
        "nofollow": true,
        "rel_attributes": [
          "<string>"
        ],
        "context_text": "<string>",
        "source_domain": "<string>",
        "target_domain": "<string>",
        "page_title": "<string>",
        "meta_description": "<string>"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

A bearer token that will be supplied within an Authorization header as bearer <token>.

Query Parameters

domain
string
required

The domain to search for backlinks

search_engine
string

The search engine to use. Supported values: google, bing, yahoo and duckduckgo. Default to google.

country
string

The country to search from. Default to us.

pages_number
integer

The number of pages to search (1-30). Default to 15.

Response

200
application/json

success

The response is of type object.