Get personalized entry requirements
curl --request GET \
--url https://api.ceibo.me/v1/entry-requirements/personalized \
--header 'x-api-key: <api-key>'import requests
url = "https://api.ceibo.me/v1/entry-requirements/personalized"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.ceibo.me/v1/entry-requirements/personalized', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.ceibo.me/v1/entry-requirements/personalized",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.ceibo.me/v1/entry-requirements/personalized"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.ceibo.me/v1/entry-requirements/personalized")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.ceibo.me/v1/entry-requirements/personalized")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"applicabilityContext": {
"isFromMercosur": true,
"countryGroups": [
{
"code": "mercosur",
"name": "MERCOSUR"
}
]
},
"requirement": {
"id": 1,
"priority": 1,
"customsDeclarationRequired": true,
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"fromCountryId": 123,
"fromCountryGroupId": 123,
"toCountryId": 123,
"toCountryGroupId": 123,
"documentValidity": {
"minimumDays": 180
},
"proofOfFunds": "required",
"proofOfFundsDetails": "<string>",
"proofOfFundsAmountUsd": 123,
"proofOfFundsSourceUrl": "<string>",
"proofOfFundsAmountLocal": 123,
"proofOfFundsCurrencyId": 123,
"returnTicket": "required",
"returnTicketDetails": "<string>",
"returnTicketSourceUrl": "<string>",
"healthInsurance": "required",
"healthInsuranceDetails": "<string>",
"healthInsuranceCoverageUsd": 123,
"healthInsuranceSourceUrl": "<string>",
"customsDeclarationDetails": "<string>",
"customsDeclarationUrl": "<string>",
"proofOfAccommodation": "required",
"proofOfAccommodationDetails": "<string>",
"proofOfAccommodationSourceUrl": "<string>",
"visaRequirementType": "visa_free",
"maxStayDays": 90,
"generalNotes": "<string>",
"sourceUrl": "<string>",
"officialWebsiteUrl": "<string>",
"visaApplicationUrl": "<string>",
"visaProcessingDays": 183,
"lastVerifiedAt": "2023-11-07T05:31:56Z"
},
"translationMeta": {
"languageId": 123,
"isFallback": true
}
}{
"statusCode": 404,
"code": "NOT_FOUND",
"message": "Country with id 9999 not found",
"timestamp": "2026-04-30T10:00:00.000Z",
"path": "/v1/countries/9999"
}{
"statusCode": 404,
"code": "NOT_FOUND",
"message": "Country with id 9999 not found",
"timestamp": "2026-04-30T10:00:00.000Z",
"path": "/v1/countries/9999"
}{
"statusCode": 404,
"code": "NOT_FOUND",
"message": "Country with id 9999 not found",
"timestamp": "2026-04-30T10:00:00.000Z",
"path": "/v1/countries/9999"
}Entry requirements
Personalized entry requirements
Returns the most specific entry requirement applicable to a traveler with fromCountryId passport visiting toCountryId. Falls back from country-specific to general rules. The response wraps the requirement with an applicabilityContext describing why it matched.
GET
/
entry-requirements
/
personalized
Get personalized entry requirements
curl --request GET \
--url https://api.ceibo.me/v1/entry-requirements/personalized \
--header 'x-api-key: <api-key>'import requests
url = "https://api.ceibo.me/v1/entry-requirements/personalized"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.ceibo.me/v1/entry-requirements/personalized', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.ceibo.me/v1/entry-requirements/personalized",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.ceibo.me/v1/entry-requirements/personalized"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.ceibo.me/v1/entry-requirements/personalized")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.ceibo.me/v1/entry-requirements/personalized")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"applicabilityContext": {
"isFromMercosur": true,
"countryGroups": [
{
"code": "mercosur",
"name": "MERCOSUR"
}
]
},
"requirement": {
"id": 1,
"priority": 1,
"customsDeclarationRequired": true,
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"fromCountryId": 123,
"fromCountryGroupId": 123,
"toCountryId": 123,
"toCountryGroupId": 123,
"documentValidity": {
"minimumDays": 180
},
"proofOfFunds": "required",
"proofOfFundsDetails": "<string>",
"proofOfFundsAmountUsd": 123,
"proofOfFundsSourceUrl": "<string>",
"proofOfFundsAmountLocal": 123,
"proofOfFundsCurrencyId": 123,
"returnTicket": "required",
"returnTicketDetails": "<string>",
"returnTicketSourceUrl": "<string>",
"healthInsurance": "required",
"healthInsuranceDetails": "<string>",
"healthInsuranceCoverageUsd": 123,
"healthInsuranceSourceUrl": "<string>",
"customsDeclarationDetails": "<string>",
"customsDeclarationUrl": "<string>",
"proofOfAccommodation": "required",
"proofOfAccommodationDetails": "<string>",
"proofOfAccommodationSourceUrl": "<string>",
"visaRequirementType": "visa_free",
"maxStayDays": 90,
"generalNotes": "<string>",
"sourceUrl": "<string>",
"officialWebsiteUrl": "<string>",
"visaApplicationUrl": "<string>",
"visaProcessingDays": 183,
"lastVerifiedAt": "2023-11-07T05:31:56Z"
},
"translationMeta": {
"languageId": 123,
"isFallback": true
}
}{
"statusCode": 404,
"code": "NOT_FOUND",
"message": "Country with id 9999 not found",
"timestamp": "2026-04-30T10:00:00.000Z",
"path": "/v1/countries/9999"
}{
"statusCode": 404,
"code": "NOT_FOUND",
"message": "Country with id 9999 not found",
"timestamp": "2026-04-30T10:00:00.000Z",
"path": "/v1/countries/9999"
}{
"statusCode": 404,
"code": "NOT_FOUND",
"message": "Country with id 9999 not found",
"timestamp": "2026-04-30T10:00:00.000Z",
"path": "/v1/countries/9999"
}Authorizations
API key minted at developer.ceibo.me. Send on every request.
Query Parameters
Traveler's passport country.
Destination country.
Destination city — narrows to city-specific requirements when present.
Was this page helpful?
⌘I