Skip to content

Endpoints

All endpoints are relative to https://app.verahq.net/api/v1/ and require an Authorization: Bearer header. See Authentication.

GET /api/v1/customers

Returns customers visible to the API key’s scope. Supports paging via ?page= and ?pageSize=.

GET /api/v1/products

Returns SKUs available in the catalog. Use the id value when constructing quote line items.

GET /api/v1/quotes

Returns quotes the API key is permitted to read.

GET /api/v1/quotes/{id}

Returns the full quote payload, including line items.

POST /api/v1/quotes
Content-Type: application/json
{
"customerId": "...",
"lines": [
{ "skuId": "...", "qty": 2, "unitPrice": 199.00 }
]
}

Returns the created quote with its assigned ID. Refer to DTO Reference for the line shape - the REST and Bridge surfaces share the same quote DTOs.