Discover/Com API
live

Com APItoyota.com.ar

Retrieve Toyota Argentina vehicle models, version pricing (with and without taxes), specs, colors, and dealership locations via a structured REST API.

Endpoint health
verified 4d ago
get_all_models
get_model_categories
get_vehicle_detail
get_vehicle_versions
get_all_vehicle_prices
6/6 passing latest checkself-healing
Endpoints
6
Updated
26d ago

What is the Com API?

The Toyota Argentina API covers 6 endpoints that expose the full toyota.com.ar vehicle catalog, including model listings, per-version pricing (suggested retail and pre-tax), specifications, and a dealership finder filterable by province and city. The get_vehicle_detail endpoint returns every trim level for a given model slug, with fields for price_suggested, price_no_tax, colors, key_features, and links to spec sheets and configurator pages.

Try it

No input parameters required.

api.parse.bot/scraper/3368f2ca-b0e1-4f4a-a599-55abc6dbaba1/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/3368f2ca-b0e1-4f4a-a599-55abc6dbaba1/get_all_models' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace toyota-com-ar-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Toyota Argentina SDK: browse vehicles, check pricing, and find dealerships."""
from parse_apis.toyota_argentina_api import ToyotaArgentina, ModelNotFound

client = ToyotaArgentina()

# List all models in the Argentine Toyota lineup
for model in client.modelsummaries.list(limit=5):
    print(model.name, model.category, model.slug)

# Drill into one model's full detail via the summary → detail navigation
summary = client.modelsummaries.list(limit=1).first()
if summary:
    detail = summary.details()
    for version in detail.versions:
        print(version.name, version.price_suggested, version.year)
        for feat in version.key_features:
            print(f"  {feat.title}: {feat.description}")

# Fetch a model directly by slug with typed error handling
try:
    hilux = client.models.get(slug="hilux-srvsrx")
    print(hilux.name, hilux.url, len(hilux.versions))
except ModelNotFound as exc:
    print(f"Model not found: {exc.slug}")

# Browse the category lineup
lineup = client.lineups.fetch()
print(lineup.categories)

# Search dealerships filtered by province
for dealer in client.dealerships.search(provincia="Buenos Aires", limit=3):
    print(dealer.name, dealer.city, dealer.phone_numbers)

print("Exercised: modelsummaries.list / details / models.get / lineups.fetch / dealerships.search")
All endpoints · 6 totalmissing one? ·

Get a list of all current Toyota vehicle models available in Argentina, including their categories and slugs. Returns models grouped from the official Toyota Argentina lineup page.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "models": "array of model objects with name, slug, url, and category"
  },
  "sample": {
    "data": {
      "models": [
        {
          "url": "https://www.toyota.com.ar/modelos/yaris-hatchback",
          "name": "Yaris Hatchback",
          "slug": "yaris-hatchback",
          "category": "Autos"
        },
        {
          "url": "https://www.toyota.com.ar/modelos/corolla",
          "name": "Corolla",
          "slug": "corolla",
          "category": "Autos"
        },
        {
          "url": "https://www.toyota.com.ar/modelos/hilux-dxsr",
          "name": "Hilux DX/SR",
          "slug": "hilux-dxsr",
          "category": "Pick-Up"
        }
      ]
    },
    "status": "success"
  }
}

About the Com API

Vehicle Catalog and Pricing

Start with get_all_models to retrieve the full list of current Toyota Argentina models — each object includes a name, slug, url, and category. Pass any slug to get_vehicle_detail or its alias get_vehicle_versions to get the complete trim breakdown for that model. Each version in the versions array carries name, price_suggested, price_no_tax, year, config_url, spec_sheet_url, a colors array, and a key_features list. The separation between suggested price and no-tax price reflects Argentina's national tax structure and is useful for compliance-aware price display.

Bulk Price Collection

get_all_vehicle_prices aggregates pricing across the lineup in a single call. An optional limit integer parameter caps how many models are processed; the response returns a count plus a vehicle_prices array of the same detail objects returned by get_vehicle_detail. Because processing is sequential, response time increases with limit, so setting a lower cap is advisable when only a subset of models is needed.

Category Structure

get_model_categories returns the official Toyota Argentina category taxonomy — Autos, Pick-Up, SUV, Comercial, Deportivos, Híbridos — with model name and slug grouped under each category key. This is the fastest way to filter the catalog by vehicle type without iterating individual model records.

