FFXIV Collect API

⭐ Beginner's Pick Games & Comics / No Auth Required Beginner HTTPS CORS
Free to Use Varies (check documentation)

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

FFXIV Collect data via REST API
JSON-formatted response data
Freely accessible without authentication

Example Response

JSON 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

404 Not Found The character name, server, or resource ID does not exist.
Verify the character name and server spelling using the Lodestone search at https://na.finalfantasyxiv.com/lodestone/.
Empty owned array The character has not been synced to FFXIV Collect yet.
Ask the player to log in to https://ffxivcollect.com and link their Lodestone profile to enable tracking.
Rate limit hit Too many requests sent in a short period.
Add delays between requests and cache responses locally to reduce API load.

Matrix Score Breakdown

🌐 Reachability 30/30
⚡ Speed 15/20
🔒 Security 15/15
🛠 Developer XP 20/20
✓ Reliability 7/15
Response Time 230ms

Fully tested on Apr 5, 2026

Technical Specifications

Auth No Auth
HTTPS REQUIRED
CORS YES
Category Games & Comics
Difficulty Beginner
Verified: 2026-04-04

Similar APIs

View All →