Skip to main content
POST
/
api
/
v1
/
content
/
adapt
Adapt Content Endpoint
curl --request POST \
  --url https://api.example.com/api/v1/content/adapt \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "text": "<string>",
  "source_platform": "<string>",
  "target_platforms": [
    "<string>"
  ],
  "brand_voice": "<string>"
}
'
{}

Documentation Index

Fetch the complete documentation index at: https://docs.aitasker.co/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
text
string
required

Original content to adapt

Required string length: 1 - 50000
source_platform
string
required

Platform the content was written for

target_platforms
string[]
required

Platforms to adapt for

Required array length: 1 - 6 elements
brand_voice
string | null

Optional brand voice guidelines

Maximum string length: 5000

Response

Successful Response

{key}
AdaptedContentResponse · object