List projects
/v0/projects
List projects in an organization, from oldest to newest.
Query Parameters
org: optional string
Returns
has_more: boolean
next_cursor: optional string
List projects
curl https://api.stainless.com/v0/projects \
-H "Authorization: Bearer $STAINLESS_API_KEY"
{
"data": [
{
"config_repo": "config_repo",
"display_name": "display_name",
"object": "project",
"org": "org",
"slug": "slug",
"targets": [
"node"
]
}
],
"has_more": true,
"next_cursor": "next_cursor"
}
Returns Examples
{
"data": [
{
"config_repo": "config_repo",
"display_name": "display_name",
"object": "project",
"org": "org",
"slug": "slug",
"targets": [
"node"
]
}
],
"has_more": true,
"next_cursor": "next_cursor"
}