ScrepyDocs

Add Rank Tracker keywords

Adds at most 100 unique keywords. `both` creates two tracked records per keyword and consumes two units. Initial analysis is scheduled automatically; manual reanalysis is not available.

POST/projects/{project_uid}/rank-tracker/keywords

Adds at most 100 unique keywords. both creates two tracked records per keyword and consumes two units. Initial analysis is scheduled automatically; manual reanalysis is not available.

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

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/projects/string/rank-tracker/keywords" \  -H "Content-Type: application/json" \  -d '{    "keywords": [      "string"    ],    "country_code": "string",    "language_code": "string"  }'
{  "data": {    "keywords": [      {        "id": 0,        "keyword": "string",        "device": "mobile",        "country_code": "string",        "language_code": "string",        "status": "pending"      }    ],    "initial_analysis_scheduled": true  }}