Advertisement
MrDini

JSON API response example

Apr 11th, 2017
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 1.33 KB | None | 0 0
  1. [
  2.   {
  3.     "id": 123,
  4.     "name": "test",
  5.     "image": "http:\/\/localhost\/test\/logo.png",
  6.     "items": [
  7.       {
  8.         "id": 123,
  9.         "title": "test2",
  10.         "type": "file",
  11.         "thumbnail": "http:\/\/localhost\/test\/preview_test2.thumb.png",
  12.         "header": "http:\/\/localhost\/test\/preview_test2.png",
  13.         "links": [
  14.           {
  15.             "quality": "original",
  16.             "url": "http:\/\/<snip>"
  17.           },
  18.           {
  19.             "quality": "1280x1280",
  20.             "url": "http:\/\/<snip>"
  21.           },
  22.           {
  23.             "quality": "640x640",
  24.             "url": "http:\/\/<snip>"
  25.           }
  26.         ]
  27.       }
  28.   },
  29.   {
  30.     "id": 124,
  31.     "name": "test",
  32.     "image": "http:\/\/localhost\/test\/logo.png",
  33.     "items": [
  34.       {
  35.         "id": 123,
  36.         "title": "test3",
  37.         "type": "file",
  38.         "thumbnail": "http:\/\/localhost\/test\/preview_test3.thumb.png",
  39.         "header": "http:\/\/localhost\/test\/preview_test3.png",
  40.         "links": [
  41.           {
  42.             "quality": "original",
  43.             "url": "http:\/\/<snip>"
  44.           },
  45.           {
  46.             "quality": "1280x1280",
  47.             "url": "http:\/\/<snip>"
  48.           },
  49.           {
  50.             "quality": "640x640",
  51.             "url": "http:\/\/<snip>"
  52.           }
  53.         ]
  54.       }
  55.    }
  56. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement