List Trashed Pages
GET
/trash/pages
const url = 'https://markdawn.space/api/v1/trash/pages';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://markdawn.space/api/v1/trash/pages \ --header 'Authorization: Bearer <token>'Returns pages in Trash that the caller can access.
Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”Trashed page metadata.
Media typeapplication/json
The API token is missing a required scope: pages:read.
Media typeapplication/json
Structured error returned when the request cannot be completed.
object
error
required
Error details for programmatic handling.
object
code
required
Stable error code.
string
message
required
Human-readable explanation.
string
Examplegenerated
{ "error": { "code": "example", "message": "example" }}