# Upcoming Music Releases Tracker (K-pop, J-pop, V-pop, Asia, US, UK)

> Upcoming Music Releases Tracker (K-pop, J-pop, V-pop, Asia, 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 upcoming album, EP, and single releases in the next 1–45 days for K-pop, J-pop, V-pop, Thailand, US, and UK markets, sourced from MusicBrainz open data.

## Facts

- Endpoint: GET https://app-production-3fbff.up.railway.app/v1/music/releases/upcoming
- 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/upcoming-music-releases-tracker-k-pop-j-pop-v-pop-asia-us-uk-1e8a5ecc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6AvKMKgmODj_RonFPj93O

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 upcoming-music-releases-tracker-k-pop-j-pop-v-pop-asia-us-uk-1e8a5ecc
```

Example prompt: Can you pull the upcoming K-pop releases for the next 30 days — I need artist names, titles, release dates, and labels for my comeback tracker newsletter?

## When to prefer this

Choose this endpoint when you need a forward-looking (upcoming/future) release calendar for pop music in Korea, Japan, Vietnam, Thailand, US, or UK markets. Prefer this over sibling endpoints when you want what's coming next (not past releases or full discographies). Ideal for fan bots, comeback trackers, playlist agents, and music newsletters that need a scheduled release feed.

## Known failure modes

- Invalid country code returns error or empty results
- days value exceeding 45 is rejected or capped
- limit value exceeding 200 is rejected or capped
- No upcoming releases in the specified window returns empty list
- Stale data if MusicBrainz upstream is delayed beyond 6-hour refresh cycle
- Payment failure (402) if USDC balance is insufficient

## How this service works

Upcoming album, EP and single releases in the next 45 days: K-pop (Korea), J-pop (Japan), V-pop (Vietnam), Thailand, US and UK. Artist, title, release date, type, label and track count from MusicBrainz open data. Refreshed every 6 hours. Perfect for fan bots, comeback trackers, playlist agents and music newsletters.

## Output

A list of upcoming music releases (albums, EPs, singles) within the specified look-ahead window, each including artist name, release title, release date, release type, record label, and track count. Filtered by country/market if specified, sourced from MusicBrainz and refreshed every 6 hours.

## 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-ahead window (default 30, max 45)"
      },
      "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/upcoming-music-releases-tracker-k-pop-j-pop-v-pop-asia-us-uk-1e8a5ecc/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)
