``` ```html Quick Start - EzeniIa Developer Guide
Ezeniia

Get Started - Developer Quick Start Guide

Overview

Welcome to the Ezeniia Developer Platform. This guide contains step-by-step instructions for integrating our tools into your project. Our platform offers blockchain, AI development and sustainability tools.

Select an API:
  • Platform
  • Getting Started
  • APIs
  • Authentication
  • OAuth2
  • Client Credentials

Getting Started

To start integrating Ezeniia, follow these steps to create an API key.

Step 1 - Create an API Key

You'll need to authenticate with our platform using either an OpenID Connect or Client Credentials Grant.

curl -u <Client-Id> https://auth-dev.ezeniia.com/token endpoint
"4a3a6255-68e1-4950-85af-146e7203f0a2"
Parameter Value Example Value
client_id string
grant_type client_credentials client_credentials
audience string https://api.ezeniia.com
Response
{"access_token":"eyJhbGciOi","scopes":["platform.write.all","platform.read.all"]}

Step 2 - Using the Authenticated Client

curl -H "Authorization: Bearer <token>" https://platform.ezeniia.com/api

Sample Output: 200 OK

Getting an Access Token

Client ID is generated after account creation.

POST /v1/tokens
Title

grant_type:

password
username
Password

© Ezeniia Corp 2023 - Developed in Finland. All rights reserved.

```