Skip to main content
GET
/
api
/
v1
/
orgs
/
{org}
/
projects
List projects in an organization
curl --request GET \
  --url https://auth.cognite.com/api/v1/orgs/{org}/projects
{
  "items": [
    {
      "name": "publicdata",
      "apiUrl": "https://api.cognitedata.com"
    }
  ],
  "nextCursor": "<string>"
}

Path Parameters

org
string
required

ID of an organization The ID of an organization

Required string length: 3 - 64
Pattern: ^([a-z][a-z0-9-]{1,62}[a-z0-9])$
Example:

"my-org"

Query Parameters

includeAdminProperties
boolean
default:false

Whether to include admin properties of the projects in the response.

Response

200 - application/json

A list of projects

items
object[]
required
nextCursor
string

The cursor to get the next page of results (if available). Note that the server may choose to paginate the results even though no limit can be specified by the user.

Last modified on April 23, 2026