---
title: "Get All Enrichments"
method: GET
path: "/api/v1/enrichment/all"
tags: ["enrichment"]
---

# Get All Enrichments

`GET /api/v1/enrichment/all`

Get all custom enrichments.
Requires authentication. Allows read access to owned or example projects.

Args:
    request: The request object containing project_id (pre-validated)
    enrichment_service: Service for handling enrichment operations

Returns:
    List of all enrichments

## Response `200`

Successful Response

- EnrichmentListResponse — Response schema for listing all enrichments. Attributes: enrichments: List of enrichment data
  - `enrichments` EnrichmentModel[], required
    - `id` string, uuid
    - `layer_id` string, uuid, nullable
    - `name` string
    - `description` string, nullable
    - `tool` string
    - `params` object
    - `dtype` string — Must be one of string, boolean, list[str], jsonb, int, float, categorical, url
    - `created_at` string, date-time, nullable
    - `updated_at` string, date-time, nullable
    - `credits_per_row` integer, required — Return the number of credits per row for this tool.
    - `is_configured` boolean, required — Check if the enrichment is configured with a valid tool. Returns: bool: True if tool is configured, False otherwise
    - `is_configuration_failed` boolean, required — Check if the enrichment's configuration failed. Returns: bool: True if configuration was attempted but failed
    - `is_data_source` boolean, required — Check if the enrichment is a data source. Returns: bool: True if the enrichment is a data source, False otherwise

---

[API](https://skmtc.net/maia-analytics/apis/maia-api.md) · [All operations](https://skmtc.net/maia-analytics/apis/maia-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/maia-analytics/maia-api/versions/ba2b8d962161/schema)
