List projects
GET /openapi/v1/projects
Authorization: Bearer <API_KEY>
Request parameters
| Parameter | Location | Type | Required | Description |
|---|---|---|---|---|
| — | — | — | — | No request parameters |
v1 does not paginate this endpoint. It returns the projects available to the current account. Any active Key under that account returns the same list.
The success status is HTTP 200.
Success response example
{
"code": 200,
"message": "success",
"data": [
{
"id": "PROJECT_ID_1",
"name": "Advertising Assets"
},
{
"id": "PROJECT_ID_2",
"name": "E-commerce Videos"
}
]
}
integerProtocol field, currently fixed at
200stringFixed at
success on successarrayProjects available to the current account
stringProject ID
stringProject name
stringProject ID
stringProject name
When there are no projects, the API returns data: [].
After selecting a project, pass its data.id as projectId to List published Apps to retrieve App IDs in that project.