---
title: "Get experiment view override configuration by specific ID"
method: GET
path: "/datasets/{dataset_id}/experiment-view-overrides/{id}"
tags: ["experiment-view-overrides"]
---

# Get experiment view override configuration by specific ID

`GET /datasets/{dataset_id}/experiment-view-overrides/{id}`

Retrieves a specific experiment view override configuration using both dataset ID and override ID.
This endpoint provides more precise access to experiment view overrides when you have
the specific override ID, useful for direct links or cached references.

The response includes the same column override information as the dataset-level endpoint:
- Column identifiers with validation prefixes
- Color gradient settings for numeric data visualization
- Numeric precision configurations
- Column visibility controls

Both the dataset and override must exist and be accessible by the authenticated user.

## Path parameters

- `dataset_id` string, uuid, required
- `id` string, uuid, required

## Response `200`

Successfully retrieved experiment view override configuration

- ExperimentViewOverridesExperimentViewOverride
  - `column_overrides` ExperimentViewOverridesColumnOverride[]
    - `color_gradient` array[]
      - unknown[]
        - unknown
    - `color_map` object
    - `column` string, required
    - `disable_colors` boolean
    - `hide` boolean
    - `precision` integer
  - `created_at` string
  - `dataset_id` string
  - `id` string
  - `modified_at` string

## Other responses

- `400` — Invalid ID format" example({"error":"invalid experiment view override ID format"})
- `401` — Unauthorized access" example({"error":"Unauthorized"})
- `404` — Override not found" example({"error":"experiment view override not found"})
- `500` — Internal server error" example({"error":"internal server error"})

---

[API](https://skmtc.net/langchain-ai/apis/langsmith.md) · [All operations](https://skmtc.net/langchain-ai/apis/langsmith/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/langchain-ai/langsmith/revisions/a0acb3a6a101/schema)
