Skip to main content
POST
/
quantlib
/
economics
/
auctions
/
expected-revenue
Expected Auction Revenue
curl --request POST \
  --url https://finceptbackend.share.zrok.io/quantlib/economics/auctions/expected-revenue \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "auction_type": "second_price",
  "n_bidders": 5
}
'
{
  "success": true,
  "data": {
    "auction_type": "second_price",
    "n_bidders": 5,
    "expected_revenue": 0.667
  }
}

Authorizations

X-API-Key
string
header
required

API key for authentication. Get your key at https://finceptbackend.share.zrok.io/auth/register

Body

application/json
auction_type
enum<string>
required

Type of auction mechanism

Available options:
first_price,
second_price,
all_pay
Example:

"second_price"

n_bidders
integer
required

Number of bidders

Required range: x >= 2
Example:

5

Response

Successful Response

success
boolean
Example:

true

data
object