Skip to main content
GET
/
projects
List projects
curl --request GET \
  --url https://app.mavera.io/api/v1/projects \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "data": [
    {
      "id": "<string>",
      "object": "project",
      "name": "<string>",
      "goal": "<string>",
      "workspace_id": "<string>",
      "workspace_name": "<string>",
      "thread_count": 123,
      "mave_thread_count": 123,
      "generation_count": 123,
      "budget_alert": 123,
      "usage_limit": 123,
      "billing_email": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ],
  "has_more": true,
  "next_cursor": "<string>"
}

Documentation Index

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

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

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 ID

limit
integer
default:50

Maximum number of results (default 50, max 100)

Required range: 1 <= x <= 100
cursor
string

Cursor for pagination

Response

List of projects

object
enum<string>
Available options:
list
data
object[]
has_more
boolean
next_cursor
string | null