Skip to main content
GET
/
health-requirements
List health requirements
curl --request GET \
  --url https://api.ceibo.me/v1/health-requirements \
  --header 'x-api-key: <api-key>'
{
  "data": [
    {
      "id": 1,
      "countryId": 76,
      "regionSpecific": true,
      "vaccineId": 1,
      "vaccine": {
        "id": 123,
        "code": "<string>",
        "name": "<string>",
        "diseaseName": "<string>",
        "dosesRequired": 123,
        "minimumDaysBeforeTravel": 123
      },
      "requirement": "required",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z",
      "cityId": 5,
      "circumstances": "<string>",
      "notes": "<string>",
      "sourceUrl": "<string>",
      "lastVerifiedAt": "2023-11-07T05:31:56Z"
    }
  ],
  "meta": {
    "page": 1,
    "limit": 20,
    "total": 195,
    "totalPages": 10
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.ceibo.me/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-api-key
string
header
required

API key minted at developer.ceibo.me. Send on every request.

Query Parameters

countryId
integer
cityId
integer

Requires countryId. Returns city-specific or non-region-specific requirements.

page
integer
default:1
Required range: x >= 1
limit
integer
default:10
Required range: 1 <= x <= 100

Response

Health requirements. Returns a paginated envelope without countryId, an unwrapped array with it.

data
object[]
required
meta
object
required