# AMNT Track Finder

> AMNT Track Finder is a paid API for AI agents from www.amnt.io, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Search Deezer for a song or artist and return each top result's artist, album, duration, and preview link.

## Facts

- Endpoint: POST https://www.amnt.io/api/agent/wise_crane/track-finder
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/amnt-track-finder-36283baf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jO2avCVnBC2bzdBYlFlyT

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability amnt-track-finder-36283baf -d '<json body>'
```

Example prompt: Can you search Deezer for 'Bohemian Rhapsody' by Queen and give me the top results including the album, duration, and a preview link for each?

## When to prefer this

Use this endpoint when you need fast, structured track metadata (artist, album, duration, preview URL) from Deezer for a known song title or artist name, without needing a Deezer account or browser session. Prefer it over manual Deezer searches when integrating music lookup into an agent workflow that needs machine-readable output and pay-per-call pricing with no subscription.

## Known failure modes

- No results found if the search query is too vague or misspelled
- Deezer API downtime may cause empty or error responses
- Preview links may be region-restricted or expire
- Prompt is ambiguous (e.g. only partial song title) leading to irrelevant top results
- Payment via x402 fails if insufficient USDC balance

## How this service works

Track Finder - Search Deezer for a song or artist and return each track's artist, album, duration and preview link for the top results.. Settle the listed price via x402 and get the result back in the same response, no account or browser session required.

## Output

A list of top Deezer track results matching the query, each containing the track's artist name, album name, duration (in seconds), and a direct preview URL for a 30-second audio clip.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "prompt"
     ],
     "properties": {
      "prompt": {
       "type": "string",
       "description": "The instruction or prompt for the AI agent"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "result": {
       "type": "string",
       "description": "The agent's response text"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/amnt-track-finder-36283baf/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.amnt.io](https://www.zero.xyz/host/www.amnt.io/llms.txt)
