Skip to main content
GET
/
v1
/
shelves
List shelves
curl --request GET \
  --url https://api.shelv.dev/v1/shelves \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "auditFindings": [
        {
          "message": "<string>",
          "code": "<string>",
          "file": "<string>",
          "sourceRef": "<string>"
        }
      ],
      "auditSummary": "<string>",
      "createdAt": "2023-11-07T05:31:56Z",
      "currentVersionNumber": 123,
      "errorMessage": "<string>",
      "failedAtStep": "<string>",
      "mimeType": "<string>",
      "name": "<string>",
      "originalFileName": "<string>",
      "pageCount": 123,
      "publicId": "<string>",
      "quality": {
        "fallbackApplied": true
      },
      "repairAttempts": 1,
      "reviewMode": true,
      "storageSizeBytes": 123,
      "template": "<string>",
      "updatedAt": "2023-11-07T05:31:56Z",
      "userId": "<string>"
    }
  ],
  "pagination": {
    "limit": 123,
    "page": 123,
    "total": 123,
    "totalPages": 123
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.shelv.dev/llms.txt

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

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

page
integer
default:1
limit
integer
default:20
Required range: x <= 100

Response

Paginated list of shelves

data
object[]
required
pagination
object
required