> ## 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 all vendors

> Retrieve all vendors configured in the account.

This endpoint fetches all vendors created under your organization.

Use filters and pagination as needed to manage large datasets.


## OpenAPI

````yaml GET /vendors
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:
  /vendors:
    get:
      tags:
        - Vendors
      summary: Get all vendors
      description: Retrieve all vendors configured in the account.
      responses:
        '200':
          description: List of vendors
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Vendor'
components:
  schemas:
    Vendor:
      type: object
      required:
        - id
        - name
        - country
      properties:
        id:
          type: string
          description: Unique identifier for the vendor
        name:
          type: string
          description: Vendor's legal or trading name
        country:
          type: string
          description: Country of vendor operation
        tax_id:
          type: string
          description: Vendor's tax identification number
        exempt:
          type: boolean
          description: Indicates whether the vendor is tax exempt
        email:
          type: string
          format: email
          description: Vendor's contact email
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````