Audio file or recording with title, description, duration, format, playback statistics, and file URL. Used for audio hosting platforms, podcasts, sound libraries, and media management systems.
https://api.mockly.codes/audios?page=1&limit=10&count=10Configure your request and click Send Request to see the response here.
/audiosGet a collection of audios
/media/audios/audios/:idGet a single audio by ID
/media/audios/:id/audios/metaGet resource metadata and schema
/media/audios/metaThe search feature allows you to filter results by searching for text across all or specific fields. Choose between ?q= or ?search= parameter names.
Search across all text fields:
GET https://api.mockly.codes/audios?q=laptopGET https://api.mockly.codes/audios?q=laptop&search_fields=name,descriptionsearch_fields, all text fields are searched// Get 10 audios
fetch('https://api.mockly.codes/audios?count=10')
.then(res => res.json())
.then(data => console.log(data));import requests
response = requests.get(
'https://api.mockly.codes/audios?count=10'
)
data = response.json()curl "https://api.mockly.codes/audios?count=10"fetch('https://api.mockly.codes/audios?nocache=true')idintegerUnique identifier for the audio file
random_inttitlestringTitle or name of the audio file
sentencedescriptionstringDescription or summary of the audio content
paragraphdurationintegerAudio duration in seconds
random_inturlstringURL or file path to the audio file
urluriformatstringAudio file format (e.g., mp3, wav, ogg, m4a, flac)
wordplaysintegerTotal number of times the audio has been played
random_intcreated_atstringTimestamp when the audio file was uploaded or created
past_datedate-timecountintegerNumber of items to return (default: 10, max: 100)
seedintegerSeed for reproducible data generation
nocachebooleanBypass cache and generate fresh data on every request