Query all FT contract data

Fetch data of all labelled FT contracts.

Size

  • The query parameter size is optional. (Min = 1, Max = 1000, Default = 100)
  • Returns an error when given a negative number
  • Uses default (size=100) when given a 0
  • Uses the maximum value (size=1000) when given a value higher than 1000
Request
Security:
query Parameters
status
string

Labelling status [completed, processing, failed, cancelled]

Example: status=completed
type
string

Contract type [KIP-7, ERC-20], returns all types if not specified

Example: type=KIP-17
size
integer <int64>

Number of maximum response items (min=1, max=1000, default=100)

Example: size=100
cursor
string

Offset for specifying a certain position

header Parameters
x-chain-id
required
string

Kaia Network Chain ID (1001 or 8217)

Responses
200
400
get/v2/contract/ft
Request samples
curl -i -X GET \
  -u <username>:<password> \
  'https://th-api.klaytnapi.com/v2/contract/ft?status=string&type=string&size=0&cursor=string' \
  -H 'x-chain-id: string'
Response samples
application/json
{
  • "items": [
    ],
  • "cursor": "JePBOQ20pEXl389k1K6W1AEzp2VBJ80b5MgowlXZYlkao45O0WMgr73BpPD6d9Rb97yKwbqezELvmN8Gx1Q2JVAXZGQqmxd9a7e4krKN3YLDPOvNY7Zvbom5MrDA4VW6"
}