Skip to main content
Return the tax rates applied to trades on an event, split by currency mode.

Endpoint

GET https://api.futuur.com/events/{id}/get_tax/

Authentication

No authentication is required for this endpoint.

Parameters

id
integer
required
The unique identifier of the event.

Response

tax_play_money
number | null
required
Tax rate for play money trades on this event. null when no play money tax applies.
tax_real_money
number | null
required
Tax rate for real money trades on this event. null when no real money tax applies.

Example

cURL
curl --request GET \
  --url "https://api.futuur.com/events/1023/get_tax/"
Sample response
{
  "tax_play_money": 0.02,
  "tax_real_money": 0.05
}