Skip to content
For LLMsView as Markdown·

PandaScore

Esports data API with live matches, leagues, tournaments, and real-time odds.

DetailValue
CategoryiGaming
Base URLhttps://api.pandascore.co
AuthenticationBearer Token
Endpoints10
Connector keypandascore

Using PandaScore in a workflow

  1. Go to Connections and click New Connection.
  2. Pick PandaScore from the marketplace.
  3. Enter your credentials (see Authentication above for what's expected).
  4. In a workflow, drop an API Call node and select this connection.
  5. Pick the operation you need from the Operation dropdown — the full list is below.

Available endpoints

EndpointSummary
GET /leaguesList leagues
GET /leagues/{id}/matchesLeague matches
GET /leagues/{id}/tournamentsLeague tournaments
GET /matchesAll matches
GET /matches/runningLive matches
GET /matches/upcomingUpcoming matches
GET /matches/pastCompleted matches
GET /tournaments/{id}/rostersTournament rosters
GET /livesReal-time live data
GET /incidentsData change feed

Each endpoint is documented in full below. Use the outline on the right to jump to one.

GET /leagues

List leagues

DetailValue
Operation IDesports.listLeagues
MethodGET
Path/leagues

Parameters

No parameters.

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your PandaScore connection from the Connection dropdown.
  3. In the Operation dropdown, select esports.listLeagues.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream PandaScore API reference.

GET /leagues/{id}/matches

League matches

DetailValue
Operation IDesports.getLeagueMatches
MethodGET
Path/leagues/{id}/matches

Parameters

NameLocationTypeRequired
idpathstringYes

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your PandaScore connection from the Connection dropdown.
  3. In the Operation dropdown, select esports.getLeagueMatches.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream PandaScore API reference.

GET /leagues/{id}/tournaments

League tournaments

DetailValue
Operation IDesports.getLeagueTournaments
MethodGET
Path/leagues/{id}/tournaments

Parameters

NameLocationTypeRequired
idpathstringYes

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your PandaScore connection from the Connection dropdown.
  3. In the Operation dropdown, select esports.getLeagueTournaments.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream PandaScore API reference.

GET /matches

All matches

DetailValue
Operation IDesports.listMatches
MethodGET
Path/matches

Parameters

No parameters.

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your PandaScore connection from the Connection dropdown.
  3. In the Operation dropdown, select esports.listMatches.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream PandaScore API reference.

GET /matches/running

Live matches

DetailValue
Operation IDesports.getLiveMatches
MethodGET
Path/matches/running

Parameters

No parameters.

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your PandaScore connection from the Connection dropdown.
  3. In the Operation dropdown, select esports.getLiveMatches.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream PandaScore API reference.

GET /matches/upcoming

Upcoming matches

DetailValue
Operation IDesports.getUpcomingMatches
MethodGET
Path/matches/upcoming

Parameters

No parameters.

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your PandaScore connection from the Connection dropdown.
  3. In the Operation dropdown, select esports.getUpcomingMatches.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream PandaScore API reference.

GET /matches/past

Completed matches

DetailValue
Operation IDesports.getPastMatches
MethodGET
Path/matches/past

Parameters

No parameters.

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your PandaScore connection from the Connection dropdown.
  3. In the Operation dropdown, select esports.getPastMatches.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream PandaScore API reference.

GET /tournaments/{id}/rosters

Tournament rosters

DetailValue
Operation IDesports.getTournamentRosters
MethodGET
Path/tournaments/{id}/rosters

Parameters

NameLocationTypeRequired
idpathstringYes

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your PandaScore connection from the Connection dropdown.
  3. In the Operation dropdown, select esports.getTournamentRosters.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream PandaScore API reference.

GET /lives

Real-time live data

DetailValue
Operation IDesports.getLiveData
MethodGET
Path/lives

Parameters

No parameters.

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your PandaScore connection from the Connection dropdown.
  3. In the Operation dropdown, select esports.getLiveData.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream PandaScore API reference.

GET /incidents

Data change feed

DetailValue
Operation IDesports.getIncidents
MethodGET
Path/incidents

Parameters

No parameters.

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your PandaScore connection from the Connection dropdown.
  3. In the Operation dropdown, select esports.getIncidents.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream PandaScore API reference.