---
title: "Get Shared Project Enrichments"
method: GET
path: "/api/v1/share/{share_token}/enrichments"
tags: ["share"]
---

# Get Shared Project Enrichments

`GET /api/v1/share/{share_token}/enrichments`

Get enrichment metadata for a shared project (slim, read-only).

Returns only the fields needed for column mapping (id, name, layer_id,
is_data_source, dtype). Excludes sensitive fields like params, tool,
and description. Enrichments on share-restricted (parcel) layers are
dropped — the layer is hidden, so its enrichment metadata must be too.

Args:
    share: Validated ProjectShare from token
    enrichment_repo: Repository for fetching enrichment data
    layer_service: Service resolving which layers are share-restricted

Returns:
    Slim enrichment metadata for visible enrichments on non-restricted layers

## Path parameters

- `share_token` string, required

## Response `200`

Successful Response

- SharedEnrichmentListResponse
  - `enrichments` SharedEnrichmentModel[], required
    - `id` string, uuid, required
    - `name` string, required
    - `layer_id` string, uuid, nullable
    - `is_data_source` boolean
    - `is_configured` boolean
    - `is_configuration_failed` boolean
    - `dtype` string
    - `params` object

## Other responses

- `422` — Validation Error

---

[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/c5094ff58a23/schema)
