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

# List Enrichment Provider Status

> Return all registered enrichment providers with their configuration status.

`is_configured` is `true` when the provider's API key or credentials are
set in the environment. No secrets are included in the response.



## OpenAPI

````yaml GET /v1/enrichments/providers
openapi: 3.1.0
info:
  title: Calseta
  description: SOC data platform for security agent consumption
  version: dev
servers: []
security: []
paths:
  /v1/enrichments/providers:
    get:
      tags:
        - enrichments
      summary: List all registered enrichment providers
      description: >-
        Return all registered enrichment providers with their configuration
        status.


        `is_configured` is `true` when the provider's API key or credentials are

        set in the environment. No secrets are included in the response.
      operationId: list_providers_v1_enrichments_providers_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/DataResponse_list_EnrichmentProviderInfo__
components:
  schemas:
    DataResponse_list_EnrichmentProviderInfo__:
      properties:
        data:
          items:
            $ref: '#/components/schemas/EnrichmentProviderInfo'
          type: array
          title: Data
        meta:
          additionalProperties: true
          type: object
          title: Meta
      type: object
      required:
        - data
      title: DataResponse[list[EnrichmentProviderInfo]]
    EnrichmentProviderInfo:
      properties:
        provider_name:
          type: string
          title: Provider Name
        display_name:
          type: string
          title: Display Name
        supported_types:
          items:
            $ref: '#/components/schemas/IndicatorType'
          type: array
          title: Supported Types
        is_configured:
          type: boolean
          title: Is Configured
        cache_ttl_seconds:
          type: integer
          title: Cache Ttl Seconds
      type: object
      required:
        - provider_name
        - display_name
        - supported_types
        - is_configured
        - cache_ttl_seconds
      title: EnrichmentProviderInfo
      description: Single provider entry for GET /v1/enrichments/providers.
    IndicatorType:
      type: string
      enum:
        - ip
        - domain
        - hash_md5
        - hash_sha1
        - hash_sha256
        - url
        - email
        - account
      title: IndicatorType
      description: Supported indicator-of-compromise (IOC) types.

````