Vai al contenuto
GET /v1/meta

Service metadata

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/ffxivmarket-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

curl "https://api.oanor.com/ffxivmarket-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/ffxivmarket-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/ffxivmarket-api/v1/meta");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
    "https://api.oanor.com/ffxivmarket-api/v1/meta",
    headers={"x-oanor-key": "oanor_test_..."}
)

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "note": "search takes q (an item name) and limit (1-40). market takes item_id and world (a world, data centre or region — e.g. Aether, Sargatanas, Japan, Europe; default Aether). history takes item_id, world and limit (1-50). meta takes no parameters. Prices are in gil (FFXIV in-game currency, not real money); data is crowd-sourced via Universalis (freshness varies by item popularity — see last_upload). A short ~3-minute cache fronts the market data.",
        "sample": {
            "item_id": 5057,
            "location": "Aether",
            "average_price": 278,
            "sale_velocity_per_day": 520
        },
        "source": "Universalis (universalis.app) + XIVAPI (v2.xivapi.com), keyless, live",
        "service": "ffxivmarket-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/market": "Current market for an item on a world/DC (item_id=5057, world=Aether).",
            "GET /v1/search": "Resolve an item name to its id (q=grade 8 tincture).",
            "GET /v1/history": "Recent sale history for an item (item_id=5057, world=Aether)."
        },
        "description": "The live player-driven market board economy of Final Fantasy XIV, keyless. Players trade gear, materials, housing, minions and more on each server's market board, priced in gil — a huge, server-segmented economy. The search endpoint resolves an item name to its FFXIV item id (via XIVAPI); the market endpoint returns the current market for an item on a world/data-centre/region (average/min/max price, HQ/NQ split, sale velocity, cheapest listings, all from Universalis crowd-sourced data); the history endpoint returns the recent actual sales (price, quantity, quality, buyer world, time). The FFXIV market-board cut — distinct from the other game-economy and marketplace feeds (Steam Market, Warframe Market), with its own per-server, HQ/NQ and sale-history model. Gil is FFXIV's in-game currency, not real money.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-13T04:41:59.097Z",
        "request_id": "1a25c8d4-22c8-4251-b63f-c4a32a3bee42"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}