carbonplan / offsets-db-api

accounting of voluntary and compliance offset programs
https://carbonplan.org/research/offsets-db
MIT License
1 stars 0 forks source link

Add pagination #17

Closed andersy005 closed 1 year ago

andersy005 commented 1 year ago

This PR adds pagination to /projects and /credits endpoints. Cc @katamartin

❯ http 'http://127.0.0.1:8000/projects/?per_page=1'                                    

{
    "data": [
        {
            "category": null,
            "country": null,
            "description": null,
            "details_url": "https://ww2.arb.ca.gov/sites/default/files/2022-07/nc-arboc_issuance.xlsx",
            "developer": null,
            "id": 23,
            "is_arb": null,
            "issued": 107214,
            "name": null,
            "project_id": "ACR182",
            "proponent": null,
            "protocol": null,
            "registered_at": null,
            "registry": "american-carbon-registry",
            "retired": 0,
            "started_at": null,
            "voluntary_status": null
        }
    ],
   "pagination": {
        "current_page": 1,
        "next_page": "http://127.0.0.1:8000/projects/?per_page=1&current_page=2",
        "total_entries": 14,
        "total_pages": 14
    }
}