Projects
Projects are containers that organize agents, journeys, and experiments. Every agent must belong to a project.
Paste your API key to use the Try it panels below. Don't have one? Create an account.
POST
/api/v1/projects Create a new project| Parameter | Type | In | Required | Description |
|---|---|---|---|---|
name | string | body | Yes | Project name |
description | string | body | No | Project description |
cURL
Response
GET
/api/v1/projects List projects| Parameter | Type | In | Required | Description |
|---|---|---|---|---|
limit | integer | query | No | Number of results to return (default: 20) |
cursor | uuid | query | No | Cursor for pagination |
cURL
Response
GET
/api/v1/projects/{id} Get project by ID| Parameter | Type | In | Required | Description |
|---|---|---|---|---|
id | uuid | path | Yes | Project ID |
cURL
Response
DELETE
/api/v1/projects/{id} Delete a project| Parameter | Type | In | Required | Description |
|---|---|---|---|---|
id | uuid | path | Yes | Project ID |
cURL
Response