# `ExFPL.Fixtures`
[🔗](https://github.com/sgerrand/ex_fpl/blob/main/lib/ex_fpl/fixtures.ex#L1)

Fetch fixtures from `/fixtures/`, optionally filtered by gameweek.

# `list_opts`

```elixir
@type list_opts() :: [event: integer(), raw: boolean()] | keyword()
```

# `list`

```elixir
@spec list(list_opts()) :: {:ok, [ExFPL.Fixture.t()] | [map()]} | {:error, term()}
```

List fixtures.

Pass `event: gameweek_id` to restrict the response to one gameweek. Pass
`raw: true` to receive the original list of maps with string keys instead
of `ExFPL.Fixture` structs.

---

*Consult [api-reference.md](api-reference.md) for complete listing*
