jimmacur / hang_in_there_api

1 stars 0 forks source link

Fetch all posters #6

Closed SThompson05 closed 2 months ago

SThompson05 commented 2 months ago

These “index” endpoints should:

{
  "data": [
    {
      "id": "1",
      "type": "poster",
      "attributes": {
        "name": "FAILURE",
        "description": "Why bother trying? It's probably not worth it.",
        "price": 68.00,
        "year": 2019,
        "vintage": true,
        "img_url": "https://images.unsplash.com/photo-1620401537439-98e94c004b0d"
      }
    },
    {
      "id": "2",
      "type": "poster",
      "attributes": {
        "name": "REGRET",
        "description": "Hard work rarely pays off.",
        "price": 89.00,
        "year": 2018,
        "vintage": true,
        "img_url":  "https://plus.unsplash.com/premium_photo-1661293818249-fddbddf07a5d",
      }
    },
    {
      "id": "3",
      "type": "poster",
      "attributes": {
        "name": "MEDIOCRITY",
        "description": "Dreams are just that—dreams.",
        "price": 127.00,
        "year": 2021,
        "vintage": false,
        "img_url": "https://images.unsplash.com/photo-1551993005-75c4131b6bd8",
      }
    }
  ]
}
jimmacur commented 2 months ago

{ "data": [ { "id": "1", "type": "poster", "attributes": { "name": "FAILURE", "description": "Why bother trying? It's probably not worth it.", "price": 68.00, "year": 2019, "vintage": true, "img_url": "https://images.unsplash.com/photo-1620401537439-98e94c004b0d" } }, { "id": "2", "type": "poster", "attributes": { "name": "REGRET", "description": "Hard work rarely pays off.", "price": 89.00, "year": 2018, "vintage": true, "img_url": "https://plus.unsplash.com/premium_photo-1661293818249-fddbddf07a5d", } }, { "id": "3", "type": "poster", "attributes": { "name": "MEDIOCRITY", "description": "Dreams are just that—dreams.", "price": 127.00, "year": 2021, "vintage": false, "img_url": "https://images.unsplash.com/photo-1551993005-75c4131b6bd8", } } ] }