AgentInvoiceAgentInvoice
API ReferenceEstimates

List all estimates

Returns estimates for the authenticated user. Filter by status or client. Results are ordered by creation date descending.

GET
/estimates
AuthorizationBearer <token>

API key issued from your AgentInvoice account settings.

In: header

Query Parameters

status?string

Filter by estimate status

Value in"draft" | "sent" | "accepted" | "rejected" | "converted"
clientId?integer

Filter by client ID

limit?integer

Maximum number of results to return

Default100
Range1 <= value <= 200
offset?integer

Number of results to skip for pagination

Default0
Range0 <= value

Response Body

application/json

curl -X GET "https://app.agentinvoice.co/api/estimates"
[
  {
    "id": 55,
    "clientId": 42,
    "estimateNumber": "EST-0001",
    "status": "draft",
    "currency": "USD",
    "subtotal": "500.00",
    "taxTotal": "50.00",
    "total": "550.00",
    "notes": "string",
    "terms": "string",
    "validUntil": "2019-08-24T14:15:22Z",
    "convertedInvoiceId": 0,
    "clientName": "string",
    "clientEmail": "string",
    "createdAt": "2019-08-24T14:15:22Z",
    "updatedAt": "2019-08-24T14:15:22Z"
  }
]