## instagram/search-music

`GET /v1/instagram/search-music`

Instagram audio tracks matching a keyword: title, artist, duration, the Reels count label, trending rank and the public 30-second preview link. Served from 6 September 2026 by the fourth Instagram listing (Ultra plan).

*Instagram music search*

| Parameter | Required | Description |
| --- | --- | --- |
| `query` | yes | Keyword: a title, an artist or a lyric fragment — e.g. `espresso` |
| `dry_run` | no | Read a zero-credit estimate without fetching sources, running AI, or reserving credits. Cache status is a snapshot, not a guarantee at execution. — e.g. `1` |

**Cost:** 5 credits at list price per successful uncached response; variable-cost operations may quote or settle a different charge. Confirmed uncharged or refunded failures report zero. Pending reconciliation can report credits_used:null; retain request_id and the original idempotency key.

```bash
curl "https://www.monocrawl.com/v1/instagram/search-music?query=espresso" \
  -H "x-api-key: mn_your_key_here"
```

### Response data

Illustrative abbreviated data; documented core fields are optional and may be null. Additional source fields are allowed.

```json
{
  "_warnings": [
    "example"
  ],
  "count": 0,
  "has_more": false,
  "items": [
    {
      "artist": "example",
      "cluster_id": "example",
      "cover_url": "https://example.com/example",
      "duration_ms": 0,
      "explicit": false,
      "has_lyrics": false,
      "id": "example",
      "platform": "example",
      "reels_count_label": "example",
      "thumbnail_url": "https://example.com/example",
      "title": "example",
      "trending": false,
      "type": "example"
    }
  ],
  "query": "example"
}
```

[Field reference](https://www.monocrawl.com/docs/endpoints/instagram/search-music#response) · [JSON Schema for response.data](https://www.monocrawl.com/schemas/instagram/search-music.json)
