Address · Reads onchain state
Returns the onchain transaction history of an address, paginated and sorted by block number descending. Each entry is a settled transaction with what it moved: the flows, approvals, and counterparties involved, normalized across every chain Plug indexes rather than raw logs left for the caller to decode. Reach for it to render an activity feed, to reconcile what a strategy actually did against what it was meant to do, or to walk an address's history without running an archive node.
Send a request
Response
{links: {self: stringprev: string | undefinednext: string | undefined} | undefinedheaders: unknown | undefineddata: discriminatedunion[] | null}
Code samples
Language
Prompt
Call the Plug API endpoint "Get activity".## EndpointGET /address/{address}/activityBase URL: https://api.plug.to## DescriptionReturns the onchain transaction history of an address, paginated and sorted by block number descending.Each entry is a settled transaction with what it moved: the flows, approvals, and counterparties involved, normalized across every chain Plug indexes rather than raw logs left for the caller to decode.Reach for it to render an activity feed, to reconcile what a strategy actually did against what it was meant to do, or to walk an address's history without running an archive node.## Path Parameters- address (string, required) — The EVM address to get information for. In the case that you request an address we have never indexed, we will immediately index it.Current value: 0x62180042606624f02d8a130da8a3171e9b33894d## Query Parameters- filter[chain_id] (integer, optional) — Filter results to a specific chain from the listed of supported options.- limit[count] (integer, optional) — Maximum number of results to return (1-200, default 50).- limit[offset] (integer, optional) — Number of results to skip for pagination.## Headers- Accept (string, required) — For a typical single-time JSON response, set this to application/json. To receive realtime updates through a stream, set this to text/event-stream. (default: application/json) [application/json, text/event-stream]Current value: application/json## Response Schema- links (object, optional)- self (string, required)- prev (string, optional)- next (string, optional)- headers (unknown, optional)- data (array of discriminatedunion, optional)## Example RequestGET https://api.plug.to/address/0x62180042606624f02d8a130da8a3171e9b33894d/activity