# Nationalities Get list of nationalities with basic information. You can use code field value of records returned in response of this endpoint as parameters to different endpoints. Endpoint: GET /nationalities Version: 2.0.0 Security: , ## Query parameters: - `limit` (integer) Limit number of records returned in response. - `sort_by` (string) Specify column to sort records by. - `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":"DE","name":"Germany"},{"code":"IT","name":"Italy"}] - `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)