Dealership Finder

get_dealership_finder returns dealership records for Argentina, each containing id, name, address, province, city, lat, lng, url, email, phone_numbers, open_hours, and services. Filter by ciudad or provincia using case-insensitive substring matching. Note that the stored city name for Buenos Aires metropolitan entries may differ from common abbreviations — test with the full name if a substring match returns zero results.

Reliability & maintenanceVerified

The Com API is a managed, monitored endpoint for toyota.com.ar — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when toyota.com.ar changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official toyota.com.ar API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
4d ago
Latest check
6/6 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a price comparison tool showing Toyota Argentina trim levels with and without national taxes side by side.
  • Display a model category browser (SUV, Pick-Up, Híbridos, etc.) using the category taxonomy from get_model_categories.
  • Generate spec-sheet links and configurator URLs for each Toyota version to embed in a dealership's product pages.
  • Map Toyota dealership locations across Argentina provinces using lat, lng, and address fields from get_dealership_finder.
  • Track year-over-year price changes by polling get_vehicle_detail for specific model slugs on a schedule.
  • Filter dealers by services field to surface locations offering specific maintenance or financing options.
  • Aggregate the full lineup's pricing in one call via get_all_vehicle_prices to seed a vehicle inventory database.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Toyota Argentina offer an official developer API?+
Toyota Argentina does not publish a public developer API or developer portal for programmatic access to its vehicle catalog or dealership data.
What pricing fields does `get_vehicle_detail` return, and what is the difference between them?+
price_suggested is the recommended retail price including national taxes; price_no_tax is the pre-tax figure. Both are returned per version inside the versions array alongside year, colors, and key_features.
Does the dealership endpoint return used-vehicle inventory or service appointment data?+
No. get_dealership_finder returns location and contact data — address, province, city, coordinates, phone numbers, open hours, and services — but not individual inventory listings or appointment scheduling. You can fork this API on Parse and revise it to add an endpoint covering those details.
Does the API cover historical pricing or discontinued models?+
The API reflects the current active lineup on toyota.com.ar. Historical pricing and models no longer listed on the site are not included. You can fork this API on Parse and revise it to archive snapshots of pricing over time.
How should I handle city name matching in `get_dealership_finder`?+
Filtering uses case-insensitive substring matching against stored dealership records. City names are stored as they appear in the source data, so common abbreviations may not match. Use the full official city or province name (e.g., 'Buenos Aires', 'Cordoba', 'Santa Fe') and test with partial strings if an exact match returns zero results.
Page content last updated . Spec covers 6 endpoints from toyota.com.ar.
Related APIs in AutomotiveSee all →
toyota.com API
Access Toyota's full vehicle lineup, trim-level specifications, current promotional offers, and dealer locations — all from a single API. Compare models side-by-side, retrieve financing and lease deals by ZIP code, and find authorized dealerships near any US address.
toyota.com.my API
Browse Toyota Malaysia's complete vehicle lineup with detailed specs, galleries, and videos for each model, then compare variants side-by-side to find the perfect match for your needs. Access comprehensive information on pricing tiers, features, and specifications across all available Toyota models in Malaysia.
toyota.ca API
Find current vehicle deals, promotions, and incentives from Toyota Canada including lease, finance, and cash purchase options tailored to your province. Browse and compare the latest offers to find the best deal on your next Toyota purchase.
coches.net API
coches.net API
autotrader.com API
Search Autotrader.com vehicle listings and access detailed information like pricing, specifications, and VIN data with flexible filtering options. Browse all available vehicle makes and models to refine your search across thousands of listings.
chileautos.cl API
Search car listings and get detailed vehicle information from Chile's largest auto marketplace, including brands, specifications, and pricing. Find your next vehicle by browsing available cars with complete details all in one place.
autos.mercadolibre.com.ar API
Search for used and new cars on MercadoLibre Argentina and instantly retrieve detailed listings with brand, model, year, mileage, price, location, seller information, and photos. Build car comparison tools, price tracking apps, or market analysis dashboards with comprehensive vehicle data from Argentina's largest online marketplace.
autodoc.es API
Browse vehicle makes, models, and variants on Autodoc.es, then search for specific auto parts by keyword or part number. Retrieve category listings with pricing, full part specifications, OE cross-reference numbers, and vehicle fitment data to compare options and verify compatibility.