| description | icon | layout | ||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
This section provides detailed information about the Walver.io API endpoints. |
flag-checkered |
|
The API supports two authentication methods:
Used primarily for browser-based interactions:
- Call the GET
/api/generate-login-message?wallet_address=your-wallet?selected_chain=chain - You will receive an object containing a message to be signed, a nonce, and an expiration time for the message
- You should sign the message with your wallet address and then call the POST
/api/loginwith the request body like this:
{
"wallet_address": str
"selected_chain": str
"nonce": str
"message": str
"signature": list[int] OR str
}- The response will include a session_id that should be included in subsequent requests
Recommended for server-to-server integrations:
- Create an API key in the creator dashboard (under the "API Keys" tab)
- Include the API key in the
X-API-Keyheader for all requests that require authentication
Example:
X-API-Key: wvs_your_api_key_here
All API endpoints are relative to the base URL of your deployed instance, typically:
https://walver.io
The API implements rate limiting to prevent abuse. Most endpoints are limited to 10 requests per minute per IP address. Some sensitive endpoints have stricter limits.
If you exceed the rate limit, you'll receive a 429 Too Many Requests response.