Skip to main content
GET
/
catalog
/
{id}
const product = await lasso.catalog.get('a1b2c3d4-...');
{
  "id": "a1b2c3d4-...",
  "schema_id": "e5f6a7b8-...",
  "source": "manual",
  "status": "active",
  "external_id": null,
  "attributes": {
    "title": "Premium Widget",
    "sku": "WDG-001",
    "price": 29.99
  },
  "created_at": "2026-05-01T12:00:00Z",
  "updated_at": "2026-05-15T09:30:00Z"
}

Documentation Index

Fetch the complete documentation index at: https://productlasso.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Fetch a single product from your catalog by its unique ID.
id
string
required
The unique product ID (UUID).
id
string
Unique product ID.
schema_id
string
Catalog schema this product belongs to.
source
string
Product source.
status
string
Product status.
external_id
string
External identifier (e.g., Shopify product ID).
attributes
object
Product attributes as key-value pairs.
created_at
string
ISO 8601 timestamp.
updated_at
string
ISO 8601 timestamp.
const product = await lasso.catalog.get('a1b2c3d4-...');
{
  "id": "a1b2c3d4-...",
  "schema_id": "e5f6a7b8-...",
  "source": "manual",
  "status": "active",
  "external_id": null,
  "attributes": {
    "title": "Premium Widget",
    "sku": "WDG-001",
    "price": 29.99
  },
  "created_at": "2026-05-01T12:00:00Z",
  "updated_at": "2026-05-15T09:30:00Z"
}