# Accessing SKUs

In order to access SKUs available to you, you can use any of the following endpoints:

Endpoint Description
GET /variants/{variant_id}/skus (opens new window) Return a list of all SKUs of the given Variant
GET /skus/{sku_id} (opens new window) Return the SKU with the provided sku_id


All SKU endpoints will also return all available Prices nested within the response. To read more about prices and how to properly work with those, please read more here: Accessing Prices

# Example Request

GET /variants/0001b94e-4e87-4ee9-8b14-6ff9910b4f26/skus

# Example Response

[
  {
    "id": "0e1b07d5-6abc-4643-af1d-392129d40ef1",
    "amount": 1,
    "amount_in_base_unit": 1,
    "availability_in_days": null,
    "dimension_unit": "mm",
    "environmental_certification": "FSC Mix Credit",
    "gross_weight": "26.496",
    "height": "0.064",
    "length": "640.0",
    "net_weight": "26.496",
    "order_number": "MAGGLO|090|46.0|64.0|0500|000000|FSC|L|SH||v1",
    "unit": "sheet",
    "weight_unit": "g",
    "width": "460.0",
    "variant_id": "0001b94e-4e87-4ee9-8b14-6ff9910b4f26",
    "variant": {
      "id": "0001b94e-4e87-4ee9-8b14-6ff9910b4f26",
      "type": "SubstrateVariant",
      "links": [
        {
          "rel": "self",
          "href": "/consumers/api/v1/variants/0001b94e-4e87-4ee9-8b14-6ff9910b4f26"
        }
      ]
    },
    "prices": [
      {
        "id": "7d1b8b81-c3ef-4fe1-bd49-2292eb253437",
        "kind": "static",
        "minimum_order_quantity": 108000,
        "order_number": "gloss-0001",
        "price": "0.01908",
        "valid_from": "2020-11-18T14:55:06.467Z",
        "valid_until": null,
        "sales_group_id": "ca4bcc38-2886-4ad9-b157-9b02e00ab521",
        "sales_group": {
          "id": "ca4bcc38-2886-4ad9-b157-9b02e00ab521",
          "name": "Bounty Soap Default Sales Group",
          "links": [
            {
              "rel": "self",
              "href": "/consumers/api/v1/sales_groups/ca4bcc38-2886-4ad9-b157-9b02e00ab521"
            }
          ]
        },
        "created_at": "2020-11-18T14:55:09.400Z",
        "updated_at": "2020-11-18T14:55:09.400Z"
      },
      {
        "id": "c1340152-997d-47ae-a3fb-7fd8a716f5c2",
        "kind": "static",
        "minimum_order_quantity": 108000,
        "order_number": "gloss-002",
        "price": "0.01908",
        "valid_from": "2020-11-18T15:01:50.319Z",
        "valid_until": null,
        "sales_group_id": "ca4bcc38-2886-4ad9-b157-9b02e00ab521",
        "sales_group": {
          "id": "ca4bcc38-2886-4ad9-b157-9b02e00ab521",
          "name": "Bounty Soap Default Sales Group",
          "links": [
            {
              "rel": "self",
              "href": "/consumers/api/v1/sales_groups/ca4bcc38-2886-4ad9-b157-9b02e00ab521"
            }
          ]
        },
        "created_at": "2020-11-18T15:01:53.158Z",
        "updated_at": "2020-11-18T15:01:53.158Z"
      }
    ],
    "created_at": "2020-10-13T10:34:51.715Z",
    "updated_at": "2021-03-15T11:29:49.542Z"
  }
]