Skip to main content
GET
/
v1
/
sound-effects
/
{sfx-id}
Get detailed sound effect information by ID
curl --request GET \
  --url https://api.freepik.com/v1/sound-effects/{sfx-id} \
  --header 'x-freepik-api-key: <api-key>'
{
  "duration": 5.2,
  "file_url": "file_url",
  "is_premium": true,
  "popularity": 72,
  "created_at": "2000-01-23T04:56:07.000Z",
  "id": 1,
  "title": "Thunder Rumble",
  "category": {
    "parent": {
      "name": "Nature",
      "id": 1
    },
    "name": "Weather",
    "id": 5
  },
  "tags": [
    "thunder",
    "storm",
    "weather"
  ],
  "download_count": 580
}
Retrieve full details for a sound effect including category hierarchy, tags, duration, popularity, and download statistics. See the Sound Effects API overview for authentication and usage guidance.

Authorizations

x-freepik-api-key
string
header
required

Your Freepik API key. Required for authentication. Learn how to obtain an API key

Path Parameters

sfx-id
integer
required

Unique numeric identifier of the sound effect

Response

OK

Full details of a sound effect

id
integer
required

Unique identifier of the sound effect

Example:

1

title
string
required

Sound effect title

Example:

"Thunder Rumble"

tags
string[]

Tags associated with the sound effect

Example:
["thunder", "storm", "weather"]
category
object

Category of the sound effect, with optional parent category

Example:
{
  "parent": { "name": "Nature", "id": 1 },
  "name": "Weather",
  "id": 5
}
duration
number<float>

Duration in seconds

Example:

5.2

is_premium
boolean

Whether the sound effect is premium

popularity
integer

Popularity score

Example:

72

download_count
integer

Total number of downloads

Example:

580

file_url
string | null

Direct CDN URL to the audio file

created_at
string<date-time>

Creation timestamp