v1

latestSwagger 2.02026-07-1312672.0 KB
posts

List all posts

This endpoint provides an easy way to get a feed of all the publicly published posts on Trash Nothing. It provides access to all publicly published offer and wanted posts from the last 30 days. The posts are sorted by date (newest first). <br /><br /> 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.

get/posts/all

Query parameters

typesstring required

A comma separated list of the post types to return. The available post types are: offer, wanted

date_minstring date-time required

Only posts newer than or equal to this UTC date and time will be returned. The UTC date and time used must be within a day or less of date_max. And the date and time must be within the last 30 days. And the date and time must be rounded to the nearest second.

date_maxstring date-time required

Only posts older than this UTC date and time will be returned. The UTC date and time used must be within a day or less of date_min. And the date and time must be rounded to the nearest second.

per_pageinteger

The number of posts to return per page (must be >= 1 and <= 50).

pageinteger

The page of posts to return.

device_pixel_rationumber

Client device pixel ratio used to determine thumbnail size (default 1.0).

Response

The posts.

Example response

{
  "posts": [
    {
      "post_id": 3171898,
      "group_id": 6,
      "user_id": 2933,
      "title": "Ultrasonic diffuser (Downtown Toronto)",
      "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",
      "type": "offer",
      "outcome": "satisfied",
      "latitude": 43.653226,
      "longitude": -79.383184,
      "footer": null,
      "photos": [
        {
          "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",
          "images": [
            {
              "url": "https://trashnothing.com/img/2018-02-05/cfsbfm-39051735845_379baab73f.90x120.jpg",
              "width": 90,
              "height": 120
            },
            {
              "url": "https://trashnothing.com/img/2018-02-05/cfsbfm-39051735845_379baab73f.180x240.jpg",
              "width": 180,
              "height": 240
            },
            {
              "url": "https://trashnothing.com/img/2018-02-05/cfsbfm-39051735845_379baab73f.270x360.jpg",
              "width": 270,
              "height": 360
            },
            {
              "url": "https://trashnothing.com/img/2018-02-05/cfsbfm-39051735845_379baab73f.375x500.jpg",
              "width": 375,
              "height": 500
            }
          ]
        }
      ],
      "expiration": "2018-03-05T15:10:21",
      "reselling": false,
      "url": "https://trashnothing.com/post/3171898/ultrasonic-diffuser-downtown-torronto",
      "repost_count": 1
    }
  ]
}