Skip to main content
GET
/
services
Get all services
curl --request GET \
  --url https://app.usequeue.com/api/v1/services \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "services": [
    {
      "id": "af604afd112e974728b41a463652c77c",
      "title": "Service title example",
      "description": "Service description example",
      "active": true,
      "default_price": "$1,000 per month",
      "created_at": "2023-11-07T05:31:56Z",
      "preview_image": "https://example.com/preview-image.jpg",
      "addon": false,
      "disable_pause": false,
      "disable_quantity": false,
      "cancel_at_period_end": false,
      "position": 3,
      "coupon_id": "coupon_id",
      "minimum_months": 100,
      "require_payment_method": false,
      "limit_pausing": false,
      "checkout_link": "https://app.usequeue.com/services/af604afd112e974728b41a463652c77c/checkouts",
      "service_prices": [
        {
          "id": "8cf453ebcb70f64d4c1960efe100cf90",
          "price": "$1 per 1 month",
          "created_at": "2023-11-07T05:31:56Z",
          "updated_at": "2023-11-07T05:31:56Z",
          "currency": "usd"
        }
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Response

200 - application/json

List of services

success
boolean
Example:

true

services
object[]