API Documentation
deprec8 provides a REST API for programmatic access to deprecation data, project management, and account operations.
Base URL
https://api.deprec8.io/v1
Overview
- Authentication — how to authenticate API requests
- Rate Limits — request quotas and throttling
Response Format
All API responses use JSON. Successful responses return data directly:
{
"data": { ... },
"meta": {
"timestamp": 1739318400
}
}
Error responses include a status code and message:
{
"error": {
"code": "NOT_FOUND",
"message": "The requested resource was not found.",
"timestamp": 1739318400
}
}
Timestamps
All temporal fields use Unix timestamps (seconds since epoch). For example, 1739318400 represents 2025-02-12T00:00:00Z.
Last updated: 2026-02-12