/v1/transactions
Recent transactions for an address
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/ton-api/v1/transactions" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/ton-api/v1/transactions", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/ton-api/v1/transactions");
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/ton-api/v1/transactions",
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": {
"count": 10,
"source": "toncenter",
"address": "-1:3333333333333333333333333333333333333333333333333333333333333333",
"transactions": [
{
"lt": "83036842000002",
"hash": "0tG9ORdOQq/MDRZ7qcrhDi+H8banppmvtuP6ZQepkzg=",
"time": "2026-06-11T16:47:24.000Z",
"utime": 1781196444,
"fee_ton": 0,
"in_from": "Ef8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAU",
"out_count": 0,
"in_value_ton": 2.702524941,
"out_value_ton": 0
},
{
"lt": "83036842000001",
"hash": "Xct8D5Bww8LfGTAVnpAB/6ht4Vn/D7plcbkm14G/NjM=",
"time": "2026-06-11T16:47:24.000Z",
"utime": 1781196444,
"fee_ton": 0,
"in_from": null,
"out_count": 0,
"in_value_ton": null,
"out_value_ton": 0
},
{
"lt": "83036841000002",
"hash": "yIUs0+xoq3g+HnlVbQ7aBAh6JeEbrXLVmCRdzKcROso=",
"time": "2026-06-11T16:47:24.000Z",
"utime": 1781196444,
"fee_ton": 0,
"in_from": "Ef8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAU",
"out_count": 0,
"in_value_ton": 2.70161076,
"out_value_ton": 0
},
{
"lt": "83036841000001",
"hash": "liDNUmRxIBj6/K1uvRcAqurct9NKwntkhHdtKroZtI0=",
"time": "2026-06-11T16:47:24.000Z",
"utime": 1781196444,
"fee_ton": 0,
"in_from": null,
"out_count": 0,
"in_value_ton": null,
"out_value_ton": 0
},
{
"lt": "83036840000002",
"hash": "WrDMnSw/tD+IAFwsAcpxurqEjtJ8gDba4OnnkXYrj3E=",
"time": "2026-06-11T16:47:24.000Z",
"utime": 1781196444,
"fee_ton": 0,
"in_from": "Ef8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAU",
"out_count": 0,
"in_value_ton": 2.701753065,
"out_value_ton": 0
},
{
"lt": "83036840000001",
"hash": "2LRLPLmMl4M4d6DlHqDXWJHF6XsvrGwuY6eI23PPuN8=",
"time": "2026-06-11T16:47:24.000Z",
"utime": 1781196444,
"fee_ton": 0,
"in_from": null,
"out_count": 0,
"in_value_ton": null,
"out_value_ton": 0
},
{
"lt": "83036839000002",
"hash": "yf/iOyjmGQfGAcz/ICGMfHXjBTMxyOfH9sU+7oHvp2o=",
"time": "2026-06-11T16:47:23.000Z",
"utime": 1781196443,
"fee_ton": 0,
"in_from"
…