Skip to main content
GET
/
projects
List projects
curl --request GET \
  --url https://api.bedrock.cv/projects \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "prj_01JABCD123",
      "name": "City Tower Phase 2",
      "description": "30-story mixed-use development",
      "created_at": "2024-06-15T10:30:00Z"
    }
  ],
  "_meta": {
    "next": "eyJpZCI6ImN1cnNvcl8xMjM0NTYiLCJjcmVhdGVkX2F0IjoiMjAyNC0wNi0xNVQxMDozMDowMFoifQ==",
    "prev": null,
    "limit": 1
  }
}
Returns a list of projects in your organization.

Authorizations

Authorization
string
header
required

API key prefixed with sk_. Example: Authorization: Bearer sk_xxx

Headers

X-API-Version
string
default:2026-01-01

API version

Query Parameters

cursor
string

Pagination cursor

limit
integer
default:20

Number of items per page

Required range: 1 <= x <= 100

Response

Success

data
object[]
_meta
object