Pagination
How Pagination Works
Example Paginated Response of a Case Query:
{
"count": 473,
"next": "https://clearinghouse.net/api/v2/case/?case_type=5039&page=3",
"previous": "https://clearinghouse.net/api/v2/case/?case_type=5039&page=1",
"results": [
{
"id": 15150,
"name": "Pottinger v. City of Miami",
"case_documents_url": "https://clearinghouse.net/api/v2/documents/?case=15150", // URL to retrieve documents related to this case.
"case_dockets_url": "https://clearinghouse.net/api/v2/dockets/?case=15150", // URL to retrieve dockets related to this case.
"case_resources_url": "https://clearinghouse.net/api/v2/resources/?case=15150", // URL to retrieve resources related to this case.
"...": "..."
},
...
// More cases here
]
}
Last updated