GET
/
api
/
v1
/
serp_js
/
{uuid}
curl --request GET \
  --url https://www.fetchserp.com/api/v1/serp_js/{uuid} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "query": "<string>",
    "country": "<string>",
    "results": [
      {
        "ai_overview": {
          "content": "<string>",
          "sources": [
            {
              "title": "<string>",
              "url": "<string>",
              "site_name": "<string>",
              "description": "<string>",
              "ranking": 123
            }
          ]
        },
        "search_results": [
          {
            "site_name": "<string>",
            "url": "<string>",
            "title": "<string>",
            "description": "<string>",
            "ranking": 123
          }
        ]
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

uuid
string
required

The uuid returned by the SERP JS endpoint

Response

200
application/json

success

The response is of type object.