Ghosted Development API

Public utility APIs

Introduction & Base URL

Welcome to the Ghosted Development API documentation. Our public utility APIs are designed to be fast, simple, and reliable for common development needs. All services are currently **public** and **do not require an API key**.

Base URL:
https://api.ghosted-development.space
Tip: All endpoints currently use the **GET** method and return JSON objects. Ensure your requests include appropriate query parameters.

Utility Endpoints

These are the core utility endpoints available to all developers. Click on any endpoint to view the details.

⏱️ Rate Limits

As this is a public API, requests are limited based on your **IP address** to ensure service stability and fair usage for all developers.

Current Limits

Rate Limit Response (429)

If you exceed the limit, you will receive an HTTP **429 Too Many Requests** status code, with an error message detailing when you can retry.

Example Error Response (429)

{
  "success": false,
  "error": "Rate limit exceeded. Try again in 5 seconds."
}
To avoid hitting the rate limit, consider caching frequently used results or adding a short delay between calls.

❌ Error Response Format

All non-200 responses will return a consistent JSON structure to help you debug quickly.

Standard Error Structure

{
  "success": false,
  "error": "Descriptive message detailing the issue (e.g., Missing parameter, Invalid value)."
}

Common Status Codes