For the complete documentation index, see llms.txt. This page is also available as Markdown.

Get a list of products

Method : GET

https://os.vucustom.com/api/v1/products?ids=&skus&limit=

URL Parameters

Field Name
Description

ids

Return only products specified by a comma-separated list of product IDs.

skus

Return only products specified by a comma-separated list of product SKUs

limit

Return up to this many results. Default 250.

Example Request
https://os.vucustom.com/api/v1/products?ids=&skus=null&limit=null

200 Successful response example

{
	"products": [
		{
			"id": 14,
			"product_categories": [
				"SKATE"
			],
			"name": "2s3test",
			"b2b": true,
			"active": true,
			"customize_only": false,
			"code": null,
			"product_variants": [
				{
					"id": 6,
					"sku": "1063458",
					"name": "test",
					"upc": "UPC123",
					"code": null
				}
			]
		}
	]
}

401 Unauthorized

The client doesn’t have correct authentication credentials.

403 Forbidden

The server is refusing to respond. This is typically caused by incorrect access.

404 Not Found

The requested resource was not found but could be available again in the future.

422 Unprocessable Entity

5xx Errors

An internal error occurred in VU Admin.

Last updated