Quick Start
How to get started with the YouHodler API
The YouHodler API provides a unified REST API for accessing conversion services. This guide walks you through making your first API call.
Base URL
https://api.youhodler.comObtain an API Key
API authentication requires an API key and a secret used to sign POST requests. Both can be generated in the API section of the web application.
See the Authentication guide for more details.
Making Your First Request
All requests require the x-apikey header for authentication.
Example: Get account balances
curl -X GET "https://api.youhodler.com/v1/balance" \
-H "x-apikey: YOUR_API_KEY"See the API Reference to understand the list of available methods.
API Versioning
The API uses URI-based versioning. For example all v1 endpoints are prefixed with /v1/:
GET /v1/balance
GET /v1/convert/exchangeInfo
POST /v1/convert/exchange
See the Versioning guide for the full version support policy.
Next Steps
- Authentication — details on API key usage and signed requests
- Rate Limits — understand request limits per endpoint
- Error Handling — error response format and error codes
Updated 12 days ago
