Mangools/API

Get serp snapshot image url

Prerequisites

This endpoint requires a prior call to /serpchecker/serps that produced the serp_id. The snapshot is rendered from a pre-parsed SERP page stored by that lookup; without it the endpoint returns HTTP 404 Serp not found.

GET
/serpchecker/serps/{serp_id}/snapshot

Authorization

ApiKeyAuth
x-access-token<token>

API token issued for your Mangools account, sent as an API key in the x-access-token HTTP header. This is NOT a standard RFC 6750 Authorization: Bearer <token> header. Auto-generated clients should be configured to send the token in x-access-token accordingly.

In: header

Path Parameters

serp_id*string

serp ID

Response Body

application/json

application/json

application/json

curl -X GET "https://api.mangools.com/v3/serpchecker/serps/string/snapshot"
{
  "image": "string"
}
{
  "error": {
    "type": "AuthError",
    "message": "Invalid API Key"
  }
}
{
  "error": {
    "type": "Error",
    "message": "Tag not found"
  }
}