Skip to main content
GET
/
projects
/
{projectId}
/
content
curl "https://app.ranked.ai/api/v1/projects/{projectId}/content?limit=5" \
  -H "Authorization: Bearer rk_live_your_api_key"
{
  "success": true,
  "data": [
    {
      "id": "acc6b6c5-3573-488e-b1c2-4994350c4a18",
      "title": "How to Rebuild Intimacy After Porn Addiction",
      "description": null,
      "scheduled_date": "2025-10-27T00:00:00+00:00",
      "due_date": null,
      "status": "Published",
      "status_color": "green",
      "content_type": "Blog Post",
      "content_type_color": "green",
      "priority": 3,
      "document_url": "https://docs.google.com/document/d/...",
      "source_url": "https://docs.google.com/document/d/...",
      "featured_image_url": null,
      "created_at": "2025-09-30T15:36:19.196Z",
      "updated_at": "2025-11-19T13:33:38.079Z"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://dev.ranked.ai/llms.txt

Use this file to discover all available pages before exploring further.

Returns content calendar items with status, type, and scheduling information.
projectId
string
required
Project UUID
limit
number
default:"50"
Max items to return
offset
number
default:"0"
Number to skip
status
string
Filter by status name (e.g., Approved, Published, Needs Approval)
date_from
string
Start date filter (ISO 8601)
date_to
string
End date filter (ISO 8601)
curl "https://app.ranked.ai/api/v1/projects/{projectId}/content?limit=5" \
  -H "Authorization: Bearer rk_live_your_api_key"
{
  "success": true,
  "data": [
    {
      "id": "acc6b6c5-3573-488e-b1c2-4994350c4a18",
      "title": "How to Rebuild Intimacy After Porn Addiction",
      "description": null,
      "scheduled_date": "2025-10-27T00:00:00+00:00",
      "due_date": null,
      "status": "Published",
      "status_color": "green",
      "content_type": "Blog Post",
      "content_type_color": "green",
      "priority": 3,
      "document_url": "https://docs.google.com/document/d/...",
      "source_url": "https://docs.google.com/document/d/...",
      "featured_image_url": null,
      "created_at": "2025-09-30T15:36:19.196Z",
      "updated_at": "2025-11-19T13:33:38.079Z"
    }
  ]
}