API Reference
Projects
A project represents a single brand or site you would like to monitor. Each project owns its own prompts, brands, monitors, and sources.
Endpoints
-
GET
/api/v1/projectsList projectsReturns every project belonging to the active organization. The response is paginated.
-
POST
/api/v1/projectsCreate a projectCreates a new project inside the active organization.
-
GET
/api/v1/projects/{project}Get a projectReturns a single project. The project must belong to the active organization.
-
DELETE
/api/v1/projects/{project}Delete a projectDeletes a project. The delete cascades to every monitor, prompt, tag, and segment the project owns. Its brands and sources are removed together with the project.
-
PATCH
/api/v1/projects/{project}Update a projectUpdates a project. Every field is optional, so you may send only the fields you would like to change; a field that is omitted keeps its current value. Pass
brand_idto designate the project's own brand, ornullto leave the project without one.