Advertisement
djbob2000

Untitled

Oct 13th, 2023 (edited)
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 1.12 KB | None | 0 0
  1. ===============================
  2. FILTER
  3.  
  4. GET http://localhost:4000/api/filters?locale=uk_UA
  5.  
  6. Response example
  7. {
  8.     "eventCities": [
  9.         "Київ",
  10.         "Вінниця"
  11.     ],
  12.     "eventDates": [
  13.         "2023-04-15",
  14.         "2023-04-16"
  15.     ],
  16.     "eventTypes": [
  17.         "Виставка",
  18.         "Гастрономічний фестиваль",
  19.         "День міста",
  20.         "Квітковий фестиваль",
  21.         "Культурний фестиваль",
  22.         "Літературний захід",
  23.         "Музичний захід",
  24.         "Музичний фестиваль",
  25.         "Патріотичні заходи",
  26.         "Святкова подія",
  27.         "Спортивний захід",
  28.         "Фестиваль звичаєвої культури"
  29.     ]
  30. }
  31.  
  32.  
  33. GET http://localhost:4000/api/filters?locale=uk_UA&date=2023-04-15&city=Київ
  34.  
  35. Response example
  36. {
  37.     "eventCities": [
  38.         "Київ",
  39.     ],
  40.     "eventDates": [
  41.         "2023-04-15",
  42.     ],
  43.     "eventTypes": [
  44.         "Квітковий фестиваль",
  45.     ]
  46. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement