Getting started
👋🏽 Welcome to the Chimoney API
This API allows you to make payouts seamlessly, whether you are a business owner or a developer just exploring the platform.
Create an account
Before you can start making API calls, you need to create an account.
Businesses integrating with the API
- Create an account at dash.chimoney.io.
- Email support@chimoney.io to request "Verification and API Access." Ensure you include links to your website and explain its use case briefly. Alternatively book-a-demo.
Developers testing the API
- Create an account at the sandbox.
note
Your sandbox account is automatically funded with $1000 of test credits.
- Download the Chimoney app.
- Click the Organizations tab on the dashboard and create an organization or team.
- Open the Developers tab to create an app and use the API keys to access the sandbox endpoints.
▶️ Watch this video for step-by-step guidance.
The base URLs
Chimoney provides two base URLs: one for production, one for sandbox testing:
| Environment | URL |
|---|---|
| Production | https://api.chimoney.io |
| Sandbox | https://api-v2-sandbox.chimoney.io |
Authentication
The Chimoney API uses an API Key for authentication.
- Copy your API key from the developer dashboard.
- Include it in the Authorization header of every request.
Required headers
- Authorization:
<YOUR_API_KEY> - Content-type: application/json
A sample Postman request
Below is a sample Postman request to generate invoice data with AI.
POST/https://api-v2-sandbox.chimoney.io/v0.2/ai/invoice/generate
Host: https://api-v2-sandbox.chimoney.io
Authorization: <YOUR_API_KEY>
Content-Type: application/json
{
"instruction": "Create an invoice from Jane Doe to Chimoney Incorporate for Web Dev Service which I provided for 4 months at $5/month and for Project Management cost of $100 with tax rate of 5%."
}
tip
To test endpoints, you can do that in the documentation or import the postman collection by doing these:
- Go to get postman collection page.
- Click Run in Postman at the top right corner of the page.