Projects

List projects

Returns every project belonging to the active organization. The response is paginated.

GET /api/v1/projects

Results are paginated, with a default page size of 25.

Query parameters

Name Type Required Description
page integer Optional

The page number to return. Defaults to 1.

per_page integer Optional

The number of items per page. Defaults to 25, maximum 100.

sort_by string Optional

The column to sort by. Defaults to created_at.

sort_order string Optional

The direction to sort by. Each endpoint has its own default.

include string Optional

A comma-separated list of related resources to include in the response. Allowed values: organization.

Response

Response schema

Field Type Description
data Project[]
links PaginationLinks
meta PaginationMeta

The project object

Field Type Description
id integer

The unique ID of the project.

organization_id integer

The ID of the organization that owns the project.

name string

The display name of the project.

created_at datetime

When the project was created.

updated_at datetime

When the project was last updated.