Skip to main content
POST
/
brand
Create Brand
curl --request POST \
  --url https://app.mentionpilot.ai/api/v1/brand \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "MentionPilot",
  "domain": "mentionpilot.ai"
}
'
{
  "success": true,
  "brand": {
    "id": 155,
    "name": "MentionPilot",
    "domain": "mentionpilot.ai",
    "created_at": "2026-05-07T10: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

Brand details

name
string
required

Name of the brand

Example:

"MentionPilot"

domain
string
required

Domain of the brand

Example:

"mentionpilot.ai"

Response

Brand created successfully

success
boolean
Example:

true

brand
object