FFXIV Collect API
Overview
FFXIV Collect is an API for Final Fantasy XIV collectables, including mounts, minions, emotes, hairstyles, and achievements. It requires no API key and supports CORS, making it easy to use directly from the browser. It is a great resource for building FFXIV collection trackers or character profile apps.
Beginner Tip
All endpoints are publicly accessible with no authentication. Start with /mounts or /minions to explore the collectable data structure before requesting character-specific collection data.
Available Data
Example Response
{
"id": 1,
"name": "FFXIV Collect",
"data": "Final Fantasy XIV data on collectables",
"source": "FFXIV Collect"
} Field Reference
id Unique identifier for the collectable item. name Display name of the mount, minion, or other collectable. image URL to the collectable item icon or image. owned Percentage of tracked players who own this collectable. sources List of in-game sources where the collectable can be obtained. Implementation Example
const url = "https://ffxivcollect.com/";
const response = await fetch(url);
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Matrix Score Breakdown
Fully tested on Apr 5, 2026
Technical Specifications
Related Tags
Similar APIs
View All →Age of Empires II
Age of Empires II provides programmatic access to get information about age of empires ii resources via REST API.
AmiiboAPI
AmiiboAPI provides programmatic access to nintendo amiibo information via REST API.
Animal Crossing: New Horizons
⭐ Beginner's PickThe Animal Crossing: New Horizons API gives you free access to in-game data including villagers, critters, fossils, art, music, and furniture.
Autochess VNG
The Autochess VNG API provides game data for the Autochess VNG mobile game including heroes, items, and races.
Barter.VG
Barter.VG aggregates data about PC games, DLC, bundles, giveaways, and trading from Steam and other platforms.