API Reference for Goo-net.com Parser
Complete technical documentation for accessing Goo-net.com automotive data through our reliable API.
- Base URL:
https://api.carapis.com/v1/parsers/goo-net
- Authentication: Bearer token required
- Rate Limit: 1000 requests per hour
- Response Format: JSON
- Data Freshness: Real-time (15-minute updates)
Authenticationโ
All API requests require authentication using a Bearer token in the Authorization header.
Authorization: Bearer goo_net_parser_sk_1234567890abcdef1234567890abcdef
Your Goo-net.com parser API key follows this format: goo_net_parser_sk_
followed by a 32-character hexadecimal string.
Base URL and Headersโ
Base URLโ
https://api.carapis.com/v1/parsers/goo-net
Required Headersโ
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json
Accept: application/json
Endpointsโ
Search Vehiclesโ
Search for vehicles on Goo-net.com with various filters and parameters.
Endpoint: GET /search
Parametersโ
Parameter | Type | Required | Description | Example |
---|---|---|---|---|
keyword | string | No | Search keyword (brand, model, etc.) | "ใใจใฟ ใซใญใผใฉ" |
brand | string | No | Vehicle brand | "ใใจใฟ" |
model | string | No | Vehicle model | "ใซใญใผใฉ" |
min_price | integer | No | Minimum price in JPY | 2000000 |
max_price | integer | No | Maximum price in JPY | 3000000 |
min_year | integer | No | Minimum year | 2019 |
max_year | integer | No | Maximum year | 2023 |
min_mileage | integer | No | Minimum mileage in km | 10000 |
max_mileage | integer | No | Maximum mileage in km | 50000 |
fuel_type | string | No | Fuel type | "gasoline" |
transmission | string | No | Transmission type | "automatic" |
location | string | No | City or prefecture | "ๆฑไบฌ" |
seller_type | string | No | Seller type | "dealer" |
sort | string | No | Sort order | "newest" |
page | integer | No | Page number (default: 1) | 1 |
limit | integer | No | Results per page (max: 100) | 20 |
Sort Optionsโ
newest
- Newest listings firstoldest
- Oldest listings firstprice_low
- Lowest price firstprice_high
- Highest price firstmileage_low
- Lowest mileage firstmileage_high
- Highest mileage first
Example Requestโ
curl -X GET "https://api.carapis.com/v1/parsers/goo-net/search?keyword=ใใจใฟ&min_price=2000000&max_price=3000000&limit=10" \
-H "Authorization: Bearer goo_net_parser_sk_1234567890abcdef1234567890abcdef" \
-H "Content-Type: application/json"
Example Responseโ
{
"success": true,
"data": [
{
"id": "goo_net_123456789",
"title": "ใใจใฟ ใซใญใผใฉ ใขใฏใทใช 2020",
"price": "2800000",
"currency": "JPY",
"year": "2020",
"month": "6",
"mileage": "35000",
"mileage_unit": "km",
"fuel_type": "gasoline",
"transmission": "automatic",
"engine_size": "1.8",
"engine_power": "140",
"color": "white",
"location": "ๆฑไบฌ",
"seller_type": "dealer",
"url": "https://www.goo-net.com/vehicle/123456789",
"image_url": "https://img.goo-net.com/vehicle/123456789.jpg",
"created_at": "2024-01-15T10:30:00Z"
}
],
"pagination": {
"total": 1250,
"page": 1,
"limit": 10,
"pages": 125
}
}
Get Vehicle Detailsโ
Retrieve detailed information about a specific vehicle.
Endpoint: GET /vehicle/\{vehicle_id\}
Parametersโ
Parameter | Type | Required | Description |
---|---|---|---|
vehicle_id | string | Yes | Vehicle ID from search results |
Example Requestโ
curl -X GET "https://api.carapis.com/v1/parsers/goo-net/vehicle/goo_net_123456789" \
-H "Authorization: Bearer goo_net_parser_sk_1234567890abcdef1234567890abcdef" \
-H "Content-Type: application/json"
Example Responseโ
{
"success": true,
"data": {
"id": "goo_net_123456789",
"title": "ใใจใฟ ใซใญใผใฉ ใขใฏใทใช 2020",
"price": "2800000",
"currency": "JPY",
"year": "2020",
"month": "6",
"mileage": "35000",
"mileage_unit": "km",
"fuel_type": "gasoline",
"transmission": "automatic",
"engine_size": "1.8",
"engine_power": "140",
"color": "white",
"location": "ๆฑไบฌ",
"seller": {
"name": "ใใจใฟๆญฃ่ฆใใฃใผใฉใผ",
"type": "dealer",
"rating": "4.8",
"response_time": "2 hours",
"total_sales": "150"
},
"description": "็พๅใฎใใจใฟ ใซใญใผใฉ ใขใฏใทใชใงใใๅฎๆ็นๆคๆธใฟใไบๆ
ๆญดใชใใ",
"features": ["ใใใฒใผใทใงใณ", "ใฌใถใผใทใผใ", "LEDใใใใฉใคใ", "ใใผใญใณใฐใปใณใตใผ", "ใตใณใซใผใ", "ใใผใใใใทใผใ"],
"images": ["https://img.goo-net.com/vehicle/123456789_1.jpg", "https://img.goo-net.com/vehicle/123456789_2.jpg", "https://img.goo-net.com/vehicle/123456789_3.jpg"],
"url": "https://www.goo-net.com/vehicle/123456789",
"created_at": "2024-01-15T10:30:00Z",
"updated_at": "2024-01-15T10:30:00Z"
}
}
Get Brandsโ
Retrieve list of available vehicle brands on Goo-net.com.
Endpoint: GET /brands
Example Requestโ
curl -X GET "https://api.carapis.com/v1/parsers/goo-net/brands" \
-H "Authorization: Bearer goo_net_parser_sk_1234567890abcdef1234567890abcdef" \
-H "Content-Type: application/json"
Example Responseโ
{
"success": true,
"data": [
{
"brand": "ใใจใฟ",
"count": 125000,
"avg_price": "2500000"
},
{
"brand": "ใใณใ",
"count": 98000,
"avg_price": "2200000"
},
{
"brand": "ๆฅ็ฃ",
"count": 85000,
"avg_price": "2000000"
}
]
}
Get Modelsโ
Retrieve list of models for a specific brand.
Endpoint: GET /models/\{brand\}
Parametersโ
Parameter | Type | Required | Description |
---|---|---|---|
brand | string | Yes | Brand name |
Example Requestโ
curl -X GET "https://api.carapis.com/v1/parsers/goo-net/models/ใใจใฟ" \
-H "Authorization: Bearer goo_net_parser_sk_1234567890abcdef1234567890abcdef" \
-H "Content-Type: application/json"
Example Responseโ
{
"success": true,
"data": [
{
"model": "ใซใญใผใฉ",
"count": 45000,
"avg_price": "1800000"
},
{
"model": "ใใชใฆใน",
"count": 32000,
"avg_price": "2200000"
},
{
"model": "RAV4",
"count": 28000,
"avg_price": "2800000"
}
]
}
Get Statisticsโ
Retrieve market statistics and analytics.
Endpoint: GET /statistics
Parametersโ
Parameter | Type | Required | Description |
---|---|---|---|
brand | string | No | Filter by brand |
location | string | No | Filter by location |
period | string | No | Time period (day, week, month) |
Example Requestโ
curl -X GET "https://api.carapis.com/v1/parsers/goo-net/statistics?period=month" \
-H "Authorization: Bearer goo_net_parser_sk_1234567890abcdef1234567890abcdef" \
-H "Content-Type: application/json"
Example Responseโ
{
"success": true,
"data": {
"total_listings": 800000,
"new_listings_today": 8500,
"avg_price": "2500000",
"price_trend": "+5.2%",
"top_brands": [
{
"brand": "ใใจใฟ",
"count": 125000,
"market_share": "15.6%"
},
{
"brand": "ใใณใ",
"count": 98000,
"market_share": "12.3%"
}
],
"top_locations": [
{
"location": "ๆฑไบฌ",
"count": 200000,
"market_share": "25.0%"
},
{
"location": "ๅคง้ช",
"count": 144000,
"market_share": "18.0%"
}
]
}
}
Response Formatโ
Success Responseโ
All successful API responses follow this format:
{
"success": true,
"data": {
// Response data here
},
"pagination": {
// Pagination info (if applicable)
}
}
Error Responseโ
Error responses follow this format:
{
"success": false,
"error": {
"code": "ERROR_CODE",
"message": "Human-readable error message",
"details": "Additional error details"
}
}
Error Codesโ
Code | HTTP Status | Description |
---|---|---|
INVALID_API_KEY | 401 | Invalid or missing API key |
RATE_LIMIT_EXCEEDED | 429 | Rate limit exceeded |
INVALID_PARAMETERS | 400 | Invalid request parameters |
VEHICLE_NOT_FOUND | 404 | Vehicle not found |
INTERNAL_ERROR | 500 | Internal server error |
SERVICE_UNAVAILABLE | 503 | Service temporarily unavailable |
Rate Limitingโ
- Standard Plan: 1,000 requests per hour
- Professional Plan: 10,000 requests per hour
- Enterprise Plan: 100,000 requests per hour
Rate limit headers are included in responses:
X-RateLimit-Limit: 1000
X-RateLimit-Remaining: 950
X-RateLimit-Reset: 1642233600
Code Examplesโ
Pythonโ
import requests
import json
class GooNetAPI:
def __init__(self, api_key):
self.api_key = api_key
self.base_url = "https://api.carapis.com/v1/parsers/goo-net"
self.headers = {
"Authorization": f"Bearer \{api_key\}",
"Content-Type": "application/json"
}
def search_vehicles(self, **params):
response = requests.get(f"{self.base_url}/search",
headers=self.headers, params=params)
return response.json()
def get_vehicle_details(self, vehicle_id):
response = requests.get(f"{self.base_url}/vehicle/\{vehicle_id\}",
headers=self.headers)
return response.json()
def get_brands(self):
response = requests.get(f"{self.base_url}/brands",
headers=self.headers)
return response.json()
# Usage
api = GooNetAPI("goo_net_parser_sk_1234567890abcdef1234567890abcdef")
vehicles = api.search_vehicles(keyword="ใใจใฟ", limit=10)
JavaScriptโ
class GooNetAPI {
constructor(apiKey) {
this.apiKey = apiKey;
this.baseURL = 'https://api.carapis.com/v1/parsers/goo-net';
this.headers = {
Authorization: `Bearer $\{apiKey\}`,
'Content-Type': 'application/json',
};
}
async searchVehicles(params = {}) {
const queryString = new URLSearchParams(params).toString();
const response = await fetch(`${this.baseURL}/search?$\{queryString\}`, {
headers: this.headers,
});
return response.json();
}
async getVehicleDetails(vehicleId) {
const response = await fetch(`${this.baseURL}/vehicle/$\{vehicleId\}`, {
headers: this.headers,
});
return response.json();
}
async getBrands() {
const response = await fetch(`${this.baseURL}/brands`, {
headers: this.headers,
});
return response.json();
}
}
// Usage
const api = new GooNetAPI('goo_net_parser_sk_1234567890abcdef1234567890abcdef');
api.searchVehicles({ keyword: 'ใใจใฟ', limit: 10 }).then((data) => console.log(data));
Best Practicesโ
- Use pagination for large result sets
- Implement caching for frequently accessed data
- Handle rate limits with exponential backoff
- Validate responses before processing
- Use HTTPS for all requests
- Check response status before processing data
- Implement retry logic for transient errors
- Log errors for debugging
- Handle rate limits gracefully
- Validate API key before making requests
Supportโ
- API Documentation - Complete technical docs
- Support - Technical assistance
- Community - Developer community
- Status Page - Service status
Start integrating with Goo-net.com automotive data today and unlock the Japanese automotive marketplace for your applications.