```json
{
"service_type": "platform",
"base_url": "https://dropmail.me",
"auth_method": "token",
"auth_config": {
"token_location": "url_path",
"description": "Token-based authentication via URL path parameter"
},
"endpoints": [
{
"path": "/api/graphql/{token}",
"method": "POST",
"description": "GraphQL endpoint for all operations",
"supports_subscriptions": true
},
{
"path": "/api/graphql/{token}/websocket",
"method": "WS",
"description": "WebSocket endpoint for real-time subscriptions"
}
],
"pricing_model": {
"type": "unknown",
"details": {
"note": "Pricing information not found in documentation"
}
},
"rate_limits": {},
"capabilities": [
"temporary_email_creation",
"ephemeral_inbox_management",
"real_time_email_notifications",
"attachment_support",
"unlimited_mailbox_size",
"configurable_retention_period",
"multiple_domain_support",
"graphql_api",
"websocket_subscriptions",
"programmatic_email_access"
],
"raw_analysis": "DropMail.me is a specialized platform providing temporary email services through a GraphQL API. It enables developers to programmatically create and manage ephemeral email addresses that persist for 10 minutes or longer. Key features include unlimited mailbox size, attachment support, and real-time email notifications via WebSocket subscriptions. The platform uses token-based authentication where the token is embedded in the API endpoint URL. It supports multiple programming languages with SDK examples for Python (using gql library) and JavaScript (using graphql-request and graphql-ws). The service appears to be developer-focused, providing both HTTP and WebSocket interfaces for different use cases. The platform offers random domain selection and seems designed for testing, development, and automation scenarios where temporary email addresses are needed. The GraphQL interface provides a modern, flexible API design compared to traditional REST APIs for email services."
}
```