Catalog

Catalog endpoints read across all sellable objects (product variants and bundles) without requiring you to know which type a value refers to. This matters for SKU-driven workflows like barcode scanning, point-of-sale lookup, and syncing from an external inventory system, where a SKU might belong to either object type.

Lookup by SKU returns the matched object along with a catalog_object_type discriminator, so you can branch on whether you found a variant or a bundle. SKUs are unique across the catalog, making this a reliable exact-match entry point into catalog data.

Get catalog object by SKU#

GET/v1/catalog/by-sku/{sku}

Get catalog object by SKU.

Path parameters
skustringrequired

Merchant SKU.

Response · 200
dataone ofrequired
metaobject
request_idstring
Bash
curl https://api.withflintpay.com/v1/catalog/by-sku/{sku} \
  -H "Authorization: Bearer YOUR_API_KEY"
JSON
{
  "data": {},
  "request_id": "bce56cba-0827-44aa-bb56-4f200ba15ee6"
}
Rate this doc