# Destinations Get list of destinations / countries with basic information. You can use code field value of records returned in response of this endpoint as parameters to different endpoints. Endpoint: GET /countries Version: 2.0.0 Security: , ## Query parameters: - `code` (string) Search a country by its 2 character country code (ISO 3166-1). - `limit` (integer) Limit number of records returned in response. - `sort_by` (string) Specify column to sort records by. Enum: "code", "continent", "capital", "population", "area", "coastline", "currency", "governmentform", "dialingprefix", "birthrate", "deathrate", "lifeexpectancy" - `sort_order` (string) Specify order for sorting. Enum: "asc", "desc" - `page` (integer) Specify page number to retrieve records of a particular page. - `active` (integer) Get only active records in response. ## Response 200 fields (application/json): - `result` (object) - `result.data` (array) Example: [{"code":"FR","name":"France"},{"code":"ES","name":"Spain"}] - `result.data.code` (string) - `result.data.name` (string) - `result.per_page` (number) - `result.current_page` (number) - `result.from` (number) - `result.to` (number) - `result.total` (number) - `result.last_page` (number) - `result.path` (string) - `result.first_page_url` (string) - `result.prev_page_url` (string) - `result.next_page_url` (string) - `result.last_page_url` (string)