Getting Started
Learn how to set up and configure your environment to start building with Eggeia.
Create an Account
Before you begin, sign up to get access to your free API key and sandbox environment.
Take 2 minutes - no credit card needed
Get Your API Key
Once registered, navigate to your dashboard to retrieve your API key for authentication.
eggeia_1234567890abcdef
Environment Setup
Install dependencies and configure your development environment for Eggeia integration.
// Install CLI
$ npm install -g @eggeia/cli
// Initialize project
$ eggeia init my-project
Test in Sandbox
Use our interactive sandbox to test code snippets and API calls before integration.
Make Your First Request
Use your API key to make a test request to Eggeia's API endpoints.
$ curl -X GET \
https://api.eggeia.com/api/v1/data \
-H 'Authorization: Bearer YOUR_API_KEY'
Replace YOUR_API_KEY
with your actual key from step 2.
Verify Results
Check the response from the API in your terminal or sandbox preview panel.
Success! Response status 200 OK received.
{ "status": "success", "data": {"example": "response"} }