# GET /organizers/:organizerId/tournaments

Tournaments the organizer shares on their result page, most recent first. Same query parameters and response shape as `GET /tournaments`. Works with API tokens and public API keys.

Errors: `404 ORGANIZER_NOT_FOUND` — unknown id, or an organizer of another sport. Slugs are not accepted here, use the `id` from `GET /organizers`.

## Parameters

| Parameter | In | Example |
| --- | --- | --- |
| `organizerId` | path | `V1StGXR8_Z5jdHi6B-myT` |
| `state` | query | `running` |
| `limit` | query | `25` |
| `offset` | query | `0` |

## Responses

```json
[
  {
    "id": "tio:nBwyxswp26Vfk",
    "name": "Monday DYP",
    "disciplines": [
      {
        "id": "tio:Xm6bweBQmhni8",
        "shortName": "D1",
        "name": "Discipline 1",
        "modes": ["monster_dyp"],
        "entryType": "monster_dyp"
      }
    ],
    "date": "2026-09-08T18:00:00.000Z",
    "state": "running",
    "numPlayers": 20,
    "numTeams": 0,
    "organizer": {
      "id": "V1StGXR8_Z5jdHi6B-myT",
      "slug": "kixx",
      "name": "Kixx Hamburg"
    }
  },
  ...
]
```