GET
/
v1
/
products
/
{id}
curl --request GET \
  --url https://api.ongoody.com/v1/products/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "1cfd1315-91e9-40d7-a267-7b5572520c83",
  "name": "Six Cookies",
  "brand": {
    "id": "421c84be-2cb3-4c44-875b-96918cc8de97",
    "name": "Lesa Mante",
    "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": "0cd0d789-5b0f-48a4-b7ff-734b96a7752f",
      "name": "Chocolate Chip",
      "subtitle": "Classic chocolate chip.",
      "image_large": null
    },
    {
      "id": "84d6a112-8279-4c9f-a967-f07e7addae13",
      "name": "Oatmeal",
      "subtitle": "Delicious oatmeal.",
      "image_large": null
    },
    {
      "id": "d283a46d-2221-433c-8e92-84b86c2908f9",
      "name": "Sugar",
      "subtitle": "Tasty sugar.",
      "image_large": null
    }
  ],
  "variant_groups": [],
  "images": [],
  "price": 1000,
  "price_is_variable": false,
  "restricted_states": [],
  "attributes": [],
  "updated_at": "2025-01-21T19:20:57Z",
  "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

200
application/json
Product retrieved

The response is of type object.