/v1/mempool
Current unconfirmed-transaction pool with a sample
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
curl "https://api.oanor.com/monero-api/v1/mempool" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/monero-api/v1/mempool", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/monero-api/v1/mempool");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/monero-api/v1/mempool",
headers={"x-oanor-key": "oanor_test_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"data": {
"sample": [
{
"fee_xmr": 0.00017712,
"tx_hash": "f5736b2d75a8ba3aaabb71738ce665d669057627893878d3b9c7ff703b3496d0",
"timestamp": "2026-06-11T16:46:54.000Z",
"fee_atomic": 177120000,
"size_bytes": 2214
},
{
"fee_xmr": 0.00012296,
"tx_hash": "286d5a0f39b40f07bda31120012b99d2959c443f28b4ac6a157681646c9d3219",
"timestamp": "2026-06-11T16:46:54.000Z",
"fee_atomic": 122960000,
"size_bytes": 1537
},
{
"fee_xmr": 0.00012264,
"tx_hash": "558b16642a9b0f920b22752a44970c837b0f0c6b1f5e94d06e6ad244da1fc714",
"timestamp": "2026-06-11T16:46:49.000Z",
"fee_atomic": 122640000,
"size_bytes": 1533
},
{
"fee_xmr": 0.00012248,
"tx_hash": "e787f6c4bd55229f0f51e06d144f5f7e35d57b49d658bbc4d2e5cf48e77c722c",
"timestamp": "2026-06-11T16:46:48.000Z",
"fee_atomic": 122480000,
"size_bytes": 1531
},
{
"fee_xmr": 0.00017808,
"tx_hash": "4bc644023a5c2aa0d3ece3e8b3fc1f157d1c33df52267b741612a2f1b92455e6",
"timestamp": "2026-06-11T16:46:38.000Z",
"fee_atomic": 178080000,
"size_bytes": 2226
},
{
"fee_xmr": 3.172e-5,
"tx_hash": "6958df1f30d3c98d38d78861bc4a4a58fec410c78765c65b290d7523d9dd6b36",
"timestamp": "2026-06-11T16:46:36.000Z",
"fee_atomic": 31720000,
"size_bytes": 1526
},
{
"fee_xmr": 0.00194176,
"tx_hash": "08fa1f34135decd707ca6d51175337e83b7823429685112ea60de5bdec1fabfa",
"timestamp": "2026-06-11T16:46:30.000Z",
"fee_atomic": 1941760000,
"size_bytes": 2638
},
{
"fee_xmr": 0.00012256,
"tx_hash": "d77c4b7cfa56f2f91a2d82e2314eb378cc2252c84245702d60f26d7b584e23c9",
"timestamp": "2026-06-11T16:46:30.000Z",
"fee_atomic": 122560000,
"size_bytes": 1532
},
{
"fee_xmr": 0.00012264,
"tx_hash": "33f725a428cf408cda73db4a6026dead07d5e0066b0be9103b71b09791b8226c",
"timestamp": "2026-06-11T16:46:29.000Z",
"fee_atomic": 122640000,
"size_bytes": 1533
},
{
"fee_xmr": 0.00049056,
"tx_hash": "349dd63d544b1f1ac6fd1b2e6a73349f4dcd87c6eb4eecbe67f3867e3ed59813",
"timestamp": "2026-06-11T16:46:29.000Z",
"fee_atomic": 490560000,
"size_bytes": 1533
}
…