Final Fantasy XIV API
Overview
The XIVAPI provides comprehensive game data from Final Fantasy XIV, including characters, items, quests, duties, and lore. No API key is required for most requests, and CORS is supported, making it friendly for browser-based projects. It is ideal for building character profile viewers, item databases, or FFXIV companion tools.
Beginner Tip
Begin with the /search endpoint to look up any in-game content by name — it is the most versatile starting point. For character lookups, use the Lodestone character ID found in the character profile URL on the official FFXIV site.
Available Data
Example Response
{
"id": 1,
"name": "Final Fantasy XIV",
"data": "Final Fantasy XIV Game data API",
"source": "Final Fantasy XIV"
} Field Reference
row_id Unique row identifier for the game data entry. fields Object containing all data fields for the requested game sheet row. score Relevance score from the search engine indicating how well the result matches the query. sheet Name of the FFXIV game data sheet the result comes from (e.g., Item, Quest). url API URL to retrieve the full details of this specific entry. Implementation Example
const url = "https://xivapi.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.