Skip to main content

Similar track segment based on trackID

GET 

/v0/tracks/:trackId/similar-sections

The similar segments endpoint allows developers to use part of a track as a reference to search for music segments in the Epidemic Sound catalog that sound similar.

The feature utilizes the Epidemic Audio Reference (EAR) technology to provide users with the ability to quickly find alternative segments of music.

Usage Scenarios:

  • Video Editing Templates: Replace default tracks in video templates with segments that fit better.
  • Quick Swaps: Swap out a segment of music in a video where the existing track doesn't quite match.
  • Creative Iteration: Easily experiment with different music segments to enhance your video's impact.

Request

Path Parameters

    trackId stringrequired

    Track id

Query Parameters

    start int32required

    Start of the section in milliseconds

    end int32required

    End of the section in milliseconds

    offset int32

    Index of the entry track in the response

    limit int32

    Max number of entries returned in the response, default 50 and max 100

Responses

Paginated list of similar tracks

Schema

    trackSections

    object[]

    required

  • Array [

  • track

    object

    required

    id stringrequired

    Unique ID of the track

    mainArtists string[]required

    The main artist that created the track.

    featuredArtists string[]required

    Additional artists that contributed to the track.

    title stringrequired

    Title of the track

    bpm int32required

    Beats per minute for the track.

    length int32required

    Track length in seconds

    moods

    object[]

    required

    Lists the moods of the track.

  • Array [

  • id stringrequired

    Unique ID of the mood

    name stringrequired

    Name of the mood

  • ]

  • genres

    object[]

    required

    Lists the genres of the track.

  • Array [

  • id stringrequired
    name stringrequired

    parent

    object

    id stringrequired

    Unique ID of the parent genre

    name stringrequired

    Name of the parent genre

  • ]

  • images

    object

    default stringnullable
    L stringnullable
    M stringnullable
    S stringnullable
    XS stringnullable
    waveformUrl stringrequired

    Reference to the waveform as a json object.

    hasVocals booleannullable

    Set to true if the track has vocals. Set to false for instrumental tracks.

    added stringrequired

    The date the track was released in the format YYYY-mm-dd.

    tierOption stringnullable

    Possible values: [PAID, FREE]

    isExplicit booleannullable
    isPreviewOnly boolean
    start int32required
    end int32required
  • ]

  • pagination

    object

    required

    page int32required
    limit int32required
    offset int32

    links

    object

    required

    next stringnullable
    prev stringnullable
Loading...