Skip to main content
POST
/
auctions
/
{app_id}
cURL
curl --request POST \
  --url https://api.example.com/auctions/{app_id} \
  --header 'Content-Type: application/json' \
  --data '
{
  "amount": 2,
  "currency": "<string>",
  "name": "<string>"
}
'
{
  "id": "<string>",
  "app": {
    "id": "<string>",
    "name": "<string>",
    "type": "individual",
    "kyc_return_url": "<string>",
    "use_explorer": true,
    "app_fee": 123,
    "is_member": true,
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z"
  },
  "currency": "<string>",
  "currency_conversion": {
    "from_currency": "<string>",
    "from_amount": 1
  },
  "amount": 123,
  "name": "<string>",
  "expired": true,
  "views": 123,
  "network_type": "mainnet",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "bids": [
    {
      "id": "<string>",
      "auction": "<unknown>",
      "currency": "<string>",
      "currency_conversion": {
        "from_currency": "<string>",
        "from_amount": 1
      },
      "amount": 123,
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ]
}

Path Parameters

app_id
string
required

Body

application/json
amount
number
Required range: x >= 1
currency
string
Maximum string length: 5
currency_conversion
object
name
string
Maximum string length: 256

Response

201 - application/json
id
string
required
app
object
required
currency
string
required
currency_conversion
object
required
amount
number
required
name
string | null
required
expired
boolean
required
views
number
required
network_type
enum<string>
required
Available options:
mainnet,
testnet
created_at
string<date-time>
required
updated_at
string<date-time>
required
bids
object[]
on_bid_payment_intent
object
on_end_payment_intent
object