Skip to main content
GET
/
health-requirements
/
{id}
Get a health requirement by id
curl --request GET \
  --url https://api.ceibo.me/v1/health-requirements/{id} \
  --header 'x-api-key: <api-key>'
{
  "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"
}

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.

Path Parameters

id
integer
required

Response

The health requirement.

id
integer
required
Example:

1

countryId
integer
required
Example:

76

regionSpecific
boolean
required
vaccineId
integer
required
Example:

1

vaccine
object
required
requirement
enum<string>
required

Captures both whether a requirement exists and how strictly it is enforced at the border.

Available options:
required,
recommended,
may_be_asked,
not_required
createdAt
string<date-time>
required
updatedAt
string<date-time>
required
cityId
integer | null
Example:

5

circumstances
string | null
notes
string | null
sourceUrl
string | null
lastVerifiedAt
string<date-time> | null