Skip to main content
GET
/
v1
/
jobs
/
regions
Job Region
curl --request GET \
  --url https://api.leadmagic.io/v1/jobs/regions \
  --header 'X-API-Key: <api-key>'
[
  {
    "id": 1,
    "name": "Africa"
  },
  {
    "id": 2,
    "name": "Asia/Pacific"
  },
  {
    "id": 3,
    "name": "Europe"
  },
  {
    "id": 4,
    "name": "Middle East"
  },
  {
    "id": 5,
    "name": "North America"
  },
  {
    "id": 6,
    "name": "South America"
  }
]

Authorizations

X-API-Key
string
header
required

Your LeadMagic API key. Header name is case-insensitive (X-API-Key, X-API-KEY, x-api-key all work).

Response

200 - application/json

Successful response with region list

id
integer
default:0
name
string
Example:
[
{ "id": 1, "name": "Africa" },
{ "id": 2, "name": "Asia/Pacific" },
{ "id": 3, "name": "Europe" },
{ "id": 4, "name": "Middle East" },
{ "id": 5, "name": "North America" },
{ "id": 6, "name": "South America" }
]