Get all transactions

Get https://app.moneygraph.ai/api/v1/ledger/transactions/{entity}

Headers

Authorization* string

Pass your {api_key} as a bearer token in the request header to authorize this call

Body parameters

page string

Sets the page number; use "all" to retrieve all items. The default is 1

limit integer

Specifies the default number of items per page, with a default setting of 20

Response


{
    "data": [
        {
            "id": "9d46cdaf-efa6-422a-812e-3ee4b94c4c5d",
            "entity_id": "634fda0e-88ec-4440-b45b-9c8ca7a28a67",
            "recipient_entity_id": null,
            "amount": "10.00",
            "currency": "USD",
            "hash": null,
            "status": "pending",
            "mode": "live",
            "webhook_url": "https://webhook.site",
            "blockchain_action": "mint",
            'balance':{
                'entity_id': '10000.00',
                'recipient_entity_id': '200000.00'
            }
            "created_at": "2025-04-20T20:17:39.000000Z"
        },
        {
            "id": "177d7cda-ff6b-4b3e-ac16-e26e9669df72",
            "entity_id": "634fda0e-88ec-4440-b45b-9c8ca7a28a67",
            "recipient_entity_id": "40de80c7-4533-4a29-af22-b26485f83fe0",
            "amount": "5.00",
            "currency": "USD",
            "hash": null,
            "status": "pending",
            "mode": "live",
            "webhook_url": "https://webhook.site",
            "blockchain_action": "transfer",
            'balance':{
                'entity_id': '10000.00',
                'recipient_entity_id': '200000.00'
            }
            "created_at": "2025-04-20T20:35:48.000000Z"
        }
    ]
}