Skip to main content
POST
/
v3
/
ai-sdr
/
offers
/
generate
Generate an offer
curl --request POST \
  --url https://api.reply.io/v3/ai-sdr/offers/generate \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "text": "<string>",
  "providerLLM": "claude",
  "attachmentIds": [
    123
  ]
}
'
{}

Documentation Index

Fetch the complete documentation index at: https://docs.reply.io/llms.txt

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

Authorizations

Authorization
string
header
required

Authenticate every request with a Bearer token. Pass your Reply API key in the Authorization header:

Authorization: Bearer <your-api-key>

Get your API key from the Reply dashboard: Settings → API Key.

Body

application/json
text
string
required

Prompt or company URL to seed the generation

providerLLM
enum<string>
required
Available options:
claude,
openAi,
gemini,
mistral
attachmentIds
integer[]

Ids of attachments previously uploaded via POST /v3/ai-sdr/offers/generate/attachments

Response

Generation accepted

Coming soon — full response shape is still being finalized.