Skip to main content
GET
/
app
/
v1
/
organizations
/
{organizationId}
/
projects
List Projects
curl --request GET \
  --url https://api.example.com/app/v1/organizations/{organizationId}/projects

Path Parameters

organizationId
string
required
Organization ID

Query Parameters

limit
number
default:"10"
Items per page (max 100)
lastKey
string
Pagination cursor from previous response

Response

Returns a paginated list of Project objects.
{
  "data": [
    {
      "id": "proj123",
      "organizationId": "org123",
      "name": "Marketing Website",
      "slug": "marketing-website",
      "description": "Main marketing website content",
      "status": "active",
      "environment": "production",
      "createdAt": "2024-03-20T10:00:00Z",
      "updatedAt": "2024-03-20T10:00:00Z"
    }
  ],
  "pagination": {
    "lastKey": "eyJwayI6Ik9SRy..."
  }
}

Code Examples

curl -X GET "https://api.metabind.ai/app/v1/organizations/org123/projects" \
  -H "Authorization: Bearer YOUR_JWT"