Skip to main content
GET
/
api
/
v1
/
invoices
/
{invoiceId}
curl -X GET "https://app.monk.com/api/v1/invoices/660e8400-e29b-41d4-a716-446655440001" \
  -H "Authorization: Bearer mk_live_your_api_key"
{
  "data": {
    "id": "660e8400-e29b-41d4-a716-446655440001",
    "invoiceNumber": "INV-2024-001",
    "customerId": "550e8400-e29b-41d4-a716-446655440000",
    "contractId": "770e8400-e29b-41d4-a716-446655440002",
    "status": "Paid",
    "invoiceDate": "2024-01-15",
    "dueDate": "2024-02-15",
    "totalCents": 150000,
    "memo": "January services",
    "createdAt": "2024-01-01T00:00:00.000Z",
    "updatedAt": "2024-01-20T00:00:00.000Z"
  }
}

Authentication

Authorization
string
required
Bearer token with your API key. Example: Bearer mk_live_...
Required scope: invoices:read

Path Parameters

invoiceId
string
required
The unique identifier of the invoice

Response

data
object
The invoice object
curl -X GET "https://app.monk.com/api/v1/invoices/660e8400-e29b-41d4-a716-446655440001" \
  -H "Authorization: Bearer mk_live_your_api_key"
{
  "data": {
    "id": "660e8400-e29b-41d4-a716-446655440001",
    "invoiceNumber": "INV-2024-001",
    "customerId": "550e8400-e29b-41d4-a716-446655440000",
    "contractId": "770e8400-e29b-41d4-a716-446655440002",
    "status": "Paid",
    "invoiceDate": "2024-01-15",
    "dueDate": "2024-02-15",
    "totalCents": 150000,
    "memo": "January services",
    "createdAt": "2024-01-01T00:00:00.000Z",
    "updatedAt": "2024-01-20T00:00:00.000Z"
  }
}