Skip to main content
GET
/
services
/
availability
Get available delivery service providers
curl --request GET \
  --url https://api.unihop.app/v1/services/availability \
  --header 'Authorization: Bearer <token>'
[
  {
    "prod": false,
    "name": "DoorDash",
    "status": true
  },
  {
    "prod": true,
    "name": "Uber Eats",
    "status": true
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Successfully retrieved list of available delivery services

prod
boolean
required

Whether this is a production service

Example:

false

name
string
required

Name of the delivery service provider

Example:

"DoorDash"

status
boolean
required

Whether the service is currently available

Example:

true