Skip to content
Eden Engine

Instagram Music Search (by Keyword)

omnial/instagram-search-music

Given a search keyword, returns matching tracks from Instagram's own licensed music catalog: title, artist, duration, and explicit/has-lyrics flags, plus whether each track is eligible for audio effects or a vinyl sticker. Cover artwork and preview/download media are withheld -- only whether a track has them is observable, not the media itself.

activeper callv1
Provider
Web & Business Data Network
Category
instagram
Provider price
$0.004095 per call
Latency p50 / p95
— / —
Success rate
—
Verified
—

Provider list price; Omnial MCP charges provider cost plus a platform markup on top.

Contract

input_schema.json
{
  "type": "object",
  "required": [
    "keyword"
  ],
  "properties": {
    "keyword": {
      "type": "string",
      "examples": [
        "happy"
      ],
      "description": "Search keyword"
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "data": {
      "type": "object",
      "properties": {
        "count": {
          "type": "number",
          "description": "Number of tracks returned. Observed as 10 on both real fixtures."
        },
        "items": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "The track's numeric Instagram id, as a string."
              },
              "title": {
                "type": "string"
              },
              "audio_id": {
                "type": "string",
                "description": "A second numeric Instagram audio identifier, as a string, distinct from `id` on every track observed."
              },
              "subtitle": {
                "type": "string",
                "description": "A short qualifier (e.g. 'Instrumental'). Empty string on most tracks observed."
              },
              "has_lyrics": {
                "type": "boolean"
              },
              "is_explicit": {
                "type": "boolean"
              },
              "dark_message": {
                "type": [
                  "string",
                  "null"
                ],
                "description": "Observed as `null` on every track in both real fixtures -- a populated shape was never observed and is unconfirmed."
              },
              "allows_saving": {
                "type": "boolean"
              },
              "display_artist": {
                "type": "string",
                "description": "The track's public artist credit."
              },
              "duration_in_ms": {
                "type": "number"
              },
              "cover_artwork_uri": {
                "type": [
                  "string",
                  "null"
                ],
                "description": "The track's full-size cover artwork. Value withheld (stripped to `null`) in this tool's output, same treatment as `cover_artwork_thumbnail_uri`."
              },
              "licensed_music_subtype": {
                "type": "string",
                "description": "Observed only as 'DEFAULT' on every track in both real fixtures."
              },
              "progressive_download_url": {
                "type": [
                  "string",
                  "null"
                ],
                "description": "A downloadable preview clip location. Value withheld (stripped to `null`) in this tool's output, same treatment as `fast_start_progressive_download_url`."
              },
              "cover_artwork_thumbnail_uri": {
                "type": [
                  "string",
                  "null"
                ],
                "description": "The track's cover artwork thumbnail. Value withheld (stripped to `null`) in this tool's output -- only whether cover art exists is observable."
              },
              "highlight_start_times_in_ms": {
                "type": "array",
                "items": {
                  "type": "number"
                },
                "description": "Millisecond offsets into the track marking suggested highlight/preview start points. 3 entries on every track observed."
              },
              "is_eligible_for_audio_effects": {
                "type": "boolean"
              },
              "is_eligible_for_vinyl_sticker": {
                "type": "boolean"
              },
              "fast_start_progressive_download_url": {
                "type": [
                  "string",
                  "null"
                ],
                "description": "A streamable preview clip location. Value withheld (stripped to `null`) in this tool's output -- this tool surfaces track metadata, not playable media."
              }
            },
            "additionalProperties": true
          }
        }
      },
      "additionalProperties": true
    }
  },
  "description": "The music search result, as returned at routing.responseResultPath. Both real fixtures returned 10 tracks and a positive count; a genuinely empty/no-match result was never observed for this endpoint (see verification.notes).",
  "additionalProperties": true
}

Pricing

Every real charge, itemised. A model that quietly omits one is a slow financial leak, so nothing here is rolled up, and a charge that only applies to some inputs says so rather than being added in.

Prices in this catalog are the provider's own list price, not your bill: Omnial MCP charges provider cost plus a platform markup on top, so what you are charged is higher than the figure shown. For the exact amount a specific call will cost, run omnial_execute with dry_run: true; that number includes the markup and is what we hold while the call runs. It is a quote, not a cap on the charge.

ChargeRate
Per call
Flat, regardless of what comes back
$0.004095
Cost basis
Not recorded

This tool's catalog entry does not record how its final bill is determined, so we will not tell you whether its cost is fixed before the call or reported by the provider afterwards. Either way what is held is a quote rather than a cap: you are charged what the call actually costs, bounded at 2x the quote.

Updated
Sep 23, 2026