Skip to main content
GET
/
mave
/
threads
List Mave threads
curl --request GET \
  --url https://app.mavera.io/api/v1/mave/threads \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "data": [
    {
      "id": "<string>",
      "object": "mave_thread",
      "title": "<string>",
      "current_phase": "TRIAGE",
      "complexity": "SIMPLE",
      "credits_used": 123,
      "workspace_id": "<string>",
      "message_count": 123,
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ],
  "total": 123,
  "limit": 123,
  "offset": 123,
  "has_more": true
}

Authorizations

Authorization
string
header
required

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

Query Parameters

workspace_id
string

Filter by workspace

limit
integer
default:20

Results per page (default: 20, max: 100)

Required range: x <= 100
offset
integer
default:0

Pagination offset

Response

List of threads

object
enum<string>
Available options:
list
data
object[]
total
integer
limit
integer
offset
integer
has_more
boolean