GET /v1.1/region
Returns a list of all cruise regions.
Request
GET /v1.1/region
Example Request
curl -X GET "https://api.rccl.ro/v1.1/region" \
-H "X-WorldTravel-ApiKey: YOUR_API_KEY"
Response
200 OK
Returns an array of region resources.
Response body:
{
"data": [
{
"type": "region",
"id": "71412a48-9107-3f71-97bd-e59ae27a206e",
"attributes": {
"code": "AFRCA",
"title": "Africa",
"image_url": "https://ik.imagekit.io/worldtravel/wp-content/uploads/croaziere-in-africa-capul-verde-mindelo-hero-1920x800-il-aza-01.jpg"
},
"links": {
"self": "/v1.1/region/71412a48-9107-3f71-97bd-e59ae27a206e"
}
},
{
"type": "region",
"id": "e2886eac-a84a-3b16-82dc-492bd232c3f3",
"attributes": {
"code": "ALCAN",
"title": "Alaska",
"image_url": "https://ik.imagekit.io/worldtravel/wp-content/uploads/croaziere-in-alaska-ghetar-hero-1920x800-il-cel-01.jpg"
},
"links": {
"self": "/v1.1/region/e2886eac-a84a-3b16-82dc-492bd232c3f3"
}
}
],
"meta": {
"count": 23
},
"jsonapi": {
"version": "1.0"
}
}
Region Attributes
| Field | Type | Description |
|---|---|---|
code | string | Unique region code |
title | string | Region name |
image_url | string | Region image URL |
Error Responses
| Status | Description |
|---|---|
401 | Unauthorized — missing or invalid API key |
500 | Internal Server Error — upstream query failure |