Μετάβαση στο περιεχόμενο
GET /v1/meta

Service metadata

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/ffxivmarket-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

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_..."}
)

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

{
    "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
}