GuideLab API

List product picker options

Return the authenticated lab's products as `id`/`name`/`sku` picker options from a single projection, without the categories, materials, custom fields and file requirements the paginated list carries. Capped at 1000 rows; `truncated` reports when the lab holds more.

GET
/products/options

Return the authenticated lab's products as id/name/sku picker options from a single projection, without the categories, materials, custom fields and file requirements the paginated list carries. Capped at 1000 rows; truncated reports when the lab holds more.

Authorization

__Secure-guidelab-prod.session_token<token>

Production session cookie set for the guidelab.co domain by Better Auth

In: cookie

Query Parameters

includeInactive?string
includeHidden?string
search?string

Response Body

application/json

curl -X GET "https://example.com/products/options"
{  "data": [    {      "id": "string",      "name": "string",      "sku": "string"    }  ],  "truncated": true}
Empty
Empty
Empty