- Introduction
- Setup the API
- Authentication
- Search
- Continents
- Countries
- Leagues
- Teams
- Seasons
- Stages
- Groups
- Rounds
- Livescores
- Fixtures
- Fixtures by Date
- Fixtures by Date / Country
- Fixtures by Date / League
- Fixtures by Date / Season
- Fixtures by Date / Season / Stage
- Fixtures by Date / Season / Group
- Fixtures by Date / Round
- Fixtures by Season
- Fixtures by Season / Stage
- Fixtures by Season / Stage / Team
- Fixtures by Season / Group
- Fixtures by Season / Group / Team
- Fixtures by Season / Team
- Fixtures by Round
- Fixtures by Round / Team
- Fixtures by Team Last / Next
- Fixtures by TV Channel
- Match / Fixtures
- Statistics
- H2H
- Leaders
- Betting
- Broadcast & TV
- Players
- Coaches
- Referees
- Venues
All Continents
GET
/v2.2/continents/
Last modified:2024-03-10 15:39:41
Request
Query Params
user
stringÂ
required
Example:
{{USERNAME}}
token
stringÂ
required
Example:
{{TOKEN}}
t
stringÂ
required
Example:
list
page
integerÂ
optional
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET '/v2.2/continents/?user={{USERNAME}}&token={{TOKEN}}&t=list&page'
Responses
🟢200Success
application/json
Body
object {0}
Example
{
"data": [
{
"id": 1,
"name": "World"
},
{
"id": 2,
"name": "Europe"
},
{
"id": 3,
"name": "Africa"
},
{
"id": 4,
"name": "North America"
},
{
"id": 5,
"name": "South America"
},
{
"id": 6,
"name": "Asia"
},
{
"id": 7,
"name": "Oceania"
}
],
"meta": {
"requests_left": 959661,
"user": "soccersapi2",
"plan": "Soccer 800 (M)",
"pages": 1,
"page": 1,
"count": 7,
"total": 7
}
}

Modified at 2024-03-10 15:39:41