Welcome to Ricardoneud.com#
Welcome to the official documentation portal of Ricardoneud.com — your centralized hub for API usage, sandbox testing, and product integration.What You’ll Find Here#
Production API Docs (Base URL: https://api.ricardoneud.com
)
Live Endpoint Testing from within the documentation
Product Guides and integration instructions for available services
API Overview#
Ricardoneud.com's API provides both HTTPS/REST endpoints and persistent WebSocket connections for real-time events.API Versioning#
Version | Status | Default |
---|
v1 | Discontinued | |
v2 | Discontinued | |
v3 | Discontinued | |
v4 | Available | ✓ |
Omitting the version defaults to the current stable version (v4
).Authentication Methods#
Access to the API supports two authentication methods:Legacy Method: API Key Authentication#
3.
Click the Create API Key button
4.
In the modal that appears:Enter a descriptive name for your API key
Configure the desired permissions
Set the state to Production
using the environment selector
6.
Done! Your API key is now created
Example UI:

Usage#
Use the API Key in the authorization header of subsequent requests:This method remains fully supported and compatible with all API versions.Current Method (v3+): User Login Authentication#
Don't share your screen or take screenshots while your password is in the request body!
Since version 3, you can also authenticate using the user login endpoint:POST https://api.ricardoneud.com/v{version_number}/user/login
A successful login returns a JSON response containing a secret
token:{
"message": "Login successful",
"userId": 123,
"userEmail": "user@example.com",
"secret": "UmljYXJkb05ldWQuQXBpQ29ubmVjdC0xYTJiM2M0ZDVlNmY3Zzho"
}
Use the returned secret
token in the headers with Basic authentication format for subsequent API requests:For detailed request and response specifications of the login endpoint, Read More:API Base URLs#
Environment | Base URL | Current Version |
---|
Production | https://api.ricardoneud.com | v4 (stable) |
Use versioned endpoints for consistency:https://api.ricardoneud.com/v4/...
Start Testing#
All API endpoints can be tested live inside this documentation. Whether you're working in production, you'll benefit from:Real-time response previews
Error handling simulation
WebSocket event testing (where supported)
Modified at 2025-08-19 13:47:51