> ## 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 availability of a service point

> Retrieve a `true` or `false` value which reflects the current availability of a given service point `id`.



## OpenAPI

````yaml /.openapi/v2/service-points/openapi.yaml get /service-points/{service_point_id}/check-availability
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:
  /service-points/{service_point_id}/check-availability:
    parameters:
      - schema:
          type: number
        name: service_point_id
        in: path
        required: true
        description: ID of the service point
    get:
      tags:
        - Service Points
      summary: Retrieve availability of a service point
      description: >-
        Retrieve a `true` or `false` value which reflects the current
        availability of a given service point `id`.
      operationId: sc-public-v2-servicepoints-get-check_availability
      parameters:
        - $ref: '#/components/parameters/AccessToken'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: boolean
              examples:
                'True':
                  value: true
                'False':
                  value: false
        '404':
          $ref: '#/components/responses/404'
      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
  responses:
    '404':
      description: Not Found
      content:
        application/json:
          schema:
            type: object
            properties:
              error:
                type: object
                properties:
                  code:
                    type: integer
                    format: int32
                    example: 404
                    description: >-
                      The HTTP [status
                      code](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status)
                  request:
                    type: string
                    example: api/v2/service-points/1
                    description: The user requested path
                  message:
                    type: string
                    example: The requested resource could not be found
                    description: A message providing further information about the error.
  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>

````