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

Path Parameters

organizationId
string
required
Organization ID
id
string
required
Project ID

Response

Returns the Project object.
{
  "id": "proj123",
  "organizationId": "org123",
  "name": "Marketing Website",
  "slug": "marketing-website",
  "description": "Main marketing website content",
  "status": "active",
  "environment": "production",
  "settings": {
    "defaultLocale": "en-US",
    "supportedLocales": ["en-US", "es-ES"],
    "defaultPlatform": "desktop",
    "supportedPlatforms": ["desktop", "mobile", "tablet"],
    "thumbnailUrl": "https://cdn.acme.com/thumbnails/marketing-website.png",
    "cdnDomain": "cdn.acme.com"
  },
  "dependencies": [
    {
      "projectId": "proj456",
      "version": "2.0.0"
    }
  ],
  "permissions": {
    "roles": {
      "admin": ["user123"],
      "editor": ["user456"]
    },
    "public": false
  },
  "metadata": {
    "createdBy": "user123",
    "tags": ["marketing", "website"]
  },
  "createdAt": "2024-03-20T10:00:00Z",
  "updatedAt": "2024-03-20T10:00:00Z"
}

Error Responses

Project Not Found

{
  "error": {
    "code": "NOT_FOUND",
    "message": "Project not found",
    "details": {
      "id": "proj123"
    }
  }
}

Code Examples

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