When to use
- Document-first flows: create a party before a counterparty and invoice/order.
- Payouts: identify the recipient before registering a payment account.
Create
+. See API conventions.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Dollr v1 is live — mobile money and card payments. Get your API keys →
Create and manage contact records for people or entities you transact with.
curl -X POST "https://api.heydollr.app/v1/parties/create" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"fullname": "Amara Kamara",
"phone": "231771234567",
"email": "amara@example.com",
"country_code": "LR"
}'
+. See API conventions.
curl "https://api.heydollr.app/v1/parties/list?fullname=Amara" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"
curl "https://api.heydollr.app/v1/parties/retrieve/42" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"
Was this page helpful?
