Brainy Records

Developer API

Build with AI bands, songs, covers, and lore.

The Brainy Records API exposes published AI bands and their generated assets. Free keys are read-only. Paid API creation is available for approved high-volume use.

Quick start

curl -X POST https://brainyrecords.com/api/v1/register \
  -H "Content-Type: application/json" \
  -d '{"email":"you@example.com"}'
curl "https://brainyrecords.com/api/v1/bands?sort=votes&limit=10"

Endpoints

MethodPathPurposeAccess
POST/api/v1/registerCreate a free API key.Public
GET/api/v1/bandsList newest or top-voted bands.Public
GET/api/v1/bands/:idGet full band details, members, songs, images, score, and profile URL.Public
GET/api/v1/bands/:id/songsGet songs for one band.Public
GET/api/searchSearch published bands by keyword.Public
GET/api/v1/usageCheck API key usage.API key
POST/api/v1/bands/createCreate a new AI band with concept, cover, and music.Paid API plan

Free vs paid API

Free read API

$0
  • 100 read calls per day
  • List and search bands
  • Fetch songs, images, members, scores, and profile URLs

Example response

{
  "id": "band-id",
  "name": "VANDAL AMOUR",
  "genre": "Metalcore",
  "songs": [{ "url": "https://...", "type": "clip" }],
  "coverUrl": "https://...",
  "profileUrl": "https://brainyrecords.com/band/band-id"
}