GET
/
v1
/
profile
/
{address}
/
transactions
curl --request GET \
  --url https://backend.swap.coffee/v1/profile/{address}/transactions \
  --header 'x-verify: <x-verify>'
[
  {
    "route_id": 123,
    "unix_time": 123,
    "logical_time": 123,
    "from": {
      "token_blockchain": "ton",
      "token_address": "<string>",
      "amount": 123
    },
    "to": {
      "token_blockchain": "ton",
      "token_address": "<string>",
      "amount": 123
    },
    "dex": "stonfi"
  }
]

Authorizations

X-Api-Key
string
header
required

Headers

x-verify
string
required

TON proof for the given address

Path Parameters

address
string
required
Example:

"UQCNTO0Nh0Z7QNyRW1BLWfk08f2dAOw4izrx9sO6OUPg4DoV"

Query Parameters

token
string

If set, only transactions related to this token will be returned

Example:

"native"

token2
string

If set, only transactions related to this token pair will be returned

Example:

"EQCl0S4xvoeGeFGijTzicSA8j6GiiugmJW5zxQbZTUntre-1"

size
integer
default:100
Required range: 1 <= x <= 100
page
integer
default:1
Required range: x >= 1

Response

200
application/json
Historical account transactions
route_id
integer
required
unix_time
integer
required

When transaction happened in blockchain - unix seconds

logical_time
integer
required

When transaction happened in blockchain - on-chain logical time

from
object
required
to
object
required
dex
string
required
Example:

"stonfi"