Query swap list by chain name and pool address

Description

  • Method: HTTPS POST

  • Encoding: UTF-8

  • Path: https://api.blockin.ai/v2/dexs/pool/swap_list

  • Description: Query the swap list of a pool

Request Header

Parameter
Required
Type
Description

Content-Type

Y

String

application/json

AccessKey

Y

String

1bdb01c947c54919b64d1fc6794atest

Request Parameters

Parameter
Required
Type
Description

chain_name

Y

String

Chain's name, only support ethereum

address

Y

String

Pool address

page

Y

Integer

Page num

page_size

Y

Integer

Page size (The maximum size is 100)

start_usd_value

N

BigDecimal

minimum usd value

end_usd_value

N

BigDecimal

maximum usd value

start_timestamp

N

Long

Start timestamp (Default is the last three months, timestamp in seconds)

end_timestamp

N

Long

End timestamp (Timestamp in seconds)

Response

Public Response

Parameter
Required
Type
Description

success

Y

Boolean

Success Boolean

data

Y

JSONObject

Response object

error_code

N

String

Error code

error_msg

N

String

Error message

Response Content

Parameter
Required
Type
Description

total

Y

Integer

Total number

current

Y

Integer

Current page number

count_page

Y

Integer

Total page number

page_size

Y

Integer

Current page size

records

Y

List

Paginated list

Records Content

Parameter
Required
Type
Description

account

Y

String

User address

protocol_name

Y

String

Protocol's name

project_name

Y

String

Project's name

logo_url

Y

String

Logo's url

site_url

Y

String

Site's url

pool_address

Y

String

Pool address

block_time

Y

Long

Transaction time (Timestamp in seconds)

type

Y

String

Type (buy,sell)

input_token

Y

Object

Token info

out_token

Y

Object

Token info

usd_value

Y

BigDecimal

USD value

tx

Y

String

Transaction hash

Input token, out token Content

Parameter
Required
Type
Description

address

Y

String

Token's address

name

Y

String

Token's name

symbol

Y

String

Token's symbol

decimal

Y

Integer

Token's decimal

amount

Y

BigDecimal

Token's amount

price

N

BigDecimal

Token's price

logo_url

Y

String

Token's logo

Request Sample

curl -X POST 'https://api.blockin.ai/v2/dexs/pool/swap_list' -H 'Accesskey: 1bdb01c947c54919b64d1fc6794atest' -H 'Content-Type: application/json' --data '{"chain_name": "eth","address": "0x004375dff511095cc5a197a54140a24efef3a416","page": 1,"page_size": 20,"start_usd_value": 0,"end_usd_value": 20,"start_timestamp": 1695208367,"end_timestamp": 1695261215}'

Successful Response Sample

Failed Response Sample

Last updated