ScrepyDocs

Get Rank Tracker input options

Returns public country, language, device, frequency, and segment rule options. Internal provider identifiers are omitted.

GET/projects/{project_uid}/rank-tracker/options

Returns public country, language, device, frequency, and segment rule options. Internal provider identifiers are omitted.

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}$

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/projects/string/rank-tracker/options"
{  "data": {    "countries": [      {        "code": "string",        "language_code": "string",        "display": "string"      }    ],    "languages": [      {        "code": "string",        "country_code": "string",        "display": "string",        "label": "string"      }    ],    "devices": [      "mobile"    ],    "frequencies": [      "daily"    ],    "segment_rules": {      "fields": [        "path"      ],      "operators": [        "starts_with"      ],      "maximum_rules": 5,      "rule_join": "and",      "case_sensitive": false    }  }}