BespokeAPI


Click here for a complete list of operations.

CheckEuroNCap

Check EuroNCap safety ratings for a vehicle

Test

To test the operation using the HTTP POST protocol, click the 'Invoke' button.
Parameter Value
Make:
Model:
username:

SOAP 1.1

The following is a sample SOAP 1.1 request and response. The placeholders shown need to be replaced with actual values.

POST /api/bespokeapi.asmx HTTP/1.1
Host: www.regcheck.org.uk
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://Regcheck.org.uk/CheckEuroNCap"

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <CheckEuroNCap xmlns="http://Regcheck.org.uk/">
      <Make>string</Make>
      <Model>string</Model>
      <username>string</username>
    </CheckEuroNCap>
  </soap:Body>
</soap:Envelope>
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <CheckEuroNCapResponse xmlns="http://Regcheck.org.uk/">
      <CheckEuroNCapResult>
        <PreAssessmentSearchResult>
          <AdultOccupantStars>int</AdultOccupantStars>
          <AdultOccupantStrikeThrough>boolean</AdultOccupantStrikeThrough>
          <ChildOccupantStars>int</ChildOccupantStars>
          <ChildOccupantStrikeThrough>boolean</ChildOccupantStrikeThrough>
          <PedestrianStars>int</PedestrianStars>
          <PedestrianStrikeThrough>boolean</PedestrianStrikeThrough>
          <Id>int</Id>
          <Title>string</Title>
          <Name>string</Name>
          <Make>string</Make>
          <Model>string</Model>
          <Content>string</Content>
          <Url>string</Url>
          <Year>int</Year>
          <ClassEN>string</ClassEN>
          <ClassDE>string</ClassDE>
          <ClassNL>string</ClassNL>
          <ClassES>string</ClassES>
          <ClassFR>string</ClassFR>
          <ClassIT>string</ClassIT>
          <ClassRU>string</ClassRU>
          <ClassSV>string</ClassSV>
          <ClassTR>string</ClassTR>
          <ClassZH>string</ClassZH>
          <ClassId>int</ClassId>
          <MakeImageLarge>string</MakeImageLarge>
          <MakeImageSmall>string</MakeImageSmall>
          <ProtocolId>int</ProtocolId>
          <MakeId>int</MakeId>
          <ModelId>int</ModelId>
          <IsPublished>boolean</IsPublished>
          <CreateDate>dateTime</CreateDate>
          <ReleaseDate>dateTime</ReleaseDate>
          <Images>string</Images>
          <YoutubeVideos>string</YoutubeVideos>
          <YoukuVideos>string</YoukuVideos>
          <IsPreProtocol>boolean</IsPreProtocol>
          <IsFleet>boolean</IsFleet>
          <SortOrder>int</SortOrder>
          <LifecycleStatus>int</LifecycleStatus>
          <FirstPublished>dateTime</FirstPublished>
        </PreAssessmentSearchResult>
        <PreAssessmentSearchResult>
          <AdultOccupantStars>int</AdultOccupantStars>
          <AdultOccupantStrikeThrough>boolean</AdultOccupantStrikeThrough>
          <ChildOccupantStars>int</ChildOccupantStars>
          <ChildOccupantStrikeThrough>boolean</ChildOccupantStrikeThrough>
          <PedestrianStars>int</PedestrianStars>
          <PedestrianStrikeThrough>boolean</PedestrianStrikeThrough>
          <Id>int</Id>
          <Title>string</Title>
          <Name>string</Name>
          <Make>string</Make>
          <Model>string</Model>
          <Content>string</Content>
          <Url>string</Url>
          <Year>int</Year>
          <ClassEN>string</ClassEN>
          <ClassDE>string</ClassDE>
          <ClassNL>string</ClassNL>
          <ClassES>string</ClassES>
          <ClassFR>string</ClassFR>
          <ClassIT>string</ClassIT>
          <ClassRU>string</ClassRU>
          <ClassSV>string</ClassSV>
          <ClassTR>string</ClassTR>
          <ClassZH>string</ClassZH>
          <ClassId>int</ClassId>
          <MakeImageLarge>string</MakeImageLarge>
          <MakeImageSmall>string</MakeImageSmall>
          <ProtocolId>int</ProtocolId>
          <MakeId>int</MakeId>
          <ModelId>int</ModelId>
          <IsPublished>boolean</IsPublished>
          <CreateDate>dateTime</CreateDate>
          <ReleaseDate>dateTime</ReleaseDate>
          <Images>string</Images>
          <YoutubeVideos>string</YoutubeVideos>
          <YoukuVideos>string</YoukuVideos>
          <IsPreProtocol>boolean</IsPreProtocol>
          <IsFleet>boolean</IsFleet>
          <SortOrder>int</SortOrder>
          <LifecycleStatus>int</LifecycleStatus>
          <FirstPublished>dateTime</FirstPublished>
        </PreAssessmentSearchResult>
      </CheckEuroNCapResult>
    </CheckEuroNCapResponse>
  </soap:Body>
