> 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/continents-and-countries/get-all-continents.md).

# GET All Continents

### `GET` All Continents

```
https://cricket.sportmonks.com/api/v2.0/continents
```

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

#### Parameters

| Available parameters |                                                                                                                                                                    |
| -------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| include              | Enrich the API with more data and/or nested includes. Can be used by adding `&include=` etc. to your request url.                                                  |
| filter               | <p>Array of fields to filter on. Can be used by adding <code>\&filter\[{field you want to filter}].</code> <br>For example: <code>\&filter\[name]=Asia.</code></p> |
| fields\[object]      | Only return fields you are interested in. Simply add `&fields[object]=id,name,code`  to your request url.                                                          |
| sort                 | One or comma separated list of fields to sort on. Can be used by adding `&sort=` to your request url.                                                              |

**Filters**

`name`

**Sort**

You can sort on all fields.

#### Include options

`countries`

Includes are the cornerstone of our API and allow you to enrich and customize your requests. This flexibility is what distinguishes us from our competitors. &#x20;

You can learn more about what includes are and how they work here:

{% content-ref url="/pages/-MTeYiIp3JNsC4Lao5Nm" %}
[Enriching your response](/v2/cricket-api/getting-started/enriching-your-response.md)
{% endcontent-ref %}

#### Example response

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

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

{% endtab %}

{% tab title="Response" %}

```javascript
    "data": [
        {
            "resource": "continents",
            "id": 1,
            "name": "Europe",
            "updated_at": "2017-05-04T19:31:29.000000Z"
        },
        {
            "resource": "continents",
            "id": 2,
            "name": "Asia",
            "updated_at": "2017-05-04T19:31:40.000000Z"
        },
        {
            "resource": "continents",
            "id": 3,
            "name": "Africa",
            "updated_at": "2017-05-04T19:32:19.000000Z"
        },
        {
            "resource": "continents",
            "id": 4,
            "name": "Oceania",
            "updated_at": "2017-05-04T19:32:42.000000Z"
        },
        {
            "resource": "continents",
            "id": 5,
            "name": "Antarctica",
            "updated_at": "2017-05-04T19:32:52.000000Z"
        },
        {
            "resource": "continents",
            "id": 6,
            "name": "North America",
            "updated_at": "2017-05-04T19:33:10.000000Z"
        },
        {
            "resource": "continents",
            "id": 7,
            "name": "South America",
            "updated_at": "2017-05-04T19:33:25.000000Z"
        }
    ]
```

{% endtab %}
{% endtabs %}
