SalesByte
Quotes API

Quotes API

The Quotes API provides read access to quotes at the company level. This is a newer API with different authentication and scope compared to the Integration endpoints.

Key Differences from Integration API

AspectQuotes APIIntegration API
AuthenticationBearer tokenUUID in request body
ScopeCompany-levelProfile-level
OperationsRead (GET)Write (POST)
Base URL/api/quotes/integrations/*

Authentication

All Quotes API requests require a Bearer token in the Authorization header:

Authorization: Bearer <your-api-token>

Keep your API token secure. Do not expose it in client-side code or public repositories.

Available Endpoints

Endpoints Overview

MethodEndpointDescription
GET/api/quotesList all quotes (paginated)
GET/api/quotes/<key>Get a single quote by key

Response Format

The quote resource returned by these endpoints matches the structure used in the Quote Checkout Webhook. This ensures consistency when syncing data between webhook events and API polling.

On this page