</soap:Envelope>

SOAP 1.2

The following is a sample SOAP 1.2 request and response. The placeholders shown need to be replaced with actual values.

POST /api/bespokeapi.asmx HTTP/1.1
Host: www.regcheck.org.uk
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <CheckEuroNCap xmlns="http://Regcheck.org.uk/">
      <Make>string</Make>
      <Model>string</Model>
      <username>string</username>
    </CheckEuroNCap>
  </soap12:Body>
</soap12:Envelope>
HTTP/1.1 200 OK
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <CheckEuroNCapResponse xmlns="http://Regcheck.org.uk/">
      <CheckEuroNCapResult>
        <PreAssessmentSearchResult>
          <AdultOccupantStars>int</AdultOccupantStars>
          <AdultOccupantStrikeThrough>boolean</AdultOccupantStrikeThrough>
          <ChildOccupantStars>int</ChildOccupantStars>
          <ChildOccupantStrikeThrough>boolean</ChildOccupantStrikeThrough>
          <PedestrianStars>int</PedestrianStars>
          <PedestrianStrikeThrough>boolean</PedestrianStrikeThrough>
          <Id>int</Id>
          <Title>string</Title>
          <Name>string</Name>
          <Make>string</Make>
          <Model>string</Model>
          <Content>string</Content>
          <Url>string</Url>
          <Year>int</Year>
          <ClassEN>string</ClassEN>
          <ClassDE>string</ClassDE>
          <ClassNL>string</ClassNL>
          <ClassES>string</ClassES>
          <ClassFR>string</ClassFR>
          <ClassIT>string</ClassIT>
          <ClassRU>string</ClassRU>
          <ClassSV>string</ClassSV>
          <ClassTR>string</ClassTR>
          <ClassZH>string</ClassZH>
          <ClassId>int</ClassId>
          <MakeImageLarge>string</MakeImageLarge>
          <MakeImageSmall>string</MakeImageSmall>
          <ProtocolId>int</ProtocolId>
          <MakeId>int</MakeId>
          <ModelId>int</ModelId>
          <IsPublished>boolean</IsPublished>
          <CreateDate>dateTime</CreateDate>
          <ReleaseDate>dateTime</ReleaseDate>
          <Images>string</Images>
          <YoutubeVideos>string</YoutubeVideos>
          <YoukuVideos>string</YoukuVideos>
          <IsPreProtocol>boolean</IsPreProtocol>
          <IsFleet>boolean</IsFleet>
          <SortOrder>int</SortOrder>
          <LifecycleStatus>int</LifecycleStatus>
          <FirstPublished>dateTime</FirstPublished>
        </PreAssessmentSearchResult>
        <PreAssessmentSearchResult>
          <AdultOccupantStars>int</AdultOccupantStars>
          <AdultOccupantStrikeThrough>boolean</AdultOccupantStrikeThrough>
          <ChildOccupantStars>int</ChildOccupantStars>
          <ChildOccupantStrikeThrough>boolean</ChildOccupantStrikeThrough>
          <PedestrianStars>int</PedestrianStars>
          <PedestrianStrikeThrough>boolean</PedestrianStrikeThrough>
          <Id>int</Id>
          <Title>string</Title>
          <Name>string</Name>
          <Make>string</Make>
          <Model>string</Model>
          <Content>string</Content>
          <Url>string</Url>
          <Year>int</Year>
          <ClassEN>string</ClassEN>
          <ClassDE>string</ClassDE>
          <ClassNL>string</ClassNL>
          <ClassES>string</ClassES>
          <ClassFR>string</ClassFR>
          <ClassIT>string</ClassIT>
          <ClassRU>string</ClassRU>
          <ClassSV>string</ClassSV>
          <ClassTR>string</ClassTR>
          <ClassZH>string</ClassZH>
          <ClassId>int</ClassId>
          <MakeImageLarge>string</MakeImageLarge>
          <MakeImageSmall>string</MakeImageSmall>
          <ProtocolId>int</ProtocolId>
          <MakeId>int</MakeId>
          <ModelId>int</ModelId>
          <IsPublished>boolean</IsPublished>
          <CreateDate>dateTime</CreateDate>
          <ReleaseDate>dateTime</ReleaseDate>
          <Images>string</Images>
          <YoutubeVideos>string</YoutubeVideos>
          <YoukuVideos>string</YoukuVideos>
          <IsPreProtocol>boolean</IsPreProtocol>
          <IsFleet>boolean</IsFleet>
          <SortOrder>int</SortOrder>
          <LifecycleStatus>int</LifecycleStatus>
          <FirstPublished>dateTime</FirstPublished>
        </PreAssessmentSearchResult>
      </CheckEuroNCapResult>
    </CheckEuroNCapResponse>
  </soap12:Body>
