+
+

Car Registration

+ +

Retrieve information about a UK registered vehicle.

+ +

URL

+ +

/car_reg/{registration}

+ +

Method

+ +

GET

+ +

Parameters

+ + + + + + + + + + + + + + + + + + + + + +
NameFormatRequired
registrationStringY
keyStringY
+ +
+ +

Examples

+ +

Request

+ + + +
    + +
  • +
    https://api.holidayextras.co.uk/v1/car_reg/AMS1?key=mytestkey
    +
    +
  • + +
  • +
    https://api.holidayextras.co.uk/v1/car_reg/AMS1.js?key=mytestkey
    +
    +

    Note the .js extension.

    +
  • + +
+ +

Response

+ + + +
    + +
  • +
    <API_Reply Result="OK">
    +  <Registration>AMS1</Registration>
    +  <CarMake>ROLLS ROYCE</CarMake>
    +  <CarModel>GHOST</CarModel>
    +  <CarColour>BLACK</CarColour>
    +  <Source>D</Source>
    +  <API_Header>
    +    <Request>
    +      <key>mytestkey</key>
    +      <v>1</v>
    +    </Request>
    +  </API_Header>
    +</API_Reply>
    +
    +
  • + +
  • +
    {
    +  "API_Reply": {
    +    "Registration": "AMS1",
    +    "CarMake": "ROLLS ROYCE",
    +    "CarModel": "GHOST",
    +    "CarColour": "BLACK",
    +    "Source": "D",
    +    "ATTRIBUTES": {
    +      "Result": "OK"
    +    },
    +    "API_Header": {
    +      "Request": {
    +        "key": "mytestkey",
    +        "v": 1,
    +        "format": "js"
    +      }
    +    }
    +  }
    +}
    +
    +
  • + +
+ + +
+ +