← Back to Documentation

Quick Start Guide

Your first steps with Eggeia’s API in 5 simple steps

1

Create an Account

Sign up at our platform to get access to your free API key and sandbox environment.

2

Get Your API Key

After signing up, navigate to your dashboard to retrieve your API key for authentication.

Your API key will look like:

eggeia_1234567890abcdef
3

Test in Sandbox

Use our interactive sandbox to try code snippets before integrating with your project.

4

Make Your First Request

Here's an example of calling the Eggeia Data API with cURL:

$ 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.

5

Implement in Your Project

Here's a JavaScript example of integrating with Eggeia:

const client = new Eggeia.Client({
  apiKey: 'YOUR_API_KEY'
});

client.data.get()
  .then(response => console.log('Success:', response))
  .catch(error => console.error('Error:', error));

What's Next

Explore Tutorials

Learn how to build more complex integrations with our step-by-step guides.

View Tutorials

Check API Docs

Full technical reference for all available endpoints and parameters.

API Reference