</soap12:Envelope>

HTTP GET

The following is a sample HTTP GET request and response. The placeholders shown need to be replaced with actual values.

GET /api/bespokeapi.asmx/CheckEuroNCap?Make=string&Model=string&username=string HTTP/1.1
Host: www.regcheck.org.uk
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<ArrayOfPreAssessmentSearchResult xmlns="http://Regcheck.org.uk/">
  <PreAssessmentSearchResult>
    <AdultOccupantStars>int</AdultOccupantStars>
    <AdultOccupantStrikeThrough>boolean</AdultOccupantStrikeThrough>
    <ChildOccupantStars>int</ChildOccupantStars>
    <ChildOccupantStrikeThrough>boolean</ChildOccupantStrikeThrough>
    <PedestrianStars>int</PedestrianStars>
    <PedestrianStrikeThrough>boolean</PedestrianStrikeThrough>
    <Id>int</Id>
    <Title>string</Title>
    <Name>string</Name>
    <Make>string</Make>
    <Model>string</Model>
    <Content>string</Content>
    <Url>string</Url>
    <Year>int</Year>
    <ClassEN>string</ClassEN>
    <ClassDE>string</ClassDE>
    <ClassNL>string</ClassNL>
    <ClassES>string</ClassES>
    <ClassFR>string</ClassFR>
    <ClassIT>string</ClassIT>
    <ClassRU>string</ClassRU>
    <ClassSV>string</ClassSV>
    <ClassTR>string</ClassTR>
    <ClassZH>string</ClassZH>
    <ClassId>int</ClassId>
    <MakeImageLarge>string</MakeImageLarge>
    <MakeImageSmall>string</MakeImageSmall>
    <ProtocolId>int</ProtocolId>
    <MakeId>int</MakeId>
    <ModelId>int</ModelId>
    <IsPublished>boolean</IsPublished>
    <CreateDate>dateTime</CreateDate>
    <ReleaseDate>dateTime</ReleaseDate>
    <Images>string</Images>
    <YoutubeVideos>string</YoutubeVideos>
    <YoukuVideos>string</YoukuVideos>
    <IsPreProtocol>boolean</IsPreProtocol>
    <IsFleet>boolean</IsFleet>
    <SortOrder>int</SortOrder>
    <LifecycleStatus>int</LifecycleStatus>
    <FirstPublished>dateTime</FirstPublished>
  </PreAssessmentSearchResult>
  <PreAssessmentSearchResult>
    <AdultOccupantStars>int</AdultOccupantStars>
    <AdultOccupantStrikeThrough>boolean</AdultOccupantStrikeThrough>
    <ChildOccupantStars>int</ChildOccupantStars>
    <ChildOccupantStrikeThrough>boolean</ChildOccupantStrikeThrough>
    <PedestrianStars>int</PedestrianStars>
    <PedestrianStrikeThrough>boolean</PedestrianStrikeThrough>
    <Id>int</Id>
    <Title>string</Title>
    <Name>string</Name>
    <Make>string</Make>
    <Model>string</Model>
    <Content>string</Content>
    <Url>string</Url>
    <Year>int</Year>
    <ClassEN>string</ClassEN>
    <ClassDE>string</ClassDE>
    <ClassNL>string</ClassNL>
    <ClassES>string</ClassES>
    <ClassFR>string</ClassFR>
    <ClassIT>string</ClassIT>
    <ClassRU>string</ClassRU>
    <ClassSV>string</ClassSV>
    <ClassTR>string</ClassTR>
    <ClassZH>string</ClassZH>
    <ClassId>int</ClassId>
    <MakeImageLarge>string</MakeImageLarge>
    <MakeImageSmall>string</MakeImageSmall>
    <ProtocolId>int</ProtocolId>
    <MakeId>int</MakeId>
    <ModelId>int</ModelId>
    <IsPublished>boolean</IsPublished>
    <CreateDate>dateTime</CreateDate>
    <ReleaseDate>dateTime</ReleaseDate>
    <Images>string</Images>
    <YoutubeVideos>string</YoutubeVideos>
    <YoukuVideos>string</YoukuVideos>
    <IsPreProtocol>boolean</IsPreProtocol>
    <IsFleet>boolean</IsFleet>
    <SortOrder>int</SortOrder>
    <LifecycleStatus>int</LifecycleStatus>
    <FirstPublished>dateTime</FirstPublished>
  </PreAssessmentSearchResult>
