How AI is applied across API Evangelist and APIs.io. Read my AI disclosure →
API Evangelist API Evangelist
Discovery
Learnings
Guidance
Toolbox
Alignment
API Evangelist LLC

Fever FeverZone API

These endpoints provide an interface to extract the data available in FeverZone reports. The delay of the datais less than 15 minutes from reality. The route `/feverzone/sales-by-reseller` allows the user to get a sales summaryby reseller and can be aggregated by venues/ticket types.## Model documentation#### SalesThis endpoint returns a summary of the sales, aligned with FeverZone Sales Summary report. It allows to filter by`plan_ids`, `purchase_date` and `event_date`, and also specify the `currency` of the report.📄 /feverzone/sales-summary response entity model| Column Name | Description | Example value ||------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|| `currency` | ISO3 currency of the order monetary field. | EUR || `orders` | Metric representing the number of unique transactions (count) made, where each order may include multiple tickets and add-ons. | 100 || `tickets_sold` | Metric representing the number (sum) of entry tickets sold, excluding any complimentary tickets issued (invitations) and add-ons. This value shows the total number of entry tickets, representing the primary sales volume. | 200 || `addons_sold` | Metric representing the number (sum) of add-ons sold, excluding complimentary invitations. Indicates the total number of add-ons purchased. | 50 || `ticket_invitations` | Metric representing the number (sum) of complimentary tickets issued at no charge for the user. Issuing invitations may have fees. | 10 || `addons_invitations` | Metric representing the number (sum) of complimentary add-ons issued at no charge. Issuing add-ons may have fees. | 5 || `ticket_gross_revenue` | Metric representing the revenue generated exclusively from the sale of entry tickets. It's the sum of `tickets_sold` multiplied by their ticket price. It shows the financial contribution of ticket sales to the total revenue. | 1200.00 || `addon_gross_revenue` | Metric representing the revenue generated from the sale of additional items or services, such as merchandise or premium experiences (a.k.a. add-ons). It's the sum of `addons_sold` multiplied by their add-on price. It indicates the contribution of supplementary products or services to total revenue. | 356.34 || `total_gross_revenue` | Metric representing the total amount of revenue generated from ticket sales and add-ons, including surcharge, and before any discounts are applied. It equals to `ticket_gross_revenue` + `addon_gross_revenue` + `surcharge`. Indicates the overall financial performance, showing the total revenue collected from sales and additional charges before considering any discounts. | 1556.34 || `ticket_surcharge` | Metric representing the surcharges applied specifically to entry ticket sales. It's the sum of `tickets_sold` multiplied by their surcharge per ticket. It provides details on the extra fees associated with entry ticket purchases. | 56.34 || `addon_surcharge` | Metric representing the surcharges applied specifically to add-ons. It's the sum of `addons_sold` multiplied by their surcharge per add-on. It shows the extra fees collected from add-on purchases. | 0.00 || `surcharge` | Metric representing the sum of additional booking fees applied to the order at checkout. It's the sum of `ticket_surcharge` and `addon_surcharge`. It represents extra charges collected. | 56.34 || `discount` | Metric representing the total value of all discounts applied through promo codes or special offers. It's the sum of all discounts applied, and it's represented with a negative value. It indicates the amount of revenue that has been reduced due to promotional efforts. | -100.00 || `user_payment` | Metric representing the total revenue collected after discounts. It is computed as the `total_gross_revenue` + `discounts`. It reflects actual revenue paid by customers. | 1456.34 |📄 /feverzone/sales-by-ticket-type response entity model| Column Name | Description | Example value ||------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|| `currency` | ISO3 currency of the order monetary field. | EUR || `ticket_type` | Type of ticket sold. | Adult || `tickets_sold` | Metric representing the number (sum) of entry tickets sold, excluding any complimentary tickets issued (invitations) and add-ons. This value shows the total number of entry tickets, representing the primary sales volume. | 200 || `addons_sold` | Metric representing the number (sum) of add-ons sold, excluding complimentary invitations. Indicates the total number of add-ons purchased. | 50 || `ticket_invitations` | Metric representing the number (sum) of complimentary tickets issued at no charge for the user. Issuing invitations may have fees. | 10 || `addons_invitations` | Metric representing the number (sum) of complimentary add-ons issued at no charge. Issuing add-ons may have fees. | 5 || `ticket_gross_revenue` | Metric representing the revenue generated exclusively from the sale of entry tickets. It's the sum of `tickets_sold` multiplied by their ticket price. It shows the financial contribution of ticket sales to the total revenue. | 1200.00 || `addon_gross_revenue` | Metric representing the revenue generated from the sale of additional items or services, such as merchandise or premium experiences (a.k.a. add-ons). It's the sum of `addons_sold` multiplied by their add-on price. It indicates the contribution of supplementary products or services to total revenue. | 356.34 || `total_gross_revenue` | Metric representing the total amount of revenue generated from ticket sales and add-ons, including surcharge, and before any discounts are applied. It equals to `ticket_gross_revenue` + `addon_gross_revenue` + `surcharge`. Indicates the overall financial performance, showing the total revenue collected from sales and additional charges before considering any discounts. | 1556.34 || `ticket_surcharge` | Metric representing the surcharges applied specifically to entry ticket sales. It's the sum of `tickets_sold` multiplied by their surcharge per ticket. It provides details on the extra fees associated with entry ticket purchases. | 56.34 || `addon_surcharge` | Metric representing the surcharges applied specifically to add-ons. It's the sum of `addons_sold` multiplied by their surcharge per add-on. It shows the extra fees collected from add-on purchases. | 0.00 || `surcharge` | Metric representing the sum of additional booking fees applied to the order at checkout. It's the sum of `ticket_surcharge` and `addon_surcharge`. It represents extra charges collected. | 56.34 || `discount` | Metric representing the total value of all discounts applied through promo codes or special offers. It's the sum of all discounts applied, and it's represented with a negative value. It indicates the amount of revenue that has been reduced due to promotional efforts. | -100.00 || `user_payment` | Metric representing the total revenue collected after discounts. It is computed as the `total_gross_revenue` + `discounts`. It reflects actual revenue paid by customers. | 1456.34 |📄 /feverzone/sales-by-reseller response entity model| Column Name | Description | Example value ||--------------------------------|----------------------------------------------------------------|--------------------------------------|| `reseller.id` | ID of the reseller | 607f50e3-666f-4b2e-9620-38aabf6d9m10 || `reseller.name` | Name of the reseller | Reseller name || `reseller.email` | Email of the reseller | test@reseller.com || `reseller.type` | Type of reseller | AGENCY || `reseller.contact_language` | Language that the reseller uses for communications | es_ES || `reseller.accepts_comms` | If reseller accepts communications or not | YES || `ticket_type` | Ticket type by reseller | Agencia \| Tarifa Básica || `venue_name` | Venue name by reseller | Palacio Real de Madrid || `tickets_sold` | Tickets sold by reseller and aggregated dimensions applicable | 1000 || `gross_revenue` | Gross revenue by reseller and aggregated dimensions applicable | 10000 |

