Skip to content

Pages

Page endpoints require pages:read.

Terminal window
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
}
Terminal window
curl https://api.afterlib.com/v1/pages/1234567890 \
-H "Authorization: Bearer $AFTERLIB_API_KEY"

Use the API reference for the full Page schema.