Get Title Details
Titles refer to the belts that the world champion boxers hold. Each title is related to a boxing organization and a weight class division with a organization_id
and division_id
respectively.
Endpoints
There are 2 title endpoints:
1. List All Available Titles:
- Endpoint URL:
https://boxing-data-api.p.rapidapi.com/v1/titles/
- Description: To retrive a list of available titles, including the name,
organization_id
anddivision_id
.
2. Get a specific title’s details:
- Endpoint URL:
https://boxing-data-api.p.rapidapi.com/v1/titles/<title_id>
- Description: To get the detail of a specific title.
Using the Organization endpoints
Here are some code examples demonstrating how to interact with the Titles endpoint using various programming languages:
List all organizations
The following query params can be used to filter the titles returned
Param | Example | Default | Required |
---|---|---|---|
organization_id | 6715193e0ad13034eb88265d | Null | No |
division_id | 671513530ad13034eb88265a | Null | No |
Example response:
Get Specific Organization Details by ID
Example response:
Remember to replace [Your RapidAPI Key]
with your actual RapidAPI key in your code.