> ## Documentation Index
> Fetch the complete documentation index at: https://docs.cdp.coinbase.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Welcome to Invoicing APIs

## Overview

The Invoicing APIs allow you to retrieve and read invoice data for your Coinbase Business account. Access detailed invoice information including payment details, line items, and invoice status.

## Use cases

* **Accounting integration**: Automatically sync invoice data with accounting software
* **Custom dashboards**: Build internal dashboards to track invoices and payment status
* **Automated workflows**: Trigger workflows based on invoice status changes
* **Financial reporting**: Generate custom reports based on invoice data
* **Payment tracking**: Monitor invoice payments and track cryptocurrency transactions
* **Customer insights**: Analyze invoice history and payment patterns

## Pricing

Fees apply to all volume processed through Payment Links, Invoices, and Checkouts. To view your current fee rate, [create a Payment Link](https://www.coinbase.com/payments/payment-links) — your rate will be displayed during the creation flow.

## Key Features

* **Read invoice data**: Access detailed invoice information via API
* **Filter and sort**: Query invoices by status, contact email, and date fields
* **Pagination**: Efficiently retrieve large invoice datasets
* **Webhooks**: Receive real-time notifications for invoice status changes

## Quick example

```bash theme={null}
curl https://business.coinbase.com/api/v1/invoices?status=OPEN \
  -H "Authorization: Bearer YOUR_JWT_TOKEN"
```

Returns a list of open invoices with complete details.

## Prerequisites

Before using Invoicing APIs, you'll need:

* A [Coinbase Business account](https://www.coinbase.com/business)
* Basic understanding of REST APIs and JWT authentication

## How it works

1. **Authenticate** → Generate JWT token with your API key
2. **List invoices** → Query invoices with optional filters
3. **Get details** → Retrieve specific invoice by ID
4. **Track status** → Monitor invoice status and payment information
5. **Integrate** → Sync data with your systems

## What to read next

<CardGroup cols={2}>
  <Card title="Quick Start" icon="rocket" href="/coinbase-business/invoicing-api/postman-files">
    Test the API with our Postman collection
  </Card>

  <Card title="API Reference" icon="code" href="/coinbase-business/invoicing-api/api-reference">
    Explore all endpoints and parameters
  </Card>

  <Card title="Webhooks" icon="bell" href="/coinbase-business/invoicing-api/webhooks">
    Set up real-time invoice status notifications
  </Card>

  <Card title="Authentication" icon="key" href="/coinbase-business/authentication-authorization/api-key-authentication">
    Set up API keys and JWT tokens
  </Card>

  <Card title="Integration Guide" icon="book" href="/api-reference/business-api/rest-api/invoicing/introduction">
    Step-by-step implementation guide
  </Card>
</CardGroup>
