Skip to main content

Matches Shotmap

This endpoint allows you to retrieve shot maps for an match.

Multi-language: This feature allows the user to manually change the language of the API response by adding value to the lang attribute. Example: lang=en.

Pagination: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.

Update Period: The endpoint is updated every minute.
Recommended Calls: Limit calls to 1 per minute.

Use Cases

Get shot map from a specific match_id
https://basketball.sportdevs.com/matches-shotmap?match_id=eq.{match_id}

Get shot map from a specific team_id
https://basketball.sportdevs.com/matches-shotmap?team_id=eq.{team_id}

Get shot map from a specific match_id and team_id
https://basketball.sportdevs.com/matches-shotmap?match_id=eq.{match_id}&team_id=eq.{team_id}

Query Parameters
  • match_id integer

    Default value: eq.1428

    The id of the match

  • team_id integer

    Default value: eq.1619

    The id of the team

  • offset string

    Default value: 0

    Limiting and Pagination

  • limit string

    Default value: 50

    Limiting and Pagination

  • lang string

    Default value: en

    Multi-language

Responses

OK


Schema array
  • match_id integer

    The id of the match

    Note: This is a Foreign Key to matches-live.id.

  • team_id integer

    The id of the team

    Note: This is a Foreign Key to teams.id.

  • shots jsonb

    The shots

Loading...