# Search Destinations Get list of destinations / countries that meet traveller's preferences & eligibility. \ See examples below Endpoint: POST /destinations Version: 2.0.0 Security: oAuth, bearerAuth ## Query parameters: - `lang` (string) Language code for response content. Enum: "de", "en", "fr", "it", "nl", "pl", "es", "pt", "ru", "bg", "cs", "da", "el", "fi", "hu", "nb", "ro", "sk", "sl", "sv", "tr" - `sort_by` (string) Specify field to sort destinations by. Enum: "code", "name" - `sort_order` (string) Specify order for sorting. Enum: "asc", "desc" ## Request fields (application/json): - `entry` (object) - `entry.documents` (object) - `entry.documents.document_code` (object) The 'document_code' key should be one of the document keys supported by API. You can get possible values by using .../api/v2/entry/documents endpoint. - `entry.documents.document_code.entry_allowed` (boolean) - `entry.additional_info` (object) - `entry.additional_info.list` (object) - `entry.additional_info.list.code` (object) The 'code' key should be one of the keys supported by API. You can get possible values by using .../api/v2/entry/additional-info endpoint. - `entry.additional_info.list.code.status` (string) Enum: "not_required", "required" - `visa` (object) - `visa.required` (object) - `visa.application` (object) - `visa.application.foreign_representation` (object) - `visa.application.foreign_representation.available` (boolean) - `visa.application.e_visa` (object) - `visa.application.on_arrival` (object) - `health` (object) - `health.risk_groups` (object) - `health.risk_groups.pregnant` (object) - `health.risk_groups.pregnant.has_risk` (boolean) - `health.risk_groups.child` (object) - `health.immunizations` (object) - `health.immunizations.immunization_code` (object) The 'immunization_code' key should be one of the immunization keys supported by API. You can get possible values by using .../api/v2/health/immunizations endpoint. - `health.immunizations.immunization_code.recommended` (boolean) - `health.medication` (object) - `health.medication.information` (object) The 'information_code' key should be one of the keys supported by API. The API will respond with list of allowed keys in error message if you send any arbitrary key. - `health.medication.information.insurance` (object) - `fields` (object) - `fields.travel_advisory` (object) - `fields.travel_advisory.type` (boolean) ## Response 200 fields (application/json): - `destinations` (array) - `destinations.code` (string) 2 character country code defined in ISO 3166-1 Example: "ES" - `destinations.name` (string) Destination name. Example: "Spain" - `destinations.travel_advisory` (object) - `destinations.travel_advisory.type` (string) Example: "inactive" - `requestid` (string) Unique Request ID identifying this request. - `responsetime` (number) Time taken to generate response. ## Response 401 fields