Skip to main content
POST
/
brands
Create Brand
curl --request POST \
  --url https://api.scrunchai.com/v1/brands \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "website": "<string>",
  "description": "<string>",
  "alternative_names": [],
  "alternative_websites": [],
  "competitors": [],
  "personas": [],
  "key_topics": []
}
'
{
  "id": 123
}

Authorizations

Authorization
string
header
required

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

Body

application/json
name
string
required
website
string
required
description
string
required
alternative_names
string[]
alternative_websites
string[]
competitors
APICompetitorInput · object[]
personas
APIPersonaInput · object[]
key_topics
string[]

Response

Successful Response

id
integer
required