Fever FeverZone API is one of 5 APIs that Fever publishes on the APIs.io network, described by a machine-readable OpenAPI specification.

Tagged areas include FeverZone. The published artifact set on APIs.io includes an OpenAPI specification, API documentation, an API reference, and authentication docs.

This API exposes 6 operations across 6 paths, and defines 19 schemas. It is described by OpenAPI 3.0.0, at version 1.5.0.

Requests are made against a single base URL, /v1.

6 operations 6 paths 19 schemas 3 GET3 POST

Metadata

The identity and technical contract details declared by the specification.

Specification
OpenAPI 3.0.0
API Version
1.5.0
Base URL
https://data-reporting-api.prod.feverup.com/v1
Authentication
OAuth 2.0
Contact
Resource Areas
1

Authentication & Security 1

Fever FeverZone API declares 1 security scheme for authenticating requests. It supports OAuth 2.0 (OAuth2PasswordBearer) using the password flow.

Paths & Operations 6

Across 6 paths, the API surfaces 6 operations — 3 GET, 3 POST. Each is listed below with its method, path, parameters, and response codes.

FeverZone 6

These endpoints provide an interface to extract the data available in FeverZone reports. The delay of the data is less than 15 minutes from reality. The route /feverzone/sales-by-…

POST
/feverzone/sales-summary/search
Request FeverZone sales summary report
search_sales_summary_feverzone_sales_summary_search_post 1 param body → 202408429500422
GET
/feverzone/sales-summary/search/{search_id}
Get FeverZone sales summary report
get_search_sales_summary_page_feverzone_sales_summary_search__search_id__get 3 params → 200202403404400408410429
POST
/feverzone/sales-by-ticket-type/search
Request FeverZone sales by ticket type report
search_sales_by_ticket_type_feverzone_sales_by_ticket_type_search_post 1 param body → 202408429500422
GET
/feverzone/sales-by-ticket-type/search/{search_id}
Get FeverZone sales by ticket type report
get_search_sales_by_ticket_type_page_feverzone_sales_by_ticket_type_search__search_id__get 3 params → 200202403404400408410429
POST
/feverzone/sales-by-reseller/search
Request resellers
search_resellers_feverzone_sales_by_reseller_search_post 1 param body → 202408429500422
GET
/feverzone/sales-by-reseller/search/{search_id}
Get sales by reseller
get_resellers_search_page_feverzone_sales_by_reseller_search__search_id__get 3 params → 200202404400408410429500

