Developer Guides

In-depth documentation and tutorials to help you master our WebAssembly-powered APIs.

🚀 Getting Started

📘 Getting Started Guide

Step 1: Create an Account

Start by registering at account.elibbetos.com to obtain your API credentials.

Step 2: Install CLI

Download and install the Elíbbetos CLI for command-line access to our platform.

# For macOS using Homebrew
brew install elibbetos/tap/elibbetos

# Verify installation
elibbetos --version
                        

📚 Featured Guides

📦 API Usage Tutorial

1. Make Your First API Call

curl -X GET https://api.elibbetos.com/v1/status \
     -H "Authorization: Bearer YOUR_API_KEY" \
     -H "Content-Type: application/json"
                    

Replace YOUR_API_KEY with your actual token. This will return a 200 OK response confirming API access.

2. Handling Pagination

{
  "resources": [...],
  "total_pages": 5,
  "current_page": 2
}
                        

All paginated responses include:

  • resources array
  • total_pages
  • current_page indicator