Pagination

The Sponsors API returns paginated results.

Each response includes a data array with the sponsors for the current page, a meta object with pagination details, and a links object with URLs for moving between pages.

Example response

1{
2 "data": [
3 {
4 "id": "e69bd6b7-c8a5-43ac-bc92-106fe6c886c6",
5 "name": "1300MEDICS",
6 "industry": "Healthcare Services",
7 "slug": "1300medics",
8 "last_seen_date": "2025-10-17",
9 "first_seen_date": "2025-10-17",
10 "status": "dormant"
11 },
12 {
13 "id": "5df23e2f-f901-4bc7-b3a9-38963dc40726",
14 "name": "1440",
15 "industry": "Media & Internet",
16 "slug": "1440",
17 "last_seen_date": "2026-05-19",
18 "first_seen_date": "2026-01-10",
19 "status": "active"
20 }
21 ],
22 "meta": {
23 "total": 208,
24 "per_page": 50,
25 "current_page": 1,
26 "last_page": 5
27 },
28 "links": {
29 "first": "https://platform.appeared.in/api/public/v1/sponsors?page=1",
30 "last": "https://platform.appeared.in/api/public/v1/sponsors?page=5",
31 "prev": null,
32 "next": "https://platform.appeared.in/api/public/v1/sponsors?page=2"
33 }
34}

Fetching the next page

Use links.next to fetch the next page of results.

If links.next is a URL, send another request to that URL with the same API token. If links.next is null, you are already on the last page.

For example, the response above shows:

$https://platform.appeared.in/api/public/v1/sponsors?page=2

That URL returns page 2. Continue following links.next until it returns null.

Reading pagination metadata

  • meta.total is the total number of matching sponsors.
  • meta.per_page is the number of sponsors returned per page.
  • meta.current_page is the page you are currently viewing.
  • meta.last_page is the final page number.