You'll use your account email and password to authenticate with the API. For production applications, you should create API keys in your account settings.
First, obtain an access token by logging in with your credentials:
Save the access_token - you'll use it to authenticate subsequent requests.
Now use your access token to retrieve your subscription information:
You've successfully made your first authenticated API call. You're now ready to integrate Organiko.ai into your applications.
Understand token management, refresh flows, and security best practices
Complete documentation for all available endpoints
Real-world examples in multiple programming languages
Receive real-time notifications for events
Make sure you're including the Authorization header with your access token:
Authorization: Bearer YOUR_ACCESS_TOKENAccess tokens expire after 60 minutes. Use your refresh token to get a new access token:
POST /auth/refreshOur API supports CORS for browser-based applications. Make sure you're making requests from an allowed origin. For server-to-server communication, CORS is not an issue.
Check the rate limit headers in the response. If you're exceeding limits, consider upgrading your plan or implementing request throttling.
Skip the boilerplate and use our official SDKs for popular languages:
npm install @organiko/api-clientpip install organiko-apiOur developer support team is here to help you get started.