Convert note identifiers to hex event IDs — 5 sats
Decode a Nostr note1... identifier to a canonical 64-character hex event id. Useful when indexing notes or passing event ids to APIs that expect hex.
5 sats via L402.
curl -X POST https://maximumsats.com/api/note-decode \
-H "Content-Type: application/json" \
-d '{"note":"note1qqsq4pkxvz9w8f4g7zkj6f9qz8x6jz7l9w3r6v7v2ly2e8d9q3kq9x0f5f"}'
{
"ok": true,
"note": "note1qqsq4pkxvz9w8f4g7zkj6f9qz8x6jz7l9w3r6v7v2ly2e8d9q3kq9x0f5f",
"hex_event_id": "3bf0c63fcb93463407af97a5e5ee64fa883d107ef9e558472c4eb9aaaefa459d"
}