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

# Get One Invoice

> Retrieve a specific invoice by its ID.

Use this endpoint to fetch detailed information for a specific invoice, including:

* Invoice number, status, and currency
* Associated contact and address
* Line items with product and tax details
* Payment and due information

Useful for building invoice detail views or auditing an individual invoice.


## OpenAPI

````yaml GET /invoices/{id}
openapi: 3.0.1
info:
  title: Antei API Reference
  description: >-
    Programmatic access to Antei’s platform. Use this API to manage core objects
    and retrieve taxation insights.
  version: 1.0.0
  license:
    name: MIT
  contact:
    name: Antei Developer Support
    email: support@antei.com
    url: https://antei.com
servers:
  - url: https://api.antei.com
security:
  - bearerAuth: []
paths:
  /invoices/{id}:
    get:
      summary: Get invoice by ID
      description: Retrieve the full details of an invoice using its unique ID.
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Invoice details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Invoice'
components:
  schemas:
    Invoice:
      type: object
      properties:
        id:
          type: string
        invoice_number:
          type: string
        status:
          type: string
          enum:
            - draft
            - sent
            - paid
            - void
        contact_id:
          type: string
        transaction_ids:
          type: array
          items:
            type: string
        currency:
          type: string
        amount:
          type: number
          format: float
        issue_date:
          type: string
          format: date
        due_date:
          type: string
          format: date
        metadata:
          type: object
          additionalProperties:
            type: string
      required:
        - invoice_number
        - contact_id
        - status
        - currency
        - amount
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````