GET
/
v1
/
products
/
{id}
Retrieve a product
curl --request GET \
  --url https://api.ongoody.com/v1/products/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "50fe9f80-b4d7-4fbe-9864-803180658f8b",
  "name": "Six Cookies",
  "brand": {
    "id": "d827a745-4304-4485-b234-b18dd7d8ee92",
    "name": "Berna Schinner",
    "shipping_price": 1000,
    "free_shipping_minimum": null,
    "brand_values": []
  },
  "subtitle": null,
  "subtitle_short": null,
  "recipient_description": "",
  "variants_label": "option",
  "variants_num_selectable": 3,
  "variants": [
    {
      "id": "db93d3b3-bb68-4398-8c0b-b3659b77a411",
      "name": "Chocolate Chip",
      "subtitle": "Classic chocolate chip.",
      "image_large": null
    },
    {
      "id": "a21cae44-fc25-4f90-8861-8214a6b961e6",
      "name": "Oatmeal",
      "subtitle": "Delicious oatmeal.",
      "image_large": null
    },
    {
      "id": "ff1b7cb6-f85e-401a-b13e-95fbcacd3275",
      "name": "Sugar",
      "subtitle": "Tasty sugar.",
      "image_large": null
    }
  ],
  "variant_groups": [],
  "images": [],
  "price": 1000,
  "price_is_variable": false,
  "restricted_states": [],
  "attributes": [],
  "updated_at": "2025-09-12T22:41:20Z",
  "status": "active"
}

Authorizations

Authorization
string
header
required

Your Goody API key.

Path Parameters

id
string
required

Product ID

Query Parameters

use_custom_catalog
boolean

Limit to custom catalog only (for approved API partners)

Response

Product retrieved

The response is of type object.