
List all projects in your organization.
List all projects in your organization.
curl -H "Authorization: Bearer tga_<key>" \
https://www.trackagoat.com/api/v1/projects| Parameter | Type | Default | Description |
|---|---|---|---|
limit | number | 50 | Items per page (max 100) |
cursor | string | — | Pagination cursor from meta.nextCursor |
{
"data": [
{
"id": "uuid",
"name": "Q1 Campaign",
"description": "Spring creator program — focus on engagement rate",
"org_id": "uuid",
"created_at": "2026-01-01T00:00:00Z",
"updated_at": "2026-01-10T00:00:00Z"
}
],
"error": null,
"meta": { "hasMore": false
| Field | Type | Description |
|---|---|---|
id | uuid | Project ID |
name | string | Project name |
description | string | null | Team notes / agent context for this project |
org_id | uuid | Owning organization ID |
created_at | ISO 8601 | Creation timestamp |
updated_at | ISO 8601 |
| Last update timestamp |