crate.aura.artist(clusterId)
artist(clusterId: string, opts?: RequestOptions): Promise<AuraArtistResponse>One artist’s aura row by 64-hex cluster_id. present: false is a normal answer (single-dimension artists are filtered by the universe rule; inactive artists age out of the window) — branch on present, don’t treat it as an error.
| Endpoint | GET /api/v2/aura/{cluster} |
| Auth | key |
| Returns | AuraArtistResponse |
| Retryable | yes |
| Idempotent | yes |
Example
Section titled “Example”const a = await crate.aura.artist(clusterId);if (a.present) console.log(a.break_odds);