# Suverse Deezer Search

> Suverse Deezer Search is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-15).

Searches Deezer's catalog for artists, albums, tracks, or playlists and returns metadata including IDs, names, artwork, fan counts, track durations, rankings, and 30-second preview URLs.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-deezer-search
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-deezer-search-8b71d03b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fJkNzG_iWBBxj53OjLAjJ

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 suverse-deezer-search-8b71d03b -d '<json body>'
```

Example prompt: Search Deezer for tracks by Kendrick Lamar and give me the names, preview URLs, and rankings.

## When to prefer this

Use this endpoint when you need keyless, pay-per-call access to Deezer's music catalog for searching artists, albums, tracks, or playlists — especially when you want 30-second preview URLs, fan counts, and artwork in a single call without managing a Deezer developer API key. Prefer this over direct Deezer API integration when operating in an agentic context where dynamic per-call micropayments via x402 are more practical than OAuth credential management.

## Known failure modes

- Query returns zero results if the search term is too obscure or misspelled
- Payment failure (402) if the x402 USDC payment of $0.08 is not provided or fails
- Malformed request body returns a validation error
- Preview URL may be null for some tracks where Deezer does not provide a preview
- Rate limiting or proxy timeout if the upstream Deezer API is slow or unavailable

## How this service works

Search Deezer for artists, albums, tracks or playlists. Returns ids, names, artwork, fan counts, track duration, rank and 30-second preview URLs. Keyless.

## Output

Returns a list of matching Deezer entities (artists, albums, tracks, or playlists) with their Deezer IDs, display names, artwork image URLs, fan/follower counts, track durations, popularity rank scores, and 30-second audio preview URLs where applicable.

## 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": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/suverse-deezer-search-8b71d03b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
