Fightcards Endpoint
This endpoint returns information on all fight cards, past and present. This is kept up to date every 5 minutes.
Endpoint URLs
For all tournaments:
Legacy - https://dde-api.data.imgarena.com/mma/fightcards (Decommissioning on 30th Sept 2026)
NEW - https://dde-api.data.srarena.io/mma/fightcards
If you want to look at just information for a particular fightcard:
https://dde-api.data.srarena.io/mma/fightcards/{id}
Required Headers
Accept
application/vnd.imggaming.dde.api+json;version=1
Content-Type
application/json
Authorization
Bearer eyvhaoudfgpdfgo*
Request Parameters
This endpoint takes the following parameters:
Parameter
Type
Purpose
org
string
Filter out results based on the organisation, can pass org = "pfl"
dateFrom
date
Filter the tournaments by date. Only tournaments which have events on or after the specified date will be included.
E.g. dateFrom=2024-06-01
Please note that if not provided, these default to a week ago and a week in the future
dateTo
date
Filter the tournaments by date. Only tournaments which have events on or before the specified date will be included.
E.g. dateTo=2024-06-30
Please note that if not provided, these default to a week ago and a week in the future
Response Model
Tournament Object
fightcardName
string
the name of the fightcard
identifier
integer
the identifier of the fightcard
countryCode
string
the country code of the country where the fightcard is taking place
location
string
the country in which the fightcard is taking place
state
string
the state/province in which the fightcard is taking place Null if uknown
city
string
The city in which the fightcard is taking place
venue
string
The name of the venue where the fightcard is taking place
venueId
integer
The ID of the venue where the fightcard is taking place
startDate
date
The start date for the fightcard
endDate
date
the end date for the fightcard
startTime
time
The time when the fight card starts. The value may be provided either in UTC or in the event's local time
utcOffset
integer
The offset from UTC that should be applied to startTime to determine the UTC time. If utcOffset is 0, startTime is already in UTC.
year
integer
the year in which the fightcard is taking place
sport
string
the sport associated with the fightcard, in this case MMA
numberOfFights
integer
the number of fights on the fightcard
scheduleResource
string
a reference to the API URL for the schedule of this fightcard
status
string
the status of this fightcard.
Potential values are: active / canceled.
booking Status
object
information on whether or not a fightcard is booked
comments
array
the latest comments on the status of the fightcard
numberOfFightsBookedToday
integer
Number of fights booked on the DDE as per your license agreement
eventSummary
object
-
competitions
array
-
externalAssociationId
string
the external federation unique identifier of the fight
Fights Summary Object
The fightcard will contain main card only for PFL and the number of fights.
fights
integer
the number of fights in this particular card of the fight
startTime
time
the estimated start time of that particular card
Booking Status Object
Field Name
Type
Description
status
string
Current booking status of the event on the DDE
Competitions Object
organisation
string
the organisation of the particular fightcard i,e PFL
startDate
date
The start date for the fightcard
endDate
date
the end date for the fightcard
licensingProperty
string
The DDE property that licenses this particular fightcard
Sample Response
Last updated
Was this helpful?