# Static Data

**Required Headers to use our endpoints:**

| **Key**       | **Value**                                       |
| ------------- | ----------------------------------------------- |
| Accept        | application/vnd.imgarena.dde.api+json;version=1 |
| Content-Type  | application/json                                |
| Authorization | Bearer eyvhaoudfgpdfgo\*                        |

In order retrieve a list of "fightcards" or events, please hit the IMG UFC fightcard endpoint:

`https://dde-api.data.imgarena.com/mma/fightcards`

Note the Key values needed from this endpoint:

| **Endpoint**  | **Description**                 | **Link to Sandbox** |
| ------------- | ------------------------------- | ------------------- |
| fightcardName | the name of the fightcard       | -                   |
| identifier    | the identifier of the fightcard | EventId             |

**If you want to look at just the information for a particular fightcard, you can pass the event ID i.e:**

`https://dde-api.data.imgarena.com/mma/fightcards/{id}`

To return "fightcards" for a given date range, this can be done by passing the dateFrom and dateTo parameters. Both parameters should specify a date in a `YYYY-mm-dd` format.

In addition you will need to get a list of fights associated to the fightcard/event, this can be done by passing the EventId for a fightcard via the IMG Arena UFC "Schedule" endpoint.

`https://dde-api.data.imgarena.com/mma/fightcards/{id}/schedule`

Note the Key values needed from endpoint:

| **Endpoint** | **Description**                                                  | **Link to sandbox** |
| ------------ | ---------------------------------------------------------------- | ------------------- |
| redTeam      | An object containing information on the fighter of the red team  | -                   |
| blueTeam     | An object containing information on the fighter of the blue team | -                   |
| fightId      | The ID number of the fight                                       | fightId             |
