API Documentation (First Beta!)
Access account deletion information for thousands of services programmatically.
Quick Start
https://api.justdeleteaccount.com/v1
All endpoints return JSON. No authentication required for basic usage.
Example Request
Example Response
Rate Limits
If you need higher limits, please contact us. We currently try to find a good balance for a rate limit.
Endpoints
/services
List all services with pagination and optional filters.
Query Parameters
| Parameter | Type | Description | Default |
|---|---|---|---|
| difficulty | string | Filter by difficulty level (easy, medium, hard, limited, impossible) | - |
| search | string | Search in service name and notes | - |
| lang | string | Language code for localized notes (e.g., de, fr, es), defaults to en if requested language not avaliable | en |
| page | integer | Page number | 1 |
| limit | integer | Results per page (max: 200) | 50 |
Example
/services/{id}
Get detailed information about a specific service.
Path Parameters
| id | integer | Service ID | required |
Query Parameters
| lang | string | Language code for localized notes | en |
Example
/services/by-domain/{domain}
Find a service by its domain name. Perfect for browser extensions and integrations.
Path Parameters
| domain | string | Domain name (e.g., facebook.com) | required |
Query Parameters
| subdomains | string | "exact" or "include" - whether to match subdomains | exact |
| lang | string | Language code | en |
Examples
/services/lookup-domains
Look up multiple domains in a single request (max 100 domains).
Request Body
Response
/search
Search services by query or domain with flexible filtering.
Query Parameters
| q | string | Search query (searches name, notes, URL) | - |
| domain | string | Search by domain (partial match) | - |
| difficulty | string | Filter by difficulty | - |
| lang | string | Language code | en |
| page | integer | Page number | 1 |
| limit | integer | Results per page | 50 |
Examples
/stats
Get overall statistics about the service database, including community feedback on deletion success.
Example Response
/difficulties
Get a list of all difficulty levels with descriptions and counts.
Example Response
Difficulty Levels
Simple process such as a delete account button
Allow account deletion but require additional steps
Require contacting customer service or no easy deletion
Only allow deletion if you live in an area with privacy rights
Basically impossible to totally delete your account
Response Format
Service Object
All service responses include the following fields:
| id | integer | Unique service identifier |
| name | string | Service display name |
| url_name | string | URL-friendly service slug (e.g., "facebook", "google-account") |
| url | string | Direct link to account deletion page |
| difficulty | string | Deletion difficulty level (easy, medium, hard, limited, impossible) |
| notes | string | Deletion instructions (localized if lang parameter provided) |
| string|null | Email address for deletion requests | |
| domains | array | Associated domain names |
| available_languages | array | Available language codes for localized notes |
Success Response
Error Response
HTTP Status Codes
200 |
Success |
400 |
Bad Request |
404 |
Not Found |
422 |
Validation Error |
429 |
Rate Limit Exceeded |
500 |
Internal Server Error |
Common Use Cases
Browser Extension
Detect the current website and show account deletion information:
Privacy Dashboard
Build a dashboard showing deletion difficulty for user's services:
Bulk Account Checker
Check multiple domains at once:
Best Practices
- Cache responses: Data doesn't change frequently, consider caching for 24 hours
- Handle errors gracefully: Always check the
successfield - Respect rate limits: Implement exponential backoff if you hit limits
- Use bulk endpoints: When checking multiple domains, use
/lookup-domains - Normalize domains: Remove www, protocols, and paths before querying
Support & Contact
Questions or need higher rate limits? Contact us:
- GitHub: mueller-lukas/justdeleteaccount_com
- Issues: Report bugs or request features on GitHub