Skip to main content
GET
/
{brand_id}
/
prompts
List Prompts
curl --request GET \
  --url https://api.scrunchai.com/v1/{brand_id}/prompts \
  --header 'Authorization: Bearer <token>'
{
  "total": 123,
  "items": [
    {
      "id": 123,
      "text": "<string>",
      "stage": "Advice",
      "persona_id": 123,
      "platforms": [
        "chatgpt"
      ],
      "tags": [
        "<string>"
      ],
      "topics": [
        "<string>"
      ],
      "created_at": "2023-11-07T05:31:56Z"
    }
  ],
  "offset": 0,
  "limit": 123
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

brand_id
integer
required

Query Parameters

limit
integer
default:100
Required range: x >= 1
offset
integer
default:0
Required range: x >= 0
stage
enum<string> | null
Available options:
Advice,
Awareness,
Evaluation,
Comparison,
Other

Response

Successful Response

total
integer
required
items
PromptListing · object[]
required
offset
integer
default:0
limit
integer | null