Schools

The schools API allows you to retrieve a list of schools, including basic information about each school. You need to authenticate using an API Key in order to call this service; see the Authentication section for further details

URL
/v1/product/schools
HTTP Method
GET
Client Library Message Name
Product.GetSchoolsRequest

Sample request

Error

Failed to run contract transformer command: bin\Api.ContractTransformer.exe

{ }

Sample response

HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8
Cache-Control: no-cache
Content-Length: 987

{
  "Results": [
    {
      "ProductOfferingsUrl": "https://api.ecenglish.com/v1/product/offerings?withSchools=MLT",
      "Code": "MLT",
      "Name": "Malta",
      "MinimumAge": 16,
      "Country": {
        "Type": "Country",
        "Code": "MT",
        "Name": "Malta",
        "Properties": {}
      }
    },
    {
      "ProductOfferingsUrl": "https://api.ecenglish.com/v1/product/offerings?withSchools=LON",
      "Code": "LON",
      "Name": "London",
      "MinimumAge": 16,
      "Country": {
        "Type": "Country",
        "Code": "GB",
        "Name": "United Kingdom",
        "Properties": {}
      }
    },
    {
      "ProductOfferingsUrl": "https://api.ecenglish.com/v1/product/offerings?withSchools=YRK",
      "Code": "YRK",
      "Name": "New York",
      "MinimumAge": 16,
      "Country": {
        "Type": "Country",
        "Code": "US",
        "Name": "United States",
        "Properties": {}
      }
    }
  ]
}