APIReference

List your uploaded papers

List papers you have uploaded.

GET
/me/papers

Authorization

ApiKeyAuth
x-api-key<token>

API key for authentication. Get yours at https://sciencestack.ai/settings/api

Format: sk_live_... or sk_test_...

In: header

Query Parameters

limit?integer

Maximum results to return

Default20
Rangevalue <= 100
offset?integer

Pagination offset

Default0

Response Body

application/json

application/json

curl -X GET "https://sciencestack.ai/api/v1/me/papers"
{
  "data": [
    {
      "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
      "title": "string",
      "status": "uploaded",
      "createdAt": "2019-08-24T14:15:22Z",
      "updatedAt": "2019-08-24T14:15:22Z"
    }
  ],
  "pagination": {
    "offset": 0,
    "limit": 0,
    "hasMore": true
  },
  "_version": "string"
}
{
  "error": {
    "code": "UNAUTHORIZED",
    "message": "Invalid API key"
  }
}