GET
/
content
curl --request GET \
  --url https://sdk.senso.ai/api/v1/content \
  --header 'X-API-Key: <api-key>'
{
  "items": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "org_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "type": "raw",
      "title": "<string>",
      "summary": "<string>",
      "version_num": 123,
      "processing_status": "queued",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ],
  "total_count": 123,
  "limit": 123,
  "offset": 123
}

Authorizations

X-API-Key
string
header
required

API key authorization

Query Parameters

limit
integer
default:10

Maximum number of content items to return in a single request (default is 10, max allowed is 100)

Required range: 1 <= x <= 100
offset
integer
default:0

Number of content items to skip for pagination (default is 0)

Required range: x >= 0

Response

200
application/json
A list of content items successfully retrieved

The response is of type object.