> For the complete documentation index, see [llms.txt](https://docs.sportmonks.com/v2/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.sportmonks.com/v2/cricket-api/our-api/scores/get-score-by-id.md).

# GET Score by ID

### `GET` Scores by ID

```
https://cricket.sportmonks.com/api/v2.0/scores/{ID}
```

| Endpoint details        |         |
| ----------------------- | ------- |
| Authorization           | API Key |
| Pagination              | NO      |
| Allowed nested includes | 0       |

#### Parameters

| Available parameters |                                                                                                           |
| -------------------- | --------------------------------------------------------------------------------------------------------- |
| fields\[object]      | Only return fields you are interested in. Simply add `&fields[object]=id,name,code`  to your request url. |

#### Example response

{% tabs %}
{% tab title="Request" %}

```
https://cricket.sportmonks.com/api/v2.0/scores/1?api_token={API_TOKEN}
```

{% endtab %}

{% tab title="Response" %}

```javascript
    "data": {
        "resource": "scores",
        "id": 1,
        "name": "1 Bye",
        "runs": 0,
        "four": false,
        "six": false,
        "bye": 1,
        "leg_bye": 0,
        "noball": 0,
        "noball_runs": 0,
        "is_wicket": false,
        "ball": true,
        "out": false
    }
```

{% endtab %}
{% endtabs %}
