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

# List all insurance providers

> List all insurance providers registered on the platform



## OpenAPI

````yaml get /api/v1/insurers/
openapi: 3.0.3
info:
  title: Superpool API
  version: 2.0.0
  description: >-
    Insurance infrastructure for Financial Institutions, Insurers, and
    Insurtechs
  contact:
    name: Unyte Africa LTD.
    url: https://ng.unyte.africa
    email: tech@unyte.com
servers: []
security: []
paths:
  /api/v1/insurers/:
    get:
      tags:
        - Insurance Providers
      summary: List all insurance providers
      description: List all insurance providers registered on the platform
      operationId: list-insurance-providers
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Provider'
              examples:
                ListOfInsuranceProviders:
                  value:
                    count: 3
                    next: >-
                      http://http://localhost:8000/api/v1/insurers/?limit=25&offset=25
                    previous: 'null'
                    results:
                      - id: e1a5d88c-4b23-4b90-8e7a-b3fef95e3a80
                        name: Acme Insurance Co.
                        address: 123 Elm Street, Springfield, IL
                        phone_number: +1-800-555-1234
                      - id: d8e9d79a-d1c1-4f07-b6d8-7399be13b47e
                        name: Globex Corporation
                        address: 456 Oak Avenue, Metropolis, NY
                        phone_number: +1-800-555-5678
                      - id: ff7b7b3c-2df9-4b93-9f2e-9bde4b7a40da
                        name: Initech Insurance
                        address: 789 Pine Road, Silicon Valley, CA
                        phone_number: +1-800-555-9876
                  summary: List of Insurance Providers
          description: List of insurance providers
        '404':
          description: No insurance providers found
        '500':
          description: An error occurred while fetching the insurance providers
      security:
        - ClientKeyAuth: []
components:
  schemas:
    Provider:
      type: object
      properties:
        provider_id:
          type: string
          format: uuid
        provider_name:
          type: string
        support_email:
          type: string
          format: email
          readOnly: true
          nullable: true
          title: Business email
          description: >-
            Email address is used to track their support team during
            integrations
        support_phone:
          type: string
          readOnly: true
          nullable: true
          description: Phone number of the insurance provider's support team
        products_offered:
          type: array
          items:
            $ref: '#/components/schemas/CoreProduct'
      required:
        - products_offered
        - provider_id
        - provider_name
        - support_email
        - support_phone
    CoreProduct:
      type: object
      properties:
        product_id:
          type: string
          format: uuid
        product_name:
          type: string
        product_description:
          type: string
      required:
        - product_description
        - product_id
        - product_name
  securitySchemes:
    ClientKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key

````