Skip to main content
POST
/
prompt
Get Prompts
curl --request POST \
  --url https://app.mentionpilot.ai/api/v1/prompt \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "brand_id": 1,
  "date": {
    "from": "2026-01-01",
    "to": "2026-05-07"
  },
  "limit": 50
}
'
{
  "success": true,
  "prompts": [
    {
      "id": 42,
      "prompt": "Best CRM for small teams",
      "active": "Y",
      "created_at": "2026-03-15T09:00:00.000000+00:00"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://help.mentionpilot.ai/llms.txt

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

Authorizations

Authorization
string
header
required

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

Body

application/json

Filter parameters

brand_id
integer
required

ID of the brand to fetch prompts for

Example:

1

date
object

Optional date range filter. Omit to return all prompts.

limit
integer

Maximum number of prompts to return. Omit to return all.

Example:

50

Response

A list of prompts

success
boolean
Example:

true

prompts
object[]