Skip to main content
GET
/
feed
List the portfolio feed
curl --request GET \
  --url https://api.cura.inc/feed \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "attributes": {
        "company_id": "<string>",
        "title": "<string>",
        "content": "<string>",
        "published_at": "<string>",
        "private": true,
        "sources": [
          {
            "source": "linkedin",
            "url": "<string>",
            "title": "<string>",
            "published_at": "<string>"
          }
        ]
      }
    }
  ],
  "pagination": {
    "limit": 123,
    "nextCursor": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Your workspace API key (cura_…), sent as Authorization: Bearer <key>.

Query Parameters

limit
integer
default:20

Max entries to return (1–50).

Required range: 1 <= x <= 50
cursor
string

Return entries older than this ISO 8601 timestamp (from pagination.nextCursor).

filter
object

Response

A page of feed entries.

data
object[]
required
pagination
object
required

Cursor-based pagination metadata.