New Orchly MCP & API are live. Build custom workflows with your SEO & AI visibility data.
POST /ranks/keywords/bulk

Bulk add keywords

Add up to 1000 keywords at once. Requires `content:write`.

Authenticate with Authorization: Bearer obk_live_xxx. See authentication.

Parameters

NameInTypeRequiredDescription
X-Workspace-Id header string required The workspace to scope the request to. Can also be passed as a `workspace_id` query parameter.

Request body

Send as JSON in the request body.

FieldTypeRequiredDescription
keywords object[] required

Responses

200 Created
FieldTypeDescription
created integer
ids string[]

Example request

curl --request POST \
  --url https://app.orchly.ai/api/v1/ranks/keywords/bulk \
  --header 'Authorization: Bearer obk_live_xxx' \
  --header 'X-Workspace-Id: ws_xxx' \
  --header 'Content-Type: application/json' \
  --data '{ "keywords": "..." }'
const res = await fetch(`https://app.orchly.ai/api/v1/ranks/keywords/bulk`, {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer obk_live_xxx',
    'X-Workspace-Id': 'ws_xxx',
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({"keywords":"..."}),
});
const data = await res.json();
import requests

resp = requests.post(
    "https://app.orchly.ai/api/v1/ranks/keywords/bulk",
    headers={
        "Authorization": "Bearer obk_live_xxx",
        "X-Workspace-Id": "ws_xxx",
    },
    json={"keywords":"..."},
)
data = resp.json()

Example response

A 200 response. Dynamic fields are shown as their type.

{
  "created": 0,
  "ids": [
    "string"
  ]
}