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

Path Parameters

organizationId
string
required
Organization ID

Query Parameters

page
number
Page number (default: 1)
limit
number
Items per page (default: 20)
status
string
Filter by status: active, archived, or deleted
Search term for name/description

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": {
    "page": 1,
    "limit": 20,
    "total": 42,
    "pages": 3
  }
}

Code Examples

curl -X GET "https://api.metabind.ai/v1/organizations/org123/projects?status=active" \
  -H "Authorization: Bearer YOUR_API_KEY"