Pagination
All endpoints that support pagination will accept the following query parameters and return the following headers.
Query Parameters
- page
- limit
Example
curl --request GET \
--url https://api.test.memento.zone/v1/funding_sources?page=2&limit=10 \
--header 'Authorization: Bearer w5Yj8NUlwDemzRVmlk0JhcnrFL4ZNwcvnTBv7uLi1htEOganov1PdMqZhrBrCD3GozqGvXI3Yg57ukjP6if9j9sRMGYQYAFZraNnbKFSjUIqEpDiZXTamToAhyCAmQCsxGI18V1emZNhmAULSwfD9X6dGN8sUKNMIEHLekptH6hJpSMeIb8rvW48bBaBInsvdYdLXxlmbWY1s4nk6jVma1CjN7vYTdt1v6WZLoY6NYXE6lkaYoD2sfDLEpFtKOPd' \
--header 'accept: application/json'
Headers Returned
- Link
Example
Link: </funding_sources?page=3&limit=10>; rel="next",
</funding_sources?page=20&limit=10>; rel="last",
</funding_sources?page=1&limit=10>; rel="first",
</funding_sources?page=2&limit=10>; rel="prev"
Updated about 2 years ago