New Orchly MCP & API are live. Build custom workflows with your SEO & AI visibility data.
GET /prompts

List prompts

The prompts tracked in the workspace.

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.
topic_id query string optional
enabled query boolean optional
limit query integer optional Maximum number of items to return.

Responses

200 OK
FieldTypeDescription
workspace_id string
prompts Prompt[]

Example request

curl --request GET \
  --url https://app.orchly.ai/api/v1/prompts \
  --header 'Authorization: Bearer obk_live_xxx' \
  --header 'X-Workspace-Id: ws_xxx'
const res = await fetch(`https://app.orchly.ai/api/v1/prompts`, {
  method: 'GET',
  headers: {
    'Authorization': 'Bearer obk_live_xxx',
    'X-Workspace-Id': 'ws_xxx',
  },
});
const data = await res.json();
import requests

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

Example response

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

{
  "workspace_id": "string",
  "prompts": [
    {
      "id": "string",
      "prompt_text": "string",
      "topic_id": "string",
      "enabled": true,
      "country": "string",
      "target_models": [],
      "priority": 0,
      "last_run_at": "string",
      "next_run_at": "string",
      "created_at": "string"
    }
  ]
}