Skip to main content
GET
/
research-papers
List indexed research papers
curl --request GET \
  --url https://apigcp.trynia.ai/v2/research-papers \
  --header 'Authorization: Bearer <token>'
{
  "papers": [
    {
      "id": "<string>",
      "arxiv_id": "<string>",
      "title": "<string>",
      "authors": [
        "<string>"
      ],
      "abstract": "<string>",
      "categories": [
        "<string>"
      ],
      "primary_category": "<string>",
      "status": "pending",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "chunk_count": 0,
      "doi": "<string>",
      "published_date": "<string>",
      "pdf_url": "<string>",
      "abs_url": "<string>",
      "error": "<string>"
    }
  ],
  "total": 123
}

Authorizations

Authorization
string
header
required

API key must be provided in the Authorization header

Query Parameters

limit
integer
default:50

Maximum number of papers to return

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

Number of papers to skip (for pagination)

Required range: x >= 0
status
enum<string>

Filter by indexing status

Available options:
processing,
completed,
failed

Response

Research papers retrieved successfully

papers
object[]
total
integer

Total number of matching papers