API specification for Glomo (1.0.0)
The Glomo API follows REST architecture, utilizing resource-oriented URLs for clarity. It handles form-encoded request bodies, delivers responses in JSON format, and operates with standard HTTP methods, authentication, and response codes.
You can download the complete API collection by using the download options on the right.
https://api.glomopay.com/api/v1/
- Production server
https://api.glomopay.com/api/v1/settlements/{id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://api.glomopay.com/api/v1/settlements/setl_6878e266jt1P3 \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'
Settlement found
The amount of the settlement in cents. For example, 1000 cents is $10.00. The currency is determined by the currency
field.
The currency in which the settlement is made. The currency code is in ISO 4217 format. For example, USD.
The creation timestamp of the settlement.
{ "id": "setl_6878e266jt1P3", "status": "success", "payment_method": "swift_transfer", "amount": 1000, "currency": "USD", "fees": { "fx_fee": { … }, "txn_fee": { … } }, "utr": "1568176960vxp0rj", "created_at": "2024-12-06T11:38:37.130Z", "updated_at": "2024-12-06T11:38:37.130Z" }
ISO-8601 timestamp in UTC to filter resources created before this time. Use this to avoid Page drift
issue. See Pagination parameters for more details.
ISO-8601 timestamp in UTC to filter resources created after this time. Use this to avoid Page drift
issue. See Pagination parameters for more details.
- Production server
https://api.glomopay.com/api/v1/settlements/{id}/transactions
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.glomopay.com/api/v1/settlements/setl_6878e266jt1P3/transactions?before=2025-02-18T12%3A03%3A44Z&after=2025-01-18T12%3A03%3A44Z&per_page=20&page=1' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'
{ "data": [ { … } ], "page_meta": { "current": 2, "previous": 1, "next": 3, "per_page": 20, "pages": 10, "count": 200 } }