Getting Started with YLLNΩΒΩΑ

A step-by-step guide to help you set up and use our API services.

Step 1: Create API Key

Before making requests, you'll need to obtain an API key from your developer console.


curl -X POST 'https://api.ylnbwa.com/v1/auth/register' 
-H 'Content-Type: application/json' 
-d '{
  "org_id": "your-org-id",
  "project_id": "your-project-id"
}'

The response will include your long-lived API key. Store this securely in an environment variable or keystore.

Response Format:
{
  "api_key": "ABCD1234-EFGH5678-IJKL9012-3210LKJI",
  "valid_until": "2026-01-01T24:00:00Z"
}

Step 2: Make Your First Request

Use the API key in the Authorization header to access protected resources. We recommend using Bearer authentication.

curl -X GET 'https://api.ylnbwa.com/v1/data' \
-H 'Authorization: Bearer YOUR_API_KEY'

Successful requests will return 200 OK with JSON-formatted data. Check the response format for field definitions in our technical reference.

Step 3: Understand Rate Limits

All endpoints have per-minute and per-day rate limits based on your plan tier.

Free Tier

  • • 3,000 requests/minute
  • • 720,000 requests/day

Enterprise Tier

  • • 100,000 RPS
  • • 50M+ daily

Ready to Build with Us?

Once you've completed this tutorial, explore our intermediate guide or build your first production integration.