---
title: "Get Label Request"
method: GET
path: "/label-requests/{id}"
tags: ["Label Requests"]
---

# Get Label Request

`GET /label-requests/{id}`

Get details about a single label request.

#### Required API key scope
- Label Requests (Read)

## Path parameters

- `id` integer, required

## Response `200`

Success

- LabelRequestResponse
  - `id` string, required — The unique identifier for the label request, created by Loop.
  - `addresses` object, required
    - `origin` Address, required
      - `id` integer
      - `hash` string
      - `created_at` string, date-time
      - `updated_at` string, date-time
      - `name` string
      - `company` string, nullable
      - `address1` string
      - `address2` string
      - `city` string
      - `state` string
      - `zip` string
      - `country` string
      - `country_code` string
      - `phone` string
      - `latitude` number
      - `longitude` number
    - `destination` Address, required
      - `id` integer
      - `hash` string
      - `created_at` string, date-time
      - `updated_at` string, date-time
      - `name` string
      - `company` string, nullable
      - `address1` string
      - `address2` string
      - `city` string
      - `state` string
      - `zip` string
      - `country` string
      - `country_code` string
      - `phone` string
      - `latitude` number
      - `longitude` number
  - `parcel` object, required
    - `height` number, double, required — The height of the parcel in inches.
    - `length` number, double, required — The length of the parcel in inches.
    - `width` number, double, required — The width of the parcel in inches.
    - `weight` number, double, required — The weight of the parcel in grams.
  - `products` Product[], required
    - `id` integer, required — The global identifier for an existing product.
  - `errors` LabelRequestErrorResponse[], required
    - `reason` 'INSUFFICIENT_FUNDS' | 'INVALID_ADDRESS' | 'Other', required — The error reason.
    - `message` string, nullable — The message associated with the label request error.
    - `created_at` string, date-time
  - `return_id` integer, required — The return id of the return.
  - `shop_id` integer, required — The id of the shop belonging to the merchant.
  - `status` 'issued' | 'cancelled' | 'fulfilled', required — The status of the label request.
  - `created_at` string, date-time, required

## Other responses

- `401` — Unauthorized
- `404` — Resource Not Found

---

[API](https://skmtc.dev/loopreturns/apis/listings-api.md) · [All operations](https://skmtc.dev/loopreturns/apis/listings-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/loopreturns/listings-api/revisions/750e6012dbb8/schema)
