# Get current run `GET` `/api/v1/market-maps/{id}/runs/current` Return the most recent run for a market map. Returns 404 if no runs exist yet. ## Path parameters | Name | Type | Required | Description | |------|------|----------|-------------| | id | string | yes | UUID of the market map | ## Response `200 OK` — `application/json` | Field | Type | Description | |-------|------|-------------| | id | string | UUID of the run | | status | string | Run status: PENDING, PROCESSING, COMPLETE, FAILED, or CANCELED | | status_message | string | Human-readable status detail | | source_type | string | Source type (csv, salesforce_report, hubspot_list, project) | | source_name | string | Display name of the source | | credit_cost | integer | Research credits consumed | | analyzed_count | integer | Total accounts analyzed (null until complete) | | mapped_count | integer | Accounts placed on the map (null until complete) | | tier1_count | integer | Tier 1 accounts (null until complete) | | created_at | string | ISO-8601 creation timestamp | | updated_at | string | ISO-8601 last-updated timestamp | ## Errors | Status | Description | |--------|-------------| | 400 | Bad Request | | 403 | Forbidden | | 404 | Not Found |