FFXIV Collect
Every Final Fantasy XIV mount, minion and collectable
Tracks the collectables of Final Fantasy XIV: mounts, minions, orchestrion rolls, achievements, hairstyles and more. Endpoints return rich descriptions, rarity data and in-game tooltips. Free and keyless with permissive CORS.
GET https://ffxivcollect.com/api/mounts?limit=1
{
"count": 1,
"results": [
{
"id": 446,
"name": "Carbide Grey Warp Loader",
"description": "Call into action your carbide grey warp loader, and bulldoze your way through life faster."
}
]
}curl "https://ffxivcollect.com/api/mounts?limit=1"const res = await fetch("https://ffxivcollect.com/api/mounts?limit=1");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://ffxivcollect.com/api/mounts?limit=1")
print(res.json())BROWSER CALLS BLOCKED (NO CORS/HTTPS) — USE THE CURL SNIPPET
/mounts?limit=1PROBEDEvery Final Fantasy XIV mount, minion and collectable
/mounts?limit=5Mounts — documented GET route.
/mounts?page=1Mounts — documented GET route.
/api/docsDocs — documented GET route.
/mounts/186Mounts details by ID (example: 186).
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
FFXIV Collect: common questions
Is FFXIV Collect free to use?
Yes — FFXIV Collect is a free games API. Free tier: Free, no API key required. Whether the free tier allows commercial use is unclear — check the provider docs.
Does FFXIV Collect need an API key?
No — FFXIV Collect needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call FFXIV Collect from the browser?
Not directly — FFXIV Collect doesn't send browser-friendly CORS headers, so call it from a server or proxy instead. Copy the curl or Python snippet on this page to get started.
Is FFXIV Collect up right now?
As of our last scheduled check, FFXIV Collect is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.