ClientSphereDocs
API reference/Quotes

List quotes

Returns a paginated list of quotes. Read-only through the public API. Money fields are decimal strings, not numbers.

GET
/quotes

Authorization

AuthorizationRequiredBearer <token>

API key as Bearer token: Authorization: Bearer sk_live_.... Use sk_live_ prefixed keys for production data and sk_test_ prefixed keys for sandbox/test data.

In: header

X-API-Key<token>

API key via header: X-API-Key: sk_live_.... Use sk_live_ prefixed keys for production data and sk_test_ prefixed keys for sandbox/test data.

In: header

Query Parameters

pageinteger

Page number

Default: 1
limitinteger

Items per page (max 100)

Default: 20Maximum: 100
searchstring

Search term

statusstring

Exact status match, e.g. draft, sent, accepted.

curl -X GET "https://clientsphere.io/api/v1/quotes?page=1&limit=20&search=%3Cstring%3E&status=%3Cstring%3E" \
  -H "Authorization: Bearer <token>"

Paginated list of quotes

{
  "data": [
    {
      "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
      "companyId": "8bb73d03-06b4-47c7-80c7-59301f770eda",
      "quoteNumber": "QUO-2026-0012",
      "version": 1,
      "accountId": "3d07c219-0a88-45be-9cfc-91e9d095a1e9",
      "contactId": "b5ec5d98-4bee-4da1-ad24-dde86346cb1d",
      "opportunityId": "3d9795f2-7722-4e1d-b41e-0c5d0c24a902",
      "templateId": "196100ac-4eec-4fb6-a7f7-86c8b584771d",
      "status": "sent",
      "title": "string",
      "description": "string",
      "currency": "USD",
      "exchangeRate": "string",
      "subtotal": "1200.00",
      "taxAmount": "240.00",
      "taxRate": "0.2000",
      "discountAmount": "0.00",
      "discountType": "string",
      "totalAmount": "1440.00",
      "validUntil": "2019-08-24",
      "issueDate": "2019-08-24",
      "paymentTerms": "Net 30",
      "notes": "string",
      "internalNotes": "string",
      "termsAndConditions": "string",
      "convertedToInvoiceId": "c13e32c8-9208-4287-b7c7-2737969fa482",
      "createdBy": 0,
      "sentBy": 0,
      "sentAt": "2019-08-24T14:15:22Z",
      "approvedAt": "2019-08-24T14:15:22Z",
      "convertedAt": "2019-08-24T14:15:22Z",
      "createdAt": "2019-08-24T14:15:22Z",
      "updatedAt": "2019-08-24T14:15:22Z"
    }
  ],
  "meta": {
    "pagination": {
      "page": 1,
      "limit": 20,
      "totalCount": 137,
      "totalPages": 7
    }
  }
}