Skip to main content
POST
/
v1
/
threads
Create thread
curl --request POST \
  --url https://flow.seekr.com/v1/threads \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "meta_data": {}
}
'
{
  "id": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "object": "thread",
  "status": "available",
  "active_run_id": "<string>",
  "meta_data": {}
}

Authorizations

Authorization
string
header
required

Authorization Bearer Token

Headers

x-team-id
string | null

Body

application/json

Pydantic model for creating a thread request.

Attributes: meta_data (Optional[dict[str, Any]]): Optional metadata dictionary.

meta_data
Meta Data · object

Response

Successful Response

A thread is a top-level conversation container.

Threads can contain multiple messages from various assistants and users, providing a complete history of an interaction sequence.

id
string
required
created_at
string<date-time>
required
object
string
default:thread
status
enum<string>
default:available

Available status for a thread.

Available options:
available,
locked
active_run_id
string | null
meta_data
Meta Data · object
Last modified on June 18, 2026