trackagoat logotrackagoat/Docs

Getting started

  • Welcome
  • Quickstart
  • Core concepts

Guides

  • Creators
  • Videos
  • Campaigns
  • Creator Goals
  • Tracking Inbox
  • Content calendar
  • How scraping works
  • Analytics & metrics
  • Similar creator pools
  • Over-posting & suppression
  • Program Health
  • Sentiment Radar
  • API keys
  • Limits & plan tiers
  • Notifications
  • Payouts

API reference

  • Overview
  • Authentication
  • Errors
  • Projects
  • Creators
  • Videos
  • Campaigns
  • Analytics
  • Aggregate Analytics
  • Payouts
  • Schema

For agents

  • Agent guide
  • Data model
  • MCP & tooling

Platform

  • Brand
  • Changelog
  • Support
DocsAPI reference

Projects

List all projects in your organization.

PreviousErrorsNextCreators

On this page

  • GET /api/v1/projects
  • Request
  • Query parameters
  • Response
  • Response fields

GET /api/v1/projects

List all projects in your organization.

Request

bash
curl -H "Authorization: Bearer tga_<key>" \
  https://www.trackagoat.com/api/v1/projects

Query parameters

ParameterTypeDefaultDescription
limitnumber50Items per page (max 100)
cursorstring—Pagination cursor from meta.nextCursor

Response

json
{
  "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

Response fields

FieldTypeDescription
iduuidProject ID
namestringProject name
descriptionstring | nullTeam notes / agent context for this project
org_iduuidOwning organization ID
created_atISO 8601Creation timestamp
updated_atISO 8601
,
"nextCursor"
:
null
}
}
Last update timestamp