API Documentation
Core Resources
- Webhook
Checkout
- Session
Payments
- Payment Codes
- Payment Links
- Payment Pages
Transfers
- Payout
- Bulk Payout
Embedded Finance
- Financial Account
Extra Resources
- KYC Verification
- Financial Providers
- Available Countries
List MoMos
List the mobile money providers that Monime supports in a country.
curl --request GET \
--url https://api.monime.io/momos \
--header 'Authorization: Bearer <token>'
{
"success": true,
"messages": [
"<any>"
],
"result": [
{
"id": "fpr-TJh76H8hj778hftdtu66gjio",
"code": "m17",
"name": "Orange Money",
"country": "SL",
"status": {
"active": true
},
"featureSet": {
"payout": {
"canPayTo": true,
"schemes": [
"<string>"
],
"metadata": {}
},
"payment": {
"canPayFrom": true,
"schemes": [
"<string>"
],
"metadata": {}
},
"kycVerification": {
"canVerifyAccount": true,
"metadata": {}
}
},
"createTime": "2023-11-07T05:31:56Z",
"updateTime": "2023-11-07T05:31:56Z"
}
],
"pagination": {
"count": 1,
"total": 1,
"next": "<string>"
}
}
Authorizations
Bearer HTTP authentication specified with the header Authorization: Bearer <access_token>
Query Parameters
The ISO 3166-1 alpha-2 code of the country
2
Response
Represents the status of the query operation, confirming if it was successful. This field is always true
Contains a list of messages providing relevant information or feedback related to the query or operation
The list of items in the response
The ID of the momo.
"fpr-TJh76H8hj778hftdtu66gjio"
The unique identifier assigned to a momo by Monime to identify it within Monime's ecosystem.
"m17"
The name of the momo.
"Orange Money"
The country of the momo.
"SL"
The status of the momo's operations within monime'.
Whether or not this momo is active within Monime.
The set of Monime features that the momo supports.'
The momo's payout feature information.
Whether or not Monime can pay out to an account in the momo.
The supported payout schemes of the momo.
The momo's payment feature information.
Whether or not Monime can accept payment from an account in the momo.
The supported payment schemes of the momo.
The momo's KYC verification feature information.
The time the momo's support was added.
The last time the momo's support was updated.
The pagination info associated with the response
The number of items in this list response.
x >= 0
The estimated total number of items matching the request.
x >= 0
This identifier marks the first item in this response list when moving backward through the results, or the last item when moving forward. Use this identifier with the 'after' or 'before' query parameter in your next request to get the items that come after or before this item in the overall list respectively.
Was this page helpful?
curl --request GET \
--url https://api.monime.io/momos \
--header 'Authorization: Bearer <token>'
{
"success": true,
"messages": [
"<any>"
],
"result": [
{
"id": "fpr-TJh76H8hj778hftdtu66gjio",
"code": "m17",
"name": "Orange Money",
"country": "SL",
"status": {
"active": true
},
"featureSet": {
"payout": {
"canPayTo": true,
"schemes": [
"<string>"
],
"metadata": {}
},
"payment": {
"canPayFrom": true,
"schemes": [
"<string>"
],
"metadata": {}
},
"kycVerification": {
"canVerifyAccount": true,
"metadata": {}
}
},
"createTime": "2023-11-07T05:31:56Z",
"updateTime": "2023-11-07T05:31:56Z"
}
],
"pagination": {
"count": 1,
"total": 1,
"next": "<string>"
}
}