cURL
curl --request POST \ --url https://developer.world.org/api/v2/minikit/send-notification \ --header 'Content-Type: application/json' \ --data ' { "app_id": "app_id", "wallet_addresses": [ "0x123", "0x456" ], "title": "title", "message": "Hello ${username}, your transaction is complete!", "mini_app_path": "mini_app_path" } '
{ "success": true, "status": 123, "result": [ { "walletAddress": "<string>", "sent": true, "reason": "<string>" } ] }
Send notifications to users of your mini app.
Supports legacy payload (title + message) and localized payload (localisations). If both are provided, localized payload is used.
title
message
localisations
Array of wallet addresses to notify. Users must have opted in. Max 1000 per call.
30
200
Notification send status
Show child attributes
Was this page helpful?