Skip to main content
GET
/
mave
/
threads
/
{threadId}
Get Mave thread
curl --request GET \
  --url https://app.mavera.io/api/v1/mave/threads/{threadId} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "object": "mave_thread",
  "title": "<string>",
  "current_phase": "<string>",
  "complexity": "<string>",
  "credits_used": 123,
  "workspace_id": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "messages": [
    {
      "id": "<string>",
      "role": "user",
      "content": "<string>",
      "persona": {
        "id": "<string>",
        "name": "<string>"
      },
      "created_at": "2023-11-07T05:31:56Z"
    }
  ],
  "sources": [
    {
      "id": "<string>",
      "title": "<string>",
      "url": "<string>",
      "snippet": "<string>",
      "source_type": "<string>",
      "domain": "<string>"
    }
  ],
  "personas_used": [
    {
      "id": "<string>",
      "name": "<string>",
      "category": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

API key prefixed with mvra_live_. Create keys at Settings > Developer > API Keys.

Path Parameters

threadId
string
required

Thread ID

Response

Thread details

Full thread details with messages and sources

id
string
object
enum<string>
Available options:
mave_thread
title
string
current_phase
string
complexity
string | null
credits_used
integer
workspace_id
string
created_at
string<date-time>
updated_at
string<date-time>
messages
object[]
sources
object[]
personas_used
object[]