Список продуктов

Получение доступных продуктов

Метод получения доступных продуктов возвращает коллекцию продуктов разделенных по типам продуктов, а также возвращает варианты продуктов и их остаток

Запрос

URL

https://api.belurk.com/products/get-all

Метод отправки

GET

CURL

  1. 1.curl --location 'https://api.belurk.com/products/get-all'
  2. 2.--header 'x-api-token: {{API_TOKEN}}'

Ответ в случае успеха

Статус ответа: HTTP 200 OK

  1. 1.{
  2. 2. "data": {
  3. 3. "ipv6": {
  4. 4. "name": "IPv6",
  5. 5. "variants": [
  6. 6. {
  7. 7. "variant_id": 88,
  8. 8. "period": "2 месяца",
  9. 9. "price": 5,
  10. 10. "speed": 20,
  11. 11. "country": "Казахстан",
  12. 12. "country_code": "KZ",
  13. 13. "country_icon": "https://storage.belurk.ru/icons/iconKZ.svg",
  14. 14. "discount": null,
  15. 15. "max_quantity": 100,
  16. 16. }
  17. 17. ]
  18. 18. }
  19. 19. "ipv4_shared": {
  20. 20. "name": "IPv4 Shared",
  21. 21. "variants": [
  22. 22. {
  23. 23. "variant_id": 64,
  24. 24. "period": "2 месяца",
  25. 25. "price": 20,
  26. 26. "speed": 20,
  27. 27. "country": "Финляндия",
  28. 28. "country_code": "FI",
  29. 29. "country_icon": "https://storage.belurk.ru/icons/iconFI.svg",
  30. 30. "discount": null,
  31. 31. "max_quantity": 50,
  32. 32. }
  33. 33. ]
  34. 34. }
  35. 35. "ipv4": {
  36. 36. "name": "IPv4",
  37. 37. "variants": [
  38. 38. {
  39. 39. "variant_id": 58,
  40. 40. "period": "3 месяца",
  41. 41. "price": 90,
  42. 42. "speed": 20,
  43. 43. "country": "Финляндия",
  44. 44. "country_code": "FI",
  45. 45. "country_icon": "https://storage.belurk.ru/icons/iconFI.svg",
  46. 46. "discount": null,
  47. 47. "max_quantity": 100,
  48. 48. }
  49. 49. ]
  50. 50. }
  51. 51. }
  52. 52.}

Ответ в случае неуспеха

Статус ответа: HTTP 401 Unauthorized

  1. 1.{
  2. 2. "data": null
  3. 3. "error": "Unauthorized"
  4. 4.}