Pages
Page endpoints require pages:read.
Search pages
Section titled “Search pages”curl https://api.afterlib.com/v1/pages/search \ -H "Authorization: Bearer $AFTERLIB_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "query": "running", "limit": 25 }'The response returns page records and pagination fields:
{ "items": [], "cursor": null, "hasMore": false}Fetch one page
Section titled “Fetch one page”curl https://api.afterlib.com/v1/pages/1234567890 \ -H "Authorization: Bearer $AFTERLIB_API_KEY"Use the API reference for the full Page schema.