Schemas 19

The contract defines 19 schemas that model the data the API accepts and returns. The most detailed are SalesByTicketType (14 properties), SalesSummary (14 properties), SalesSummaryParams (6 properties), SalesByTicketTypeParams (6 properties). Each schema is shown below with its type and property counts.

Search_SalesSummary_SalesSummaryParams_-Output
object
3 properties 1 required
ValidationError
object
3 properties 3 required
Search_SalesByReseller_SalesByResellerParams_-Input
object
3 properties 1 required
SalesByTicketTypeParams
object
6 properties
Reseller
object
6 properties 6 required
SearchStatus
object
2 properties 2 required
Search_SalesByTicketType_SalesByTicketTypeParams_-Output
object
3 properties 1 required
Search_SalesSummary_SalesSummaryParams_-Input
object
3 properties 1 required
SalesSummary
object
14 properties 13 required
SalesByReseller
object
5 properties 3 required
PartitionInfo
object
4 properties 4 required
Currency
string
Search_SalesByTicketType_SalesByTicketTypeParams_-Input
object
3 properties 1 required
SalesByResellerParams
object
2 properties
HTTPValidationError
object
1 property
ResellerGroupByDimension
string
Search_SalesByReseller_SalesByResellerParams_-Output
object
3 properties 1 required
SalesByTicketType
object
14 properties 12 required
SalesSummaryParams
object
6 properties

Specification

The full machine-readable OpenAPI contract behind this narrative.

Source

fever-feverzone-api-openapi.yml Raw ↑

Other APIs Fever publishes across the network.

Fever Authentication API
Fever Order Items API
Fever Plans API
Fever Sessions API
Where this information came from

This is an independent, third-party profile of Fever FeverZone API, published by API Evangelist. We do not operate, host, resell, or support these APIs, and we are not affiliated with or endorsed by the company unless stated above. Everything here is built from publicly available information — the company's own site, developer portal, documentation, public repositories, and the specifications it publishes for public use. Nothing is obtained by breaching a system, defeating an access control, or using credentials.

The Kin Score and Agent Readiness rating are independently calculated assessments of a company's public API artifacts, scored against a published rubric. They are not certifications, endorsements, security assessments, or audits.

Corrections, re-scores, and removal are free — no partnership or purchase required, and you do not need to justify the request. A removed company is recorded as unrated, never scored zero for having asked. Acknowledgement within one business day; removal within two.

info@apievangelist.com · Read the full data-sourcing policy →
On a security or compliance team? Put security in the subject line and you will get a person, not a form — we will tell you exactly which public URLs this profile was built from.