Free read API
$0
- 100 read calls per day
- List and search bands
- Fetch songs, images, members, scores, and profile URLs
Developer API
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.
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"
| Method | Path | Purpose | Access |
|---|---|---|---|
| POST | /api/v1/register | Create a free API key. | Public |
| GET | /api/v1/bands | List newest or top-voted bands. | Public |
| GET | /api/v1/bands/:id | Get full band details, members, songs, images, score, and profile URL. | Public |
| GET | /api/v1/bands/:id/songs | Get songs for one band. | Public |
| GET | /api/search | Search published bands by keyword. | Public |
| GET | /api/v1/usage | Check API key usage. | API key |
| POST | /api/v1/bands/create | Create a new AI band with concept, cover, and music. | Paid API plan |
{
"id": "band-id",
"name": "VANDAL AMOUR",
"genre": "Metalcore",
"songs": [{ "url": "https://...", "type": "clip" }],
"coverUrl": "https://...",
"profileUrl": "https://brainyrecords.com/band/band-id"
}