# Get account detail `GET` `/api/v1/market-maps/{id}/accounts/{account_id}` Returns summary, cluster name, score, tier, and custom attributes for a single account. Unlike the deprecated /market-maps//account/ endpoint, this includes cluster_name and a structured attributes dict instead of dynamic top-level export_field keys. ## Path parameters | Name | Type | Required | Description | |------|------|----------|-------------| | id | string | yes | UUID of the market map | | account_id | string | yes | Account identifier | ## Response `200 OK` — `application/json` | Field | Type | Description | |-------|------|-------------| | id | string | Unique account identifier | | name | string | Account name | | url | string | Account website URL | | account_summary | string | Account summary text | | cluster_id | integer | Cluster ID the account belongs to | | cluster_name | string | Cluster display name | | score | number | Score (null for unscored/V1 maps) | | score_bin | integer | Tier (null for unscored accounts) | | target | boolean | Whether this is a reference (target) account | | attributes | object | Custom attributes from STSV export_fields and user-mapped extra fields, as a flat key→value dict | ## Errors | Status | Description | |--------|-------------| | 400 | Bad Request | | 403 | Forbidden | | 404 | Not Found |