> ## Documentation Index
> Fetch the complete documentation index at: https://knowledge.bitbybit.studio/llms.txt
> Use this file to discover all available pages before exploring further.

# Get provider services

> Return the catalog of services a specific provider offers — for example RideBlitz returns its four `instant_*_hour(s)` tiers, KiriminAja returns the 12 supported couriers plus 3 instant providers, GoSend returns its `Instant` / `SameDay` / `InstantCar` / `SameDayCar` options.

For KiriminAja the price-time availability is still gated by `POST /shipping/calculate-fee`; this endpoint surfaces the canonical catalog only.



## OpenAPI

````yaml GET /shipping/providers/{provider}/services
openapi: 3.1.0
info:
  title: bitbybit Open API — Shipping
  description: >-
    Programmatic access to bitbybit shipping: store locations, provider
    discovery, coverage lookup, fee quoting, and the full shipment lifecycle
    (create, book, update, cancel, track) across GoSend, KiriminAja, and
    RideBlitz.
  version: 1.0.0
  contact:
    name: bitbybit Support
    url: https://bitbybit.studio
servers:
  - url: https://api.bitbybit.studio/customer/api/open/v1
    description: Production
security:
  - ApiKeyAuth: []
tags:
  - name: Store Locations
    description: >-
      Manage warehouse / pickup origin addresses. Couriers pick up from these
      locations when a shipment is booked.
  - name: Providers
    description: Discover connected carriers and the services each carrier offers.
  - name: Coverage
    description: >-
      Look up the courier-specific province / city / district / sub-district
      dictionaries needed to populate addresses and quote fees.
  - name: Fee Calculation
    description: Quote shipping fees across carriers using one unified request shape.
  - name: Shipments
    description: >-
      Create, update, cancel, and track shipments. A shipment is always attached
      to an Order.
paths:
  /shipping/providers/{provider}/services:
    get:
      tags:
        - Providers
      summary: Get provider services
      description: >-
        Return the catalog of services a specific provider offers — for example
        RideBlitz returns its four `instant_*_hour(s)` tiers, KiriminAja returns
        the 12 supported couriers plus 3 instant providers, GoSend returns its
        `Instant` / `SameDay` / `InstantCar` / `SameDayCar` options.


        For KiriminAja the price-time availability is still gated by `POST
        /shipping/calculate-fee`; this endpoint surfaces the canonical catalog
        only.
      operationId: getProviderServices
      parameters:
        - name: provider
          in: path
          required: true
          schema:
            type: string
            enum:
              - gosend
              - kirimin_aja
              - ride_blitz
          description: Provider code. Only the three external providers are supported here.
      responses:
        '200':
          description: Service catalog.
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      provider:
                        type: string
                      services:
                        type: array
                        items:
                          $ref: '#/components/schemas/ProviderService'
        '401':
          $ref: '#/components/responses/Unauthorized'
components:
  schemas:
    ProviderService:
      type: object
      properties:
        code:
          type: string
          description: >-
            Service identifier used in `selectedExpedition` / `serviceCode`
            fields.
        name:
          type: string
          description: Display name.
        serviceType:
          $ref: '#/components/schemas/ServiceType'
        maxDistanceKm:
          type: integer
          description: RideBlitz only — the upper distance limit for this tier.
    ServiceType:
      type: string
      enum:
        - INSTANT
        - EXPRESS
      description: >-
        Service category. `INSTANT` = on-demand intra-city; `EXPRESS` =
        scheduled inter-city.
    Error:
      type: object
      properties:
        error:
          type: object
          properties:
            code:
              type: string
              description: >-
                Machine-readable code, e.g. `VALIDATION_ERROR`, `NOT_FOUND`,
                `INTEGRATION_NOT_CONNECTED`, `PROVIDER_ERROR`, `BOOKING_FAILED`.
            message:
              type: string
              description: Human-readable error message.
  responses:
    Unauthorized:
      description: Missing or invalid API key.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            error:
              code: UNAUTHORIZED
              message: Invalid API key
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: >-
        API key for authentication. Create one in Settings > Developer. The key
        must have the `BITCRM` product scope and an `orders` resource scope;
        required action depends on the endpoint (`READ`, `WRITE`, or `DELETE`).

````