List all post changes
GET
/posts/all/changes
posts
The different types of changes that are returned are listed below.
- deleted
- undeleted
- satisfied
- promised
- unpromised
- withdrawn
- edited
For edited changes, clients can use the retrieve post API endpoint to get the edits that have been made to the post.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://trashnothing.com/api/v1.2/posts/all/changes?date_min=&date_max='
Response Response Example
200 - Example 1
{
"changes": [
{
"date": "2019-08-24T14:15:22Z",
"post_id": "string",
"type": "string"
}
]
}
Request
Query Params
date_min
string
required
date_max
string
required
per_page
integer
optional
The number of changes to return per page (must be >= 1 and <= 50).
page
integer
optional
Responses
Modified at 2022-09-11 18:59:48