Skip to main content

❓ One2Car FAQ

Answers to common questions about One2Car parser and Thai automotive market data

🔧 API & Technical Questions

How do I get started with One2Car API?

Getting Started
  1. Sign up at Carapis Dashboard
  2. Get your API key - starts with one2car_parser_sk_
  3. Make your first request using our Quick Start Guide
  4. Explore endpoints in our API Reference

What programming languages are supported?

Supported Languages
  • Python - Official SDK with full documentation
  • JavaScript/Node.js - Complete SDK with async support
  • cURL - Direct HTTP requests
  • PHP - Community SDK available
  • Java - REST API compatible
  • C#/.NET - HTTP client compatible

How often is the data updated?

Data Freshness
  • Active Listings: Updated every 15 minutes
  • New Listings: Added within 30 minutes of posting
  • Price Changes: Reflected within 1 hour
  • Removed Listings: Cleaned up within 2 hours
  • Historical Data: Available for up to 12 months

What are the API rate limits?

Rate Limits
PlanRequests/DayRequests/MinuteConcurrent Requests
Free1,000105
Pro10,00010020
EnterpriseCustomCustomCustom

How do I handle API errors?

Error Handling
import requests

try:
response = requests.get(url, headers=headers)
response.raise_for_status()
data = response.json()
except requests.exceptions.HTTPError as e:
if e.response.status_code == 429:
print("Rate limit exceeded - wait and retry")
elif e.response.status_code == 401:
print("Invalid API key - check your credentials")
else:
print(f"HTTP error: {e}")
except Exception as e:
print(f"Unexpected error: {e}")

📊 Data & Accuracy Questions

How accurate is the One2Car data?

Data Accuracy
  • Price Accuracy: 99.2% match with original listings
  • Specification Accuracy: 98.8% correct vehicle details
  • Location Accuracy: 99.5% precise geographic data
  • Image Availability: 97.3% of listings include images
  • Contact Information: 96.7% valid seller contact details

What data fields are available?

Available Fields
CategoryFieldsDescription
Basic Info15+ fieldsTitle, brand, model, year, price
Specifications20+ fieldsEngine, transmission, mileage, color
Location8+ fieldsCity, province, district, coordinates
Seller Info10+ fieldsName, type, contact, address
Images5+ fieldsURLs, count, quality
Market Data12+ fieldsDays on market, views, demand score

Do you provide historical data?

Historical Data
  • Available Period: Up to 12 months of historical data
  • Data Points: Price changes, listing history, market trends
  • Export Format: JSON, CSV, Excel
  • Access: Available on Pro and Enterprise plans
  • Use Cases: Market analysis, trend identification, price tracking

How do you handle duplicate listings?

Duplicate Detection
  • Automatic Detection: AI-powered duplicate identification
  • Merge Strategy: Combine data from multiple sources
  • Quality Scoring: Prioritize higher-quality listings
  • Manual Review: Human verification for complex cases
  • Update Frequency: Continuous deduplication process

Can I get data for specific regions only?

Regional Filtering
  • Provinces: All 77 Thai provinces supported
  • Cities: 200+ major cities and districts
  • Custom Areas: Define custom geographic boundaries
  • Location Accuracy: Precise to district level
  • Regional Stats: Market analysis by region

💰 Pricing & Billing Questions

How much does One2Car API cost?

Pricing Plans
PlanMonthly CostRequests/DayFeatures
Free$01,000Basic API access
Pro$9910,000Full API + historical data
EnterpriseCustomUnlimitedCustom solutions

What's included in the free plan?

Free Plan Features
  • 1,000 requests/day - Sufficient for testing and small projects
  • All API endpoints - Full access to search and vehicle data
  • Basic support - Email support for technical issues
  • Standard data - Current listings with basic fields
  • No credit card required - Start immediately

How do I upgrade my plan?

Plan Upgrade
  1. Log in to Carapis Dashboard
  2. Go to Billing section
  3. Select new plan and payment method
  4. Confirm upgrade - changes apply immediately
  5. No downtime - seamless transition between plans

Do you offer refunds?

Refund Policy
  • 30-day guarantee - Full refund if not satisfied
  • Pro-rated refunds - For unused portion of paid plans
  • No questions asked - Simple refund process
  • Contact support - Email us for refund requests

