Skip to main content
This guide walks you through creating an account, generating an API key, and making your first successful request to the ErynoaGroup API. By the end, you’ll have a working integration ready to extend.

Prerequisites

Steps

1

Sign up and access your dashboard

Create an account at erynoa.group. After signing in, you’ll land on your dashboard where you can manage API keys, view usage, and configure settings.
2

Generate an API key

In your dashboard, go to Settings → API Keys and click Create API Key. Give it a descriptive name (e.g., my-app-production) and click Generate.
Copy your API key immediately — it will only be shown once. Store it in a secure location such as a password manager or a secrets manager like AWS Secrets Manager or HashiCorp Vault.
3

Make your first API call

Use your API key in the Authorization header as a Bearer token. Here’s a simple request to verify your credentials:
curl -X GET https://api.erynoa.group/v1/resources \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json"
A successful response returns HTTP 200 with a JSON body:
{
  "data": [],
  "meta": {
    "total": 0,
    "page": 1,
    "per_page": 20
  }
}
4

Explore the API

You’re ready to start building. Check the API Reference for all available endpoints, or follow the Integrations guide to connect ErynoaGroup to your existing tools.

Common issues

ProblemSolution
401 UnauthorizedCheck that your API key is correct and included in the Authorization: Bearer header.
403 ForbiddenYour API key may lack the required permissions. Review key scopes in your dashboard.
429 Too Many RequestsYou’ve exceeded your rate limit. Wait and retry, or contact support to increase your limit.
Set your API key as an environment variable (ERYNOA_API_KEY) rather than hardcoding it in your application to keep your credentials secure.