API documentation for the Helix-Pay API
Helix-Pay API (1.0.0)
Download OpenAPI description
Languages
Servers
Mock server
https://docs.helix-pay.net/_mock/apis/external.gen/
Production server
https://api.helix-pay.net/v1/
Bodyapplication/jsonrequired
The unique identifier for the consumer
Example: "csm_3bbb4fe7-4c25-45b2-a363-c8db8c0084b9"
- Mock serverhttps://docs.helix-pay.net/_mock/apis/external.gen/wallets
- Production serverhttps://api.helix-pay.net/v1/wallets
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://docs.helix-pay.net/_mock/apis/external.gen/wallets \
-H 'Content-Type: application/json' \
-H 'x-api-key: YOUR_API_KEY_HERE' \
-d '{
"consumer_id": "csm_3bbb4fe7-4c25-45b2-a363-c8db8c0084b9",
"currency": "EUR"
}'Response
application/json
{ "id": "wlt_3bbb4fe7-4c25-45b2-a363-c8db8c0084b9", "consumer_id": "string", "currency": "EUR", "balance": 0, "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z" }
- Mock serverhttps://docs.helix-pay.net/_mock/apis/external.gen/wallets/{wallet_id}
- Production serverhttps://api.helix-pay.net/v1/wallets/{wallet_id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://docs.helix-pay.net/_mock/apis/external.gen/wallets/wlt_3bbb4fe7-4c25-45b2-a363-c8db8c0084b9 \
-H 'x-api-key: YOUR_API_KEY_HERE'Response
application/json
{ "id": "wlt_3bbb4fe7-4c25-45b2-a363-c8db8c0084b9", "consumer_id": "string", "currency": "EUR", "balance": 0, "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z" }
- Mock serverhttps://docs.helix-pay.net/_mock/apis/external.gen/health
- Production serverhttps://api.helix-pay.net/v1/health
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://docs.helix-pay.net/_mock/apis/external.gen/health \
-H 'x-api-key: YOUR_API_KEY_HERE'Response
application/json
{ "message": "string" }