```json
{
"service_type": "api",
"base_url": "https://api.agify.io",
"auth_method": "api_key",
"auth_config": {
"required_for_free_tier": false,
"free_quota": "100 names/day",
"paid_tiers_require_key": true
},
"endpoints": [
{
"path": "/",
"method": "GET",
"description": "Predict age from name",
"parameters": ["name", "country_id (optional)"]
}
],
"pricing_model": {
"type": "freemium",
"details": {
"free": "100 names/day",
"basic": "$20/month - 25,000 names",
"standard": "$60/month - 250,000 names",
"plus": "$180/month - 2,500,000 names",
"premium": "$540/month - 25,000,000 names"
}
},
"rate_limits": {
"free": "100 names/day",
"paid": "based on subscription tier"
},
"capabilities": [
"age prediction from first names",
"country-scoped predictions (240+ countries)",
"batch processing (up to 10 names per request)",
"demographic analysis data",
"CSV upload tool",
"no-code integrations"
],
"raw_analysis": "Agify.io is actually a well-documented REST API service, not a platform without APIs. It provides age prediction from first names using a dataset of 908+ million records across 240+ countries. The service offers a clear freemium model with generous free tier (100 names/day) and multiple paid tiers. It's part of a suite of three demographic APIs (age, gender, nationality prediction) by Demografix ApS. The API includes country scoping, batch processing, and extensive tooling including CSV upload and no-code integrations. This should be analyzed as an API service rather than a platform, as it has clear REST endpoints, authentication patterns, and is designed for programmatic access."
}
```