Skip to main content
POST
/
threads
/
{thread_id}
/
json-input
Send Json Input
curl --request POST \
  --url https://api.puppeteerai.com/threads/{thread_id}/json-input \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "project_name": "<string>",
  "json_input": "<string>"
}
'
{
  "response": "<string>"
}

Headers

Authorization
string
required

Path Parameters

thread_id
string
required

Body

application/json
project_name
string
required

The name of the Puppeteer project used for this thread.

json_input
required

A JSON object or string containing the data to send to the thread.

Response

Successful Response

response
string
required

Status message confirming the JSON input was received.