# Suverse Wikidata Entity Lookup

> Suverse Wikidata Entity Lookup is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Fetches structured Wikidata entity data by Q-id, returning labels, descriptions, aliases, claims, and sitelinks across languages.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-kb-wikidata-entity
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-wikidata-entity-lookup-e02b4cfc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eZ5e5fMMJL54ueW5usK1u

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-wikidata-entity-lookup-e02b4cfc -d '<json body>'
```

Example prompt: Can you fetch the Wikidata entity data for Q42 — I need its canonical labels, descriptions, aliases, and claims in all available languages.

## When to prefer this

Choose this endpoint when you need structured, authoritative Wikidata facts for a known entity identified by its Q-id — especially when you require cross-language labels, canonical descriptions, or machine-readable claims without needing to authenticate with Wikidata directly. It is ideal for knowledge graph enrichment, entity disambiguation, and multilingual NLP pipelines.

## Known failure modes

- Invalid or non-existent Q-id returns empty or error response
- Wikidata API rate limiting or downtime causes timeout
- Malformed request body yields a 400 error
- Very large entities with many claims may have slow response times
- Some Q-ids may have sparse data with few labels or claims

## How this service works

Structured Wikidata entity data by Q-id via the Wikidata API, no key. Returns labels, descriptions, aliases, claims, and sitelinks. For agents resolving entities to canonical facts and cross-language labels.

## Output

A structured JSON object containing the Wikidata entity's labels (by language), descriptions (by language), aliases, claims (property-value pairs representing facts), and sitelinks to Wikipedia and other Wikimedia projects.

## 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-wikidata-entity-lookup-e02b4cfc/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)
