Skip to main content
POST
/
api
/
v1
/
content
/
articles
/
ideas
Generate article idea with content prompt
curl --request POST \
  --url https://www.suprsonic.com/api/v1/content/articles/ideas \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "account_id": "550e8400-e29b-41d4-a716-446655440000"
}
'
{
  "success": true,
  "data": {
    "prompt": "<string>",
    "workflow_id": "<string>",
    "_links": {
      "self": "<string>"
    }
  }
}

Authorizations

Authorization
string
header
required

Admin API key for managing accounts and creating content

Body

application/json
account_id
string<uuid>

Account UUID (required for admin API keys, ignored for account API keys)

Example:

"550e8400-e29b-41d4-a716-446655440000"

Response

Article idea generated successfully with XML prompt

success
boolean
Example:

true

data
object