elbvbeta

Try elbvbeta API Live

Interact with our API in real-time through this sandbox demo.

Live API Example

Send Request


# Replace with your credentials
client_id="your_client_id"
client_secret="your_client_secret"

curl -X POST "https://api.elbvbeta.com/auth/api-token"
     -H "Content-Type: application/json"
     -d '{"client_id": "'$client_id'", "client_secret": "'$client_secret'"}'
                                

API Response

No response yet.

Click "Run Demo" to see live examples.

How It Works

1. Authentication

Generate an API access token using your credentials with the /auth/api-token endpoint.


POST /auth/api-token
Content-Type: application/json
{
  "client_id": "your_client_id",
  "client_secret": "your_client_secret"
}
                            

2. Metrics

Retrieve real-time metrics using the /data/metrics endpoint with the authorization header.


GET /data/metrics
Headers:
Authorization: Bearer {access_token}
                            

Key Features

Real-Time Demo

Interactive API examples with instant response feedback.

🔐

Secure Demo

All API requests are handled through secured sandbox endpoints.

💡

Instant Feedback

Clear responses with formatted JSON to help understand API behavior.