List all posts
GET
/posts/all
posts
There are fewer options for filtering, sorting and searching posts with this endpoint but there is no 1,000 post limit and posts that are crossposted to multiple groups are not merged together in the response. In most cases, crossposted posts are easy to detect because they have the same user_id, title and content.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://trashnothing.com/api/v1.2/posts/all?types=&date_min=&date_max='
Response Response Example
200 - Example 1
{
"posts": [
{
"content": "This ultrasonic diffuser creates an aroma in your home. It comes with two essential oils - mint and lavender.",
"date": "2018-02-05T15:10:21",
"footer": null,
"group_id": 6,
"latitude": 43.653226,
"longitude": -79.383184,
"outcome": "satisfied",
"photos": [
{
"images": [
{
"height": 120,
"url": "https://trashnothing.com/img/2018-02-05/cfsbfm-39051735845_379baab73f.90x120.jpg",
"width": 90
},
{
"height": 240,
"url": "https://trashnothing.com/img/2018-02-05/cfsbfm-39051735845_379baab73f.180x240.jpg",
"width": 180
},
{
"height": 360,
"url": "https://trashnothing.com/img/2018-02-05/cfsbfm-39051735845_379baab73f.270x360.jpg",
"width": 270
},
{
"height": 500,
"url": "https://trashnothing.com/img/2018-02-05/cfsbfm-39051735845_379baab73f.375x500.jpg",
"width": 375
}
],
"photo_id": "695624-768616",
"thumbnail": "https://trashnothing.com/img/2018-02-05/cfsbfm-39051735845_379baab73f.90x120.jpg",
"url": "https://trashnothing.com/img/2018-02-05/cfsbfm-39051735845_379baab73f.375x500.jpg"
}
],
"post_id": 3171898,
"title": "Ultrasonic diffuser (Downtown Toronto)",
"type": "offer",
"user_id": 2933
}
]
}
Request
Query Params
types
string
required
date_min
string
required
date_max
string
required
per_page
integer
optional
The number of posts to return per page (must be >= 1 and <= 50).
page
integer
optional
device_pixel_ratio
number
optional
Responses
Modified at 2022-09-11 18:59:48