GET /asset

Retrieve full metadata and tags for a specific audio asset by its ID.

Request

GET /asset?id=<assetId>

Parameters

ParameterTypeDescription
idnumberThe ID of the asset to retrieve

Response

Returns a single asset object including all embedded metadata, physical properties, UCS classification, and tags.

{
  "id": 12345,
  "fileName": "explosion_huge.wav",
  "format": "WAV",
  "duration": 5.4,
  "sampleRate": 48000,
  "channels": 2,
  "bitrate": 2304000,
  "bitDepth": 24,
  "fileSize": 3110400,
  "bpm": null,
  "title": "Huge Cinematic Explosion",
  "artist": "Sound Designer",
  "genre": "Cinematic",
  "comment": "Great for trailers",
  "albumTitle": null,
  "grouping": null,
  "additionalMetadata": "...",
  "dateAdded": "2026-04-18T10:30:00Z",
  "isFavorite": true,
  "ucsCatID": "EXPLReal",
  "ucsFxName": "Explosion Huge",
  "ucsCreatorID": "StudioX",
  "ucsSourceID": "Action Pack Y",
  "ucsUserCategory": null,
  "ucsVendorCategory": null,
  "ucsUserData": null,
  "tags": ["Action", "Sci-Fi", "Trailer"]
}

Response Fields

FieldTypeDescription
idnumberUnique identifier for the audio asset
fileNamestringFile name
formatstringAudio format (e.g., "WAV", "FLAC")
durationnumberLength in seconds
sampleRatenumberSample rate in Hz (e.g., 44100, 48000)
channelsnumberNumber of audio channels
bitratenumberBitrate in bps
bitDepthnumberBit depth (e.g., 16, 24). Optional.
fileSizenumberFile size in bytes
bpmnumber | nullBPM if detected or embedded, otherwise null
titlestring | nullTitle metadata field
artiststring | nullArtist metadata field
genrestring | nullGenre metadata field
commentstring | nullComment / description metadata field
albumTitlestring | nullAlbum title metadata field
groupingstring | nullGrouping metadata field
additionalMetadatastring | nullBase64-encoded string of any extra raw JSON metadata
dateAddedstringISO 8601 timestamp of when the file was added to the library
isFavoritebooleanWhether the file is marked as a favorite
ucsCatIDstring | nullUCS Category ID
ucsFxNamestring | nullUCS FxName
ucsCreatorIDstring | nullUCS CreatorID
ucsSourceIDstring | nullUCS SourceID
ucsUserCategorystring | nullUCS UserCategory
ucsVendorCategorystring | nullUCS VendorCategory
ucsUserDatastring | nullUCS UserData
tagsstring[]Array of assigned tag names