Mangools/API

Get detail of tracking (legacy)

Legacy endpoint kept for backwards compatibility.

Prefer the modern endpoints:

  • GET /serpwatcher/trackings/{tracking_id}/detail — tracking metadata together with its keyword list
  • POST /serpwatcher/trackings/{tracking_id}/stats — per-keyword ranks, history and aggregated statistics over a date range
GET
/serpwatcher/trackings/{tracking_id}

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

tracking_id*string

tracking_id

Query Parameters

from?string

Filter from date

to?string

Filter to date

Response Body

application/json

application/json

application/json

curl -X GET "https://api.mangools.com/v3/serpwatcher/trackings/string"
{
  "user_id": "string",
  "domain": "string",
  "location_id": "string",
  "location": "string",
  "platform_id": "string",
  "created_at": "string"
}
{
  "error": {
    "type": "AuthError",
    "message": "Invalid API Key"
  }
}
{
  "error": {
    "type": "Error",
    "message": "Tag not found"
  }
}