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.
- Go to the dashboard
- Create a new API key
- 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"