</ArrayOfPreAssessmentSearchResult>

HTTP POST

The following is a sample HTTP POST request and response. The placeholders shown need to be replaced with actual values.

POST /api/bespokeapi.asmx/CheckEuroNCap HTTP/1.1
Host: www.regcheck.org.uk
Content-Type: application/x-www-form-urlencoded
Content-Length: length

Make=string&Model=string&username=string
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<ArrayOfPreAssessmentSearchResult xmlns="http://Regcheck.org.uk/">
  <PreAssessmentSearchResult>
    <AdultOccupantStars>int</AdultOccupantStars>
    <AdultOccupantStrikeThrough>boolean</AdultOccupantStrikeThrough>
    <ChildOccupantStars>int</ChildOccupantStars>
    <ChildOccupantStrikeThrough>boolean</ChildOccupantStrikeThrough>
    <PedestrianStars>int</PedestrianStars>
    <PedestrianStrikeThrough>boolean</PedestrianStrikeThrough>
    <Id>int</Id>
    <Title>string</Title>
    <Name>string</Name>
    <Make>string</Make>
    <Model>string</Model>
    <Content>string</Content>
    <Url>string</Url>
    <Year>int</Year>
    <ClassEN>string</ClassEN>
    <ClassDE>string</ClassDE>
    <ClassNL>string</ClassNL>
    <ClassES>string</ClassES>
    <ClassFR>string</ClassFR>
    <ClassIT>string</ClassIT>
    <ClassRU>string</ClassRU>
    <ClassSV>string</ClassSV>
    <ClassTR>string</ClassTR>
    <ClassZH>string</ClassZH>
    <ClassId>int</ClassId>
    <MakeImageLarge>string</MakeImageLarge>
    <MakeImageSmall>string</MakeImageSmall>
    <ProtocolId>int</ProtocolId>
    <MakeId>int</MakeId>
    <ModelId>int</ModelId>
    <IsPublished>boolean</IsPublished>
    <CreateDate>dateTime</CreateDate>
    <ReleaseDate>dateTime</ReleaseDate>
    <Images>string</Images>
    <YoutubeVideos>string</YoutubeVideos>
    <YoukuVideos>string</YoukuVideos>
    <IsPreProtocol>boolean</IsPreProtocol>
    <IsFleet>boolean</IsFleet>
    <SortOrder>int</SortOrder>
    <LifecycleStatus>int</LifecycleStatus>
    <FirstPublished>dateTime</FirstPublished>
  </PreAssessmentSearchResult>
  <PreAssessmentSearchResult>
    <AdultOccupantStars>int</AdultOccupantStars>
    <AdultOccupantStrikeThrough>boolean</AdultOccupantStrikeThrough>
    <ChildOccupantStars>int</ChildOccupantStars>
    <ChildOccupantStrikeThrough>boolean</ChildOccupantStrikeThrough>
    <PedestrianStars>int</PedestrianStars>
    <PedestrianStrikeThrough>boolean</PedestrianStrikeThrough>
    <Id>int</Id>
    <Title>string</Title>
    <Name>string</Name>
    <Make>string</Make>
    <Model>string</Model>
    <Content>string</Content>
    <Url>string</Url>
    <Year>int</Year>
    <ClassEN>string</ClassEN>
    <ClassDE>string</ClassDE>
    <ClassNL>string</ClassNL>
    <ClassES>string</ClassES>
    <ClassFR>string</ClassFR>
    <ClassIT>string</ClassIT>
    <ClassRU>string</ClassRU>
    <ClassSV>string</ClassSV>
    <ClassTR>string</ClassTR>
    <ClassZH>string</ClassZH>
    <ClassId>int</ClassId>
    <MakeImageLarge>string</MakeImageLarge>
    <MakeImageSmall>string</MakeImageSmall>
    <ProtocolId>int</ProtocolId>
    <MakeId>int</MakeId>
    <ModelId>int</ModelId>
    <IsPublished>boolean</IsPublished>
    <CreateDate>dateTime</CreateDate>
    <ReleaseDate>dateTime</ReleaseDate>
    <Images>string</Images>
    <YoutubeVideos>string</YoutubeVideos>
    <YoukuVideos>string</YoukuVideos>
    <IsPreProtocol>boolean</IsPreProtocol>
    <IsFleet>boolean</IsFleet>
    <SortOrder>int</SortOrder>
    <LifecycleStatus>int</LifecycleStatus>
    <FirstPublished>dateTime</FirstPublished>
  </PreAssessmentSearchResult>
</ArrayOfPreAssessmentSearchResult>