Are there any hidden fees?

Transparent Pricing
  • No setup fees - Start using immediately
  • No overage charges - Requests stop at limit
  • No data export fees - Included in plan
  • No API call fees - Pay only for plan, not usage
  • Clear billing - Monthly invoices with detailed breakdown

🏪 Market & Thailand Questions

How big is the Thai automotive market?

Market Size
  • Total Listings: 100,000+ active vehicles on One2Car
  • Monthly Transactions: 15,000+ vehicles sold
  • Market Value: 150+ billion THB annually
  • Geographic Coverage: All 77 provinces
  • Market Growth: 8.5% YoY growth rate
Popular Brands
RankBrandMarket SharePopular Models
1Toyota15.4%Camry, Corolla, Fortuner
2Honda12.9%Civic, City, CR-V
3Isuzu8.8%D-Max, MU-X
4Nissan7.2%Almera, Navara
5Mitsubishi6.8%Triton, Pajero Sport

How do prices compare across different regions?

Regional Price Comparison
RegionAvg Price (THB)Price LevelPopular Segments
Bangkok1,450,000HighPremium, Luxury
Chiang Mai980,000MediumMid-range, SUV
Phuket1,680,000HighLuxury, SUV
Pattaya1,120,000MediumMid-range, Sports
Isaan750,000LowEconomy, Pickup

What's the typical car buying process in Thailand?

Thai Car Market
  • Financing: 70% of buyers use financing
  • Down Payment: Average 20-30% of vehicle price
  • Registration: Required within 30 days of purchase
  • Insurance: Mandatory first-class insurance
  • Tax: 7% VAT + excise tax based on engine size

How reliable is One2Car as a data source?

Data Reliability
  • Market Leader: #1 automotive marketplace in Thailand
  • Established: 15+ years in operation
  • Comprehensive: Covers all vehicle types and price ranges
  • Verified: Data validated through multiple sources
  • Real-time: Continuous updates and monitoring

🔧 Troubleshooting

My API requests are failing with 401 errors

Authentication Issues

Problem: Invalid or expired API key Solutions:

  1. Check your API key format: one2car_parser_sk_...
  2. Verify key is active in dashboard
  3. Ensure proper Authorization header format
  4. Contact support if key appears valid

I'm getting rate limit errors (429)

Rate Limit Solutions

Problem: Exceeded daily or per-minute limits Solutions:

  1. Check your current usage in dashboard
  2. Implement exponential backoff in your code
  3. Upgrade to higher plan if needed
  4. Optimize requests to reduce frequency

Search results are not returning expected data

Search Optimization

Problem: No results or unexpected results Solutions:

  1. Check parameter spelling and format
  2. Use broader search terms initially
  3. Verify location names are correct
  4. Check API documentation for valid values
  5. Test with minimal parameters first

Data seems outdated or incorrect

Data Accuracy Issues

Problem: Information doesn't match current listings Solutions:

  1. Check data freshness timestamps
  2. Verify you're using latest API version
  3. Report specific discrepancies to support
  4. Use vehicle ID for most accurate data
  5. Check if listing was recently updated

How do I handle large datasets efficiently?

Performance Tips

Problem: Slow performance with large requests Solutions:

  1. Use pagination (limit parameter)
  2. Implement caching for repeated requests
  3. Use specific filters to reduce results
  4. Consider batch processing for multiple vehicles
  5. Use async/await for concurrent requests

📞 Support & Contact

How do I get technical support?

Support Channels

Can I request custom features or data?

Custom Requests
  • Enterprise Plans: Full custom development support
  • Feature Requests: Submit via support email
  • Data Customization: Available for Pro+ plans
  • Integration Support: Technical assistance included
  • Priority Support: Dedicated account manager for Enterprise

Do you provide consulting services?

Consulting Services
  • Market Analysis: Custom reports and insights
  • Integration Support: Technical implementation assistance
  • Data Strategy: Best practices and optimization
  • Training: API usage and best practices
  • Custom Development: Tailored solutions for Enterprise clients

Still have questions? Contact our support team or check our comprehensive documentation for more detailed information.