Skip to main content
GET
/
api
/
v1
/
vehicles
/
lookup
/
{plate}
Lookup vehicle by license plate
curl --request GET \
  --url https://api.raul.ugps.io/api/v1/vehicles/lookup/{plate} \
  --header 'Authorization: Bearer <token>'
{
  "plate": "BBCL12",
  "brand": "TOYOTA",
  "model": "HILUX",
  "year": 2020,
  "vehicleType": 4,
  "vehicleTypeName": "CAMIONETA",
  "dv": "K",
  "version": "2.4 SR 4X4 DIESEL AUT",
  "vin": "8AJMS21L9MZ000123",
  "color": "BLANCO",
  "engineNumber": "1GD0000000",
  "engineSize": "2.4",
  "doors": 4,
  "transmission": "AUTOMATICA",
  "kilometers": 45000,
  "valuation": 18500000,
  "gasType": "DIESEL",
  "manufacturer": "Toyota Motor Corporation",
  "region": "Asia",
  "country": "Japan",
  "lastQueryDate": "2024-01-15"
}

Authorizations

Authorization
string
header
required

Bearer token authentication

Path Parameters

plate
string
required

Chilean license plate (e.g., "BBCL12", "BB-CL-12", "BB CL 12")

Required string length: 1 - 10
Example:

"BBCL12"

Response

Vehicle information retrieved successfully

plate
string
required

Normalized license plate (6 uppercase alphanumeric chars)

Example:

"BBCL12"

brand
string
required

Vehicle brand/manufacturer

Example:

"TOYOTA"

model
string
required

Vehicle model

Example:

"HILUX"

year
number
required

Vehicle manufacturing year

Example:

2020

vehicleType
number
required

Numeric vehicle type code

Example:

4

vehicleTypeName
string
required

Human-readable vehicle type name

Example:

"CAMIONETA"

dv
object

License plate verification digit

Example:

"K"

version
object

Detailed vehicle version

Example:

"2.4 SR 4X4 DIESEL AUT"

vin
object

Vehicle Identification Number (VIN/Chassis)

Example:

"8AJMS21L9MZ000123"

color
object

Vehicle color

Example:

"BLANCO"

engineNumber
object

Engine number

Example:

"1GD0000000"

engineSize
object

Engine displacement size

Example:

"2.4"

doors
object

Number of doors

Example:

4

transmission
object

Transmission type

Example:

"AUTOMATICA"

kilometers
object

Recorded kilometers

Example:

45000

valuation
object

Estimated vehicle valuation in CLP

Example:

18500000

gasType
object

Fuel/gas type

Example:

"DIESEL"

manufacturer
object

Vehicle manufacturer company

Example:

"Toyota Motor Corporation"

region
object

Manufacturing region

Example:

"Asia"

country
object

Country of origin

Example:

"Japan"

lastQueryDate
object

Last query date from data source

Example:

"2024-01-15"