crate.breakouts()
breakouts(opts?: RequestOptions): Promise<BreakoutsResponse>The emerging-artists breakouts index — artists breaking out now, backed by corroborating evidence (press, bookings) rather than a single noisy signal. Each item carries an emergence tier, a score, and how it was corroborated.
| Endpoint | GET /api/v2/breakouts |
| Auth | key |
| Returns | BreakoutsResponse |
| Retryable | yes |
| Idempotent | yes |
Example
Section titled “Example”const b = await crate.breakouts();b.items.forEach((i) => console.log(i.name, i.emergenceTier, i.corroboration));Throws
Section titled “Throws”CrateAPIError— on a non-2xx response.