Kia Vehicle Specifications Extractor
Extracts detailed vehicle specifications and trim comparison data from the official Kia USA website (kia.com).
Features
- Trim Comparison: Fetches all available trim levels for a vehicle model with pricing and feature comparisons
- Vehicle Specs: Retrieves detailed specifications including dimensions, engine specs, fuel economy, safety features, and equipment
- Multiple Models: Supports all Kia models (K4, K5, Sportage, Sorento, Telluride, Carnival, Niro, EV6, EV9, etc.)
Usage
Get Trim Comparison
Compare all available trim levels for a Kia model:
result = await execute({
'function': 'get_trim_comparison',
'model': 'k4'
})
Returns:
- Model and year information
- List of trim levels with MSRP pricing
- Detailed specifications organized by category
- Feature availability per trim (Standard/Not Available/Available)
Get Vehicle Specs
Get specifications for a specific vehicle:
result = await execute({
'function': 'get_vehicle_specs',
'model': 'k4',
'year': 2025
})
Returns:
- Model, year, and trim information
- MSRP pricing
- Categorized specifications (Engine, Safety, Interior, Exterior, etc.)
Example Response
Trim Comparison Response
{
"success": true,
"type": "compare",
"model": "K4",
"year": "2026",
"trims": [
{"name": "LX", "msrp": "22290"},
{"name": "LXS", "msrp": "23390"},
{"name": "EX", "msrp": "24490"},
{"name": "GT-Line", "msrp": "25490"},
{"name": "GT-Line Turbo", "msrp": "28390"}
],
"specifications": {
"EPA Mileage Ratings": {
"EPA MPG Estimates (City/Highway/Combined)*": [
"29/39/33",
"29/39/33",
"29/39/33",
"29/39/33",
"26/33/28"
]
},
"Driver Assistance Technology": {
"Blind-Spot Collision Warning w/ Parallel Exit": [
"Not Available",
"Standard",
"Standard",
"Standard",
"Standard"
]
}
}
}
Supported Models
- Sedans: K4, K5
- SUVs/CUVs: Sportage, Sorento, Telluride, Niro
- Minivans: Carnival
- Electric: EV6, EV9
- Hybrids: Check Kia website for current hybrid variants
Notes
- The extractor uses browser automation to handle JavaScript-rendered content
- Data is scraped from the official Kia USA website
- Specifications are organized by category (Safety, Performance, Features, etc.)
- Trim availability and pricing may vary by region and time
Limitations
- Only supports Kia USA website (kia.com/us/en)
- Uses Playwright for browser automation, which has higher overhead than direct API calls
- Some optional features may not be captured correctly due to complex page rendering
1---2name: www-kia-com3description: Kia Vehicle Specifications Extractor4---5# Kia Vehicle Specifications Extractor67Extracts detailed vehicle specifications and trim comparison data from the official Kia USA website (kia.com).89## Features1011- **Trim Comparison**: Fetches all available trim levels for a vehicle model with pricing and feature comparisons12- **Vehicle Specs**: Retrieves detailed specifications including dimensions, engine specs, fuel economy, safety features, and equipment13- **Multiple Models**: Supports all Kia models (K4, K5, Sportage, Sorento, Telluride, Carnival, Niro, EV6, EV9, etc.)1415## Usage1617### Get Trim Comparison1819Compare all available trim levels for a Kia model:2021```python22result = await execute({23 'function': 'get_trim_comparison',24 'model': 'k4'25})26```2728Returns:29- Model and year information30- List of trim levels with MSRP pricing31- Detailed specifications organized by category32- Feature availability per trim (Standard/Not Available/Available)3334### Get Vehicle Specs3536Get specifications for a specific vehicle:3738```python39result = await execute({40 'function': 'get_vehicle_specs',41 'model': 'k4',42 'year': 202543})44```4546Returns:47- Model, year, and trim information48- MSRP pricing49- Categorized specifications (Engine, Safety, Interior, Exterior, etc.)5051## Example Response5253### Trim Comparison Response5455```json56{57 "success": true,58 "type": "compare",59 "model": "K4",60 "year": "2026",61 "trims": [62 {"name": "LX", "msrp": "22290"},63 {"name": "LXS", "msrp": "23390"},64 {"name": "EX", "msrp": "24490"},65 {"name": "GT-Line", "msrp": "25490"},66 {"name": "GT-Line Turbo", "msrp": "28390"}67 ],68 "specifications": {69 "EPA Mileage Ratings": {70 "EPA MPG Estimates (City/Highway/Combined)*": [71 "29/39/33",72 "29/39/33",73 "29/39/33",74 "29/39/33",75 "26/33/28"76 ]77 },78 "Driver Assistance Technology": {79 "Blind-Spot Collision Warning w/ Parallel Exit": [80 "Not Available",81 "Standard",82 "Standard",83 "Standard",84 "Standard"85 ]86 }87 }88}89```9091## Supported Models9293- **Sedans**: K4, K594- **SUVs/CUVs**: Sportage, Sorento, Telluride, Niro95- **Minivans**: Carnival96- **Electric**: EV6, EV997- **Hybrids**: Check Kia website for current hybrid variants9899## Notes100101- The extractor uses browser automation to handle JavaScript-rendered content102- Data is scraped from the official Kia USA website103- Specifications are organized by category (Safety, Performance, Features, etc.)104- Trim availability and pricing may vary by region and time105106## Limitations107108- Only supports Kia USA website (kia.com/us/en)109- Uses Playwright for browser automation, which has higher overhead than direct API calls110- Some optional features may not be captured correctly due to complex page rendering