For clean Markdown of any page, append .md to the page URL. For a complete documentation index, see https://api-doc-new.gideononline.com/gideon-api-1-0/travel/llms.txt. For full documentation content, see https://api-doc-new.gideononline.com/gideon-api-1-0/travel/llms-full.txt.

# /travel/countries/{country_code}/vaccination-coverage-chart

GET https://api.gideononline.com/travel/countries/%7Bcountry_code%7D/vaccination-coverage-chart

Returns information on vaccination coverage

Reference: https://api-doc-new.gideononline.com/gideon-api-1-0/travel/travel-countries-country-code-vaccination-coverage-chart

## OpenAPI Specification

```yaml
openapi: 3.1.0
info:
  title: collection
  version: 1.0.0
paths:
  /travel/countries/%7Bcountry_code%7D/vaccination-coverage-chart:
    get:
      operationId: travel-countries-country-code-vaccination-coverage-chart
      summary: /travel/countries/{country_code}/vaccination-coverage-chart
      description: Returns information on vaccination coverage
      tags:
        - subpackage_travel
      parameters:
        - name: Authorization
          in: header
          required: true
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/Travel_/travel/countries/{country_code}/vaccination-coverage-chart_Response_200
servers:
  - url: https://api.gideononline.com
  - url: https://api-test.gideononline.com
components:
  schemas:
    TravelCountries7BcountryCode7DVaccinationCoverageChartGetResponsesContentApplicationJsonSchemaDataItemsCoordinatesItems:
      type: object
      properties:
        x_axis:
          type: string
        y_axis:
          type: string
      required:
        - x_axis
        - y_axis
      title: >-
        TravelCountries7BcountryCode7DVaccinationCoverageChartGetResponsesContentApplicationJsonSchemaDataItemsCoordinatesItems
    TravelCountries7BcountryCode7DVaccinationCoverageChartGetResponsesContentApplicationJsonSchemaDataItems:
      type: object
      properties:
        title:
          type: string
        country:
          type: string
        disease:
          type: string
        x_title:
          type: string
        y_title:
          type: string
        coordinates:
          type: array
          items:
            $ref: >-
              #/components/schemas/TravelCountries7BcountryCode7DVaccinationCoverageChartGetResponsesContentApplicationJsonSchemaDataItemsCoordinatesItems
        country_code:
          type: string
        disease_code:
          type: integer
      required:
        - title
        - country
        - disease
        - x_title
        - y_title
        - coordinates
        - country_code
        - disease_code
      title: >-
        TravelCountries7BcountryCode7DVaccinationCoverageChartGetResponsesContentApplicationJsonSchemaDataItems
    Travel_/travel/countries/{country_code}/vaccination-coverage-chart_Response_200:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: >-
              #/components/schemas/TravelCountries7BcountryCode7DVaccinationCoverageChartGetResponsesContentApplicationJsonSchemaDataItems
      required:
        - data
      title: >-
        Travel_/travel/countries/{country_code}/vaccination-coverage-chart_Response_200
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: Authorization

```

## SDK Code Examples

```python Travel_/travel/countries/{country_code}/vaccination-coverage-chart_example
import requests

url = "https://api.gideononline.com/travel/countries/%7Bcountry_code%7D/vaccination-coverage-chart"

headers = {"Authorization": "<apiKey>"}

response = requests.get(url, headers=headers)

print(response.json())
```

```javascript Travel_/travel/countries/{country_code}/vaccination-coverage-chart_example
const url = 'https://api.gideononline.com/travel/countries/%7Bcountry_code%7D/vaccination-coverage-chart';
const options = {method: 'GET', headers: {Authorization: '<apiKey>'}};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go Travel_/travel/countries/{country_code}/vaccination-coverage-chart_example
package main

import (
	"fmt"
	"net/http"
	"io"
)

func main() {

	url := "https://api.gideononline.com/travel/countries/%7Bcountry_code%7D/vaccination-coverage-chart"

	req, _ := http.NewRequest("GET", url, nil)

	req.Header.Add("Authorization", "<apiKey>")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby Travel_/travel/countries/{country_code}/vaccination-coverage-chart_example
require 'uri'
require 'net/http'

url = URI("https://api.gideononline.com/travel/countries/%7Bcountry_code%7D/vaccination-coverage-chart")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Authorization"] = '<apiKey>'

response = http.request(request)
puts response.read_body
```

```java Travel_/travel/countries/{country_code}/vaccination-coverage-chart_example
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.get("https://api.gideononline.com/travel/countries/%7Bcountry_code%7D/vaccination-coverage-chart")
  .header("Authorization", "<apiKey>")
  .asString();
```

```php Travel_/travel/countries/{country_code}/vaccination-coverage-chart_example
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('GET', 'https://api.gideononline.com/travel/countries/%7Bcountry_code%7D/vaccination-coverage-chart', [
  'headers' => [
    'Authorization' => '<apiKey>',
  ],
]);

echo $response->getBody();
```

```csharp Travel_/travel/countries/{country_code}/vaccination-coverage-chart_example
using RestSharp;

var client = new RestClient("https://api.gideononline.com/travel/countries/%7Bcountry_code%7D/vaccination-coverage-chart");
var request = new RestRequest(Method.GET);
request.AddHeader("Authorization", "<apiKey>");
IRestResponse response = client.Execute(request);
```

```swift Travel_/travel/countries/{country_code}/vaccination-coverage-chart_example
import Foundation

let headers = ["Authorization": "<apiKey>"]

let request = NSMutableURLRequest(url: NSURL(string: "https://api.gideononline.com/travel/countries/%7Bcountry_code%7D/vaccination-coverage-chart")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "GET"
request.allHTTPHeaderFields = headers

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```