- api:TON Documentation
- v1.Address
- v1.Nft
- v1.Rate
- v2.Auth
- v2.Wallet
- v2.NftContract
- v2.JettonContract
Item
POST
/v1.Nft/Item
v1.Nft
Request
Body Params application/json
address
string
address
>= 8 characters<= 256 characters
Default:
EQBSUQMVeBwcOXpq_FuTO13Y6KcmEOp3XODV4vsDNwhd6XH5
Example
{
"address": "UQAwKOp1Mdg5XFcKvFobsvQUk7WozLPIZoJZOMCWWSllg4mh"
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://app.apiton.org/v1.Nft/Item' \
--header 'Content-Type: application/json' \
--data-raw '{
"address": "UQAwKOp1Mdg5XFcKvFobsvQUk7WozLPIZoJZOMCWWSllg4mh"
}'
Responses
🟢200OK
application/json
Body
collection_address
string
collection_address
owner_address
string
owner_address
uri
string
uri
auction
object (TeleAuction)
optional
last_bid
object (TeleAuctionLastBid)
optional
next_min_bid
number
next_min_bid
end_time
string <date-time>
optional
calendar, encoded as a count of seconds and fractions of seconds at
nanosecond resolution. The count is relative to an epoch at UTC midnight on
January 1, 1970, in the proleptic Gregorian calendar which extends the
Gregorian calendar backwards to year one.
second table is needed for interpretation, using a 24-hour linear
smear.
restricting to that range, we ensure that we can convert to and from RFC
3339 date strings.
config
object (TeleAuctionConfig)
optional
contract_address
string
contract_address
sale
object (TeleSale)
optional
price
number
price
end_time
string <date-time>
optional
calendar, encoded as a count of seconds and fractions of seconds at
nanosecond resolution. The count is relative to an epoch at UTC midnight on
January 1, 1970, in the proleptic Gregorian calendar which extends the
Gregorian calendar backwards to year one.
second table is needed for interpretation, using a 24-hour linear
smear.
restricting to that range, we ensure that we can convert to and from RFC
3339 date strings.
contract_address
string
contract_address
status
string
status
content
google.protobuf.Value
Value
represents a dynamically typed value which can be eithernull, a number, a string, a boolean, a recursive struct value, or a
list of values. A producer of value is expected to set one of these
variants. Absence of any variant indicates an error.
Value
is JSON value.One of
Example
{
"collection_address": "string",
"owner_address": "string",
"uri": "string",
"auction": {
"last_bid": {
"amount": 0,
"address": "string",
"time": "2019-08-24T14:15:22Z"
},
"next_min_bid": 0,
"end_time": "2019-08-24T14:15:22Z",
"config": {
"duration_in_seconds": 0,
"start_min_bid": 0,
"max_bid": 0,
"min_bid_step": 0,
"min_extend_time_in_seconds": 0
},
"contract_address": "string"
},
"sale": {
"price": 0,
"end_time": "2019-08-24T14:15:22Z",
"contract_address": "string"
},
"status": "string",
"content": null
}
🔴500Server Error