← Back to Documentation

Getting Started

Learn how to set up and configure your environment to start building with Eggeia.

1

Create an Account

Before you begin, sign up to get access to your free API key and sandbox environment.

Sign Up Now

Take 2 minutes - no credit card needed

2

Get Your API Key

Once registered, navigate to your dashboard to retrieve your API key for authentication.

eggeia_1234567890abcdef
3

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
4

Test in Sandbox

Use our interactive sandbox to test code snippets and API calls before integration.

5

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.

6

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"}
}

What's Next