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

# Retrieve a list of service point carriers

> Retrieve a list of carriers which are enabled for service point delivery and can be accessed by the authenticating integration. Carriers can be enabled or disabled via the integration settings menu in the Sendcloud platform.



## OpenAPI

````yaml /.openapi/v2/service-points/openapi.yaml get /carriers
openapi: 3.1.0
info:
  title: Service points
  version: 2.0.0
  description: >-
    The Service Point API allows you to retrieve service point locations, verify
    their availability and store them in the Sendcloud platform during the
    checkout process.
  contact:
    name: Sendcloud API Support
    url: https://www.sendcloud.dev
    email: contact@sendcloud.com
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0.html
servers:
  - url: https://servicepoints.sendcloud.sc/api/v2
    description: Sendcloud Production
security: []
tags:
  - name: Service Points
    description: Endpoints related to Service Points flow
paths:
  /carriers:
    parameters: []
    get:
      tags:
        - Service Points
      summary: Retrieve a list of service point carriers
      description: >-
        Retrieve a list of carriers which are enabled for service point delivery
        and can be accessed by the authenticating integration. Carriers can be
        enabled or disabled via the integration settings menu in the Sendcloud
        platform.
      operationId: sc-public-v2-servicepoints-get-carriers
      parameters:
        - $ref: '#/components/parameters/AccessToken'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                description: >-
                  A list of carrier codes that are enabled for service point
                  delivery on the authenticating integration.
                items:
                  type: string
                  description: A carrier code identifier (e.g. "postnl", "dhl").
              examples:
                CarrierList:
                  summary: A list of carriers
                  value:
                    - postnl
                    - dhl
                    - dpd
                    - ups
        '403':
          description: Forbidden
      security:
        - HTTPBasicAuth: []
        - OAuth2ClientCreds: []
        - AccessTokenAuth: []
components:
  parameters:
    AccessToken:
      name: access_token
      in: query
      description: >-
        A JSON Web Token encoding either an “id” (user ID) or “iid” (integration
        ID) property. Alternatively, a public API key.
      schema:
        type: string
  securitySchemes:
    HTTPBasicAuth:
      type: http
      description: >-
        Basic Authentication using API key and secrets is currently the main
        authentication mechanism.
      scheme: basic
    OAuth2ClientCreds:
      type: oauth2
      description: >-
        OAuth2 is a standardized protocol for authorization that allows users to
        share their private resources stored on one site with another site
        without having to provide their credentials. OAuth2 Client Credentials
        Grant workflow. This workflow is typically used for server-to-server
        interactions that require authorization to access specific resources.
      flows:
        clientCredentials:
          tokenUrl: https://account.sendcloud.com/oauth2/token/
          scopes:
            api: Default OAuth scope required to access Sendcloud API.
    AccessTokenAuth:
      type: http
      scheme: bearer
      description: AccessToken <access_token>

````