> 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/endpoint-overview/continents/get-all-continents.md).

# GET All Continents

### `GET` All Continents

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

| Endpoint details        |         |
| ----------------------- | ------- |
| Authorization           | API Key |
| Pagination              | YES     |
| Allowed nested includes | 3       |

#### Parameters

| Available parameters |                                                                                                                   |
| -------------------- | ----------------------------------------------------------------------------------------------------------------- |
| page                 | The number of the page you want to browse. Can be used by adding `&page=` etc to your request url.                |
| include              | Enrich the API with more data and/or nested includes. Can be used by adding `&include=` etc. to your request url. |

#### Include options

`countries`

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

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

{% content-ref url="/pages/-MJXOeyBzTS35Z7kTf1c" %}
[Includes](/v2/tutorials/enriching-your-response/includes.md)
{% endcontent-ref %}

#### Example response

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

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

{% endtab %}

{% tab title="Response" %}

```javascript
"data": [
        {
            "id": 1,
            "name": "Europe"
        },
        {
            "id": 2,
            "name": "Asia"
        },
        {
            "id": 3,
            "name": "Africa"
        },
        {
            "id": 4,
            "name": "Oceania"
        },
        {
            "id": 5,
            "name": "Antarctica"
        },
        {
            "id": 6,
            "name": "North America"
        },
        {
            "id": 7,
            "name": "South America"
        }
    ]
```

{% endtab %}
{% endtabs %}

{% hint style="info" %}
Check this endpoint in Postman.\
&#x20;                                                             [![Run in Postman](https://run.pstmn.io/button.svg)](https://football-postman.sportmonks.com/#76cb8fcc-518a-419b-ba76-0fc6f59b99dc)
{% endhint %}
