Skip to main content
GET
/
combined-data
/
paginated
/
forRepo
/
allIntakes
/
:repoDataId
Get Paginated Intakes for Repository
curl --request GET \
  --url https://www.api.baselink.tech/combined-data/paginated/forRepo/allIntakes/:repoDataId \
  --header 'bearer: <api-key>'
{
  "intakes": [
    {}
  ],
  "pagination": {},
  "pagination.total": 123,
  "pagination.limit": 123,
  "pagination.offset": 123,
  "pagination.hasMore": true
}
Retrieve paginated intake data for a specific repository.
intakes
array
Array of paginated intake data objects.
pagination
object
Pagination information.
pagination.total
number
Total number of records available.
pagination.limit
number
Number of records per page.
pagination.offset
number
Current offset.
pagination.hasMore
boolean
Whether there are more records available.