Skip to main content
GET
/
quotes
List quotes
curl --request GET \
  --url https://api.corebill.io/v1/quotes \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "quotes": [
      {
        "id": "quo_p1q2r3s4t5u6",
        "quote_number": "QUO-2025-00001-1",
        "customer_id": "cus_a1b2c3d4e5f6",
        "status": "sent",
        "issue_date": "2025-04-01",
        "valid_until": "2025-05-01",
        "subtotal": 12000,
        "discount_type": "fixed",
        "discount_value": 500,
        "discount_amount": 500,
        "subtotal_after_discount": 11500,
        "tax_rate": 0,
        "tax_amount": 0,
        "total": 11500,
        "currency": "USD",
        "notes": "Valid for 30 days",
        "payment_terms": "50% upfront, 50% on delivery",
        "created_at": "2025-04-01T08:00:00.000Z",
        "updated_at": "2025-04-01T08:30:00.000Z",
        "customer": {
          "id": "cus_a1b2c3d4e5f6",
          "name": "John Doe",
          "contact_email": "[email protected]"
        }
      }
    ],
    "pagination": {
      "total": 8,
      "limit": 50,
      "offset": 0
    }
  }
}

Authorizations

Authorization
string
header
required

API key authentication. Generate keys from the Corebill dashboard under the Developers section.

Example: Authorization: Bearer sk_live_abc123def456

Query Parameters

company_id
string
required

The company ID to scope the request to

limit
integer
default:50

Maximum number of records to return (default 50)

Required range: 1 <= x <= 100
offset
integer
default:0

Number of records to skip for pagination (default 0)

Required range: x >= 0
status
enum<string>

Filter by quote status

Available options:
draft,
sent,
viewed,
approved,
rejected,
expired,
converted
customer_id
string

Filter by customer ID

Response

Paginated list of quotes

data
object
required