Skip to main content
GET
/
mediaBundles
/
{mediaBundleId}
Get a media bundle by ID
curl --request GET \
  --url https://api.blurb.fm/v1/mediaBundles/{mediaBundleId}
{
  "orgId": "1234567890",
  "createdAt": {
    "seconds": 123,
    "nanoseconds": 123
  },
  "updatedAt": {
    "seconds": 123,
    "nanoseconds": 123
  },
  "mediaBundleId": "1234567890",
  "name": "<string>",
  "artistId": "1234567890",
  "imageAssetId": "1234567890",
  "externalIds": {
    "appleMusic": "1234567890",
    "spotify": "1234567890",
    "youtube": "1234567890"
  },
  "upc": "1234567890",
  "projectNumber": "PR1234",
  "releaseNumber": "CR1234",
  "albumVersion": "Live",
  "clientRef": "1234567890"
}

Path Parameters

mediaBundleId
string
required
Example:

"my-media-bundle-id"

Response

Media bundle fetched successfully

The response from the Media Bundle GET request.

orgId
string
required

The ID of the organization that owns this entity.

Example:

"1234567890"

createdAt
required

A timestamp value that can be stored in Firestore

updatedAt
required

A timestamp value that can be stored in Firestore

mediaBundleId
string
required

The ID of the media bundle

Example:

"1234567890"

name
string
required

The name of the media bundle

artistId
string
required

The artist ID associated with the media bundle

Example:

"1234567890"

externalIds
object
required
imageAssetId
string
default:""

The asset ID for the image associated with the media bundle

Example:

"1234567890"

upc
string | null

The Universal Product Code (UPC) - the unique identifier for the album, if any

Example:

"1234567890"

projectNumber
string | null

The project number for the media bundle / album

Example:

"PR1234"

releaseNumber
string | null

The release number for the media bundle / album

Example:

"CR1234"

albumVersion
string | null
default:""

The album version of the media bundle / album

Example:

"Live"

clientRef
string
default:""

The client reference for the media bundle

Example:

"1234567890"