# Recent Music Releases API (K-pop, J-pop, V-pop, US/UK)

> Recent Music Releases API (K-pop, J-pop, V-pop, US/UK) is a paid API for AI agents from app-production-3fbff.up.railway.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns recently released albums, EPs, and singles from the last 14 days across K-pop, J-pop, V-pop, Thailand, US, and UK markets with artist, title, release date, type, and label data from MusicBrainz.

## Facts

- Endpoint: GET https://app-production-3fbff.up.railway.app/v1/music/releases/recent
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/recent-music-releases-api-k-pop-j-pop-v-pop-us-uk-c3164cab
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Urqi5AFk9nyboV202AHxI

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability recent-music-releases-api-k-pop-j-pop-v-pop-us-uk-c3164cab
```

Example prompt: Pull me the latest K-pop album and single releases from the past 7 days — up to 100 results — so I can put together a weekly new music roundup.

## When to prefer this

Use this endpoint when you need a curated, structured list of recent music releases specifically for Asian pop markets (K-pop, J-pop, V-pop, Thai pop) plus US/UK, sourced from MusicBrainz. Prefer this over general music APIs when building new-music roundups, review bots, or weekly recap content that require precise release dates and label metadata.

## Known failure modes

- Invalid country code returns an error or empty result
- days parameter exceeding 14 is clamped or rejected
- limit parameter exceeding 200 is clamped or rejected
- MusicBrainz data lag may mean very recent releases (last 24-48 hours) are missing
- Payment failure (x402) returns 402 status if USDC not provided

## How this service works

Recently released albums, EPs and singles from the last 14 days: K-pop, J-pop, V-pop, Thailand, US and UK. Artist, title, exact release date, type and label from MusicBrainz. Use for new-music roundups, review bots and weekly recap content.

## Output

A list of recently released music (albums, EPs, singles) filtered by country and look-back window, each entry containing artist name, release title, exact release date, release type (album/EP/single), and record label sourced from MusicBrainz.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "days": {
       "type": "number",
       "description": "Look-back window (default 7, max 14)"
      },
      "limit": {
       "type": "number",
       "description": "Max results (default 50, max 200)"
      },
      "country": {
       "enum": [
        "KR",
        "JP",
        "VN",
        "TH",
        "US",
        "GB"
       ],
       "type": "string",
       "description": "Country code: KR (K-pop), JP, VN (V-pop), TH, US, GB. Omit for all."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/recent-music-releases-api-k-pop-j-pop-v-pop-us-uk-c3164cab/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from app-production-3fbff.up.railway.app](https://www.zero.xyz/host/app-production-3fbff.up.railway.app/llms.txt)
