Skip to main content
GET
/
api
/
v1
/
conversation-queries
List conversation queries
curl --request GET \
  --url https://app.promptingco.com/api/v1/conversation-queries \
  --header 'Authorization: Bearer <token>'
{
  "ok": true,
  "data": {
    "data": [
      {
        "id": "<string>",
        "promptId": "<string>",
        "createdAt": "<string>",
        "updatedAt": "<string>",
        "deletedAt": "<string>",
        "organizationId": "<string>",
        "userPersonaId": "<string>",
        "model": "<string>",
        "maxTurns": 123,
        "userPersona": {
          "id": "<string>",
          "name": "<string>"
        },
        "prompt": {
          "id": "<string>",
          "message": "<string>"
        }
      }
    ],
    "pagination": {
      "page": 2,
      "limit": 2,
      "total": 1,
      "totalPages": 1
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.promptingcompany.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer session or OAuth access token. Available OAuth scopes:

  • content:read: Read site pages, markdown content, and llms.txt files
  • content:write: Create, update, and delete site pages and content
  • prompts:read: Read prompts, topics, and prompt analysis results
  • prompts:write: Create, update, archive prompts
  • simulations:read: Read agent-simulation tasks, runs, environments, and analytics
  • simulations:write: Create and trigger simulation runs
  • logs:read: Read AI-traffic logs and request-level audit events
  • analytics:read: Read analytics aggregates (rankings, mentions, sources, SOV)
  • products:read: Read product metadata and competitor data
  • products:write: Update product settings and competitor lists

Query Parameters

page
integer
Required range: x >= 1
pageSize
integer
Required range: 1 <= x <= 500
limit
integer
Required range: 1 <= x <= 500
brandId
string
viewId
string
promptId
string
promptIds
string

Response

Successful response

ok
enum<boolean>
required
Available options:
true
data
object
required