Docs
[INTRODUCTION]

Quick Start

This guide gets you from zero to your first successful request to PLTFRMS in a few minutes.

By the end, you’ll:

  • have an API key
  • make an authenticated request
  • receive a real response from the platform

1. Create an API key

To interact with PLTFRMS, you’ll need an API key.

  1. Go to the dashboard
  2. Create a new API key
  3. Store it securely β€” you won’t be able to retrieve it later

All requests to the PLTFRMS API must include this key.


2. Make your first request

Use any HTTP client. Here’s an example using curl:

curl https://api.pltfr.ms/v1/iam-manager/realms 
  -X GET 
  -H "Authorization: Bearer YOUR_API_KEY" 
  -H "Content-Type: application/json"