Comprehensive Transport Data Collection
Budget: $10 – $30 USD
Task: Collect Transport Data from a Website
I need data collected from a specific website that lists cars, motorcycles, and other transports. The data should include all brands and their respective makes and, for cars, include body type categories (e.g., SUVs, sedans, crossovers, etc.). The final output should be a JSON file with the following structure:
{
"cars": [
{
"brand": "BMW",
"makes": [
{
"name": "i7",
"body_type": "sedan"
},
{
"name": "X5",
"body_type": "SUV"
}
]
},
{
"brand": "Audi",
"makes": [
{
"name": "A3",
"body_type": "sedan"
},
{
"name": "Q7",
"body_type": "SUV"
}
]
}
],
"motorcycles": [
{
"brand": "Harley Davidson",
"makes": ["Street 750", "Iron 883"]
},
{
"brand": "Yamaha",
"makes": ["MT-07", "R1"]
}
]
}
Requirements:
1. Brands: Collect all brands for each type of transport (cars, motorcycles, etc.).
2. Makes/Models: For each brand, collect the respective makes (models) associated with that brand.
3. Body Type for Cars: For each car make, categorize it by body type (e.g., sedan, SUV, crossover, etc.).
4. Categories: The data should be divided into categories: cars (with body type information), motorcycles, and any other transport categories found on the website.
Deliverable:
• A single JSON file containing all brands, makes, and for cars, the body type, organized into categories.
• The file should follow the exact structure shown above.
Website:
• The website URL and instructions on how to access the data will be provided upon accepting the task.
I need data collected from a specific website that lists cars, motorcycles, and other transports. The data should include all brands and their respective makes and, for cars, include body type categories (e.g., SUVs, sedans, crossovers, etc.). The final output should be a JSON file with the following structure:
{
"cars": [
{
"brand": "BMW",
"makes": [
{
"name": "i7",
"body_type": "sedan"
},
{
"name": "X5",
"body_type": "SUV"
}
]
},
{
"brand": "Audi",
"makes": [
{
"name": "A3",
"body_type": "sedan"
},
{
"name": "Q7",
"body_type": "SUV"
}
]
}
],
"motorcycles": [
{
"brand": "Harley Davidson",
"makes": ["Street 750", "Iron 883"]
},
{
"brand": "Yamaha",
"makes": ["MT-07", "R1"]
}
]
}
Requirements:
1. Brands: Collect all brands for each type of transport (cars, motorcycles, etc.).
2. Makes/Models: For each brand, collect the respective makes (models) associated with that brand.
3. Body Type for Cars: For each car make, categorize it by body type (e.g., sedan, SUV, crossover, etc.).
4. Categories: The data should be divided into categories: cars (with body type information), motorcycles, and any other transport categories found on the website.
Deliverable:
• A single JSON file containing all brands, makes, and for cars, the body type, organized into categories.
• The file should follow the exact structure shown above.
Website:
• The website URL and instructions on how to access the data will be provided upon accepting the task.