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

# Get Destination Details

> Get details for a single destination.

### Required API key scope
- Destinations (Read)




## OpenAPI

````yaml get /destinations/{id}
openapi: 3.1.0
info:
  title: Destinations API
  description: Title
  version: v1
servers:
  - url: https://api.loopreturns.com/api/v1
security: []
tags:
  - name: Destinations
paths:
  /destinations/{id}:
    get:
      tags:
        - Destinations
      summary: Get Destination Details
      description: |
        Get details for a single destination.

        ### Required API key scope
        - Destinations (Read)
      operationId: getDestination
      parameters:
        - in: path
          name: id
          schema:
            type: integer
          required: true
          example: 12345
          description: The destination's unique identifier.
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Destination'
        '400':
          description: Invalid destination id
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BadRequestResponse'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UnauthorizedResponse'
        '404':
          description: Destination not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NotFoundResponse'
      security:
        - api_key: []
components:
  schemas:
    Destination:
      type: object
      description: >-
        A physical location such as a warehouse or donation center to which
        returns are shipped.
      properties:
        id:
          type: integer
          example: 1
          description: The destination's unique identifier.
        type:
          type: string
          enum:
            - warehouse
            - donate
          example: warehouse
          description: The type of location represented by the destination.
        name:
          type: string
          example: Example Destination
          description: The destination's name.
        enabled:
          type: boolean
          example: true
          description: Whether the destination is enabled as a return destination.
        provider_location_id:
          type:
            - integer
            - 'null'
          example: 42424242
          description: >
            The numeric location identifier from the commerce platform (for
            example Shopify) when a

            location is linked to this destination in Loop. `null` when no
            location is linked. The

            linked location's `source` field indicates which provider the ID
            belongs to.
        address:
          $ref: '#/components/schemas/Address'
    BadRequestResponse:
      type: object
      properties:
        error:
          type: object
          properties:
            code:
              type: string
              example: INVALID_PARAMETER
            message:
              type: string
              example: Invalid destination id. Expected an integer.
    UnauthorizedResponse:
      type: object
      required:
        - errors
      properties:
        errors:
          type: string
          example: Unauthorized.
    NotFoundResponse:
      type: object
      properties:
        code:
          type: string
          example: NOT_FOUND
        message:
          type: string
          example: >-
            The destination could not be found. Please verify that the provided
            id is correct.
    Address:
      type: object
      description: The destination's address.
      properties:
        name:
          type:
            - string
            - 'null'
          example: Main Warehouse
          description: The name associated with the address.
        company:
          type:
            - string
            - 'null'
          example: Universal Exports
          description: The company residing at the address.
        address1:
          type: string
          example: 123 Main St
          description: The street address of the destination.
        address2:
          type:
            - string
            - 'null'
          example: Unit 456
          description: The secondary address details of the destination.
        city:
          type: string
          example: Columbus
        state:
          type:
            - string
            - 'null'
          example: Ohio
        zip:
          type:
            - string
            - 'null'
          example: '43210'
        country:
          type: string
          example: United States
        country_code:
          type: string
          example: US
  securitySchemes:
    api_key:
      type: apiKey
      name: X-Authorization
      in: header

````