Skip to content

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.

EndpointGET /api/v2/breakouts
Authkey
ReturnsBreakoutsResponse
Retryableyes
Idempotentyes
const b = await crate.breakouts();
b.items.forEach((i) => console.log(i.name, i.emergenceTier, i.corroboration));
  • CrateAPIError — on a non-2xx response.