ScrepyDocs

List pages linking to a destination URL

List pages linking to a destination URL

GET/projects/{project_uid}/crawls/{crawl_uid}/links/sources

Authorization

bearerApiKey
AuthorizationBearer <token>

Create a REST API key in Settings > Connected Apps. MCP credentials do not authenticate this API.

In: header

Path Parameters

project_uid*string

Accessible project UID. Discover it with GET /projects; do not guess it.

Match^[a-z0-9]{10}$
crawl_uid*string

Crawl UID belonging to the selected project. Discover it with GET /projects/{project_uid}/crawls.

Match^[a-z0-9]{16}$

Query Parameters

destination_url*string

Exact HTTP or HTTPS destination URL.

Match^https?://
Formaturi
Lengthlength <= 2048
limit?integer

Maximum records to return. Defaults to 50.

Range1 <= value <= 100
Default50
cursor?string

Opaque cursor returned by the prior response. Do not construct or alter it.

Lengthlength <= 512

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/projects/string/crawls/string/links/sources?destination_url=http%3A%2F%2Fexample.com"
{  "data": [    {      "source_url": "string",      "source_status_code": 0,      "anchor_text": "string",      "fetch_status_code": 0,      "is_nofollow": true,      "target_blank": true    }  ],  "links": {    "next": "http://example.com"  },  "meta": {    "limit": 0,    "next_cursor": "string"  }}