{
"name": "Apple MacBook Pro",
"info": "2022 - Apple M1 Pro...",
"prices": [
{
"price": 2179,
"currency": "EUR",
"url": "https://..."
}
]
},
{
"name": "Microsoft Surface 4",
"info": "2022 - Intel® Core™ i5 - i5-1145G7...",
"prices": [
{
"price": 1359.94,
"currency": "EUR",
"url": "https://..."
}
]
}
How it works
Our API is designed to be user-friendly and easy to integrate, making it the perfect solution for businesses looking to showcase their products or individuals looking to build custom applications
# GET details of a smartphone
curl "http://api.device-api.io/api/smartphones/25638"
# GET all laptops with 16GB RAM and 4 CPU cores
curl "http://api.device-api.io/api/laptops?filters[$and][0][memory_ram__gb][$eq]=16&filters[$and][1][cpu_number_of_cores][$eq]=4"
What makes us different
Why you should choose for device-specs.io
Our own data
Not connecting with any third party API and serving you our own data, results in reliable data and fast responses.
Prices
Get multiple prices in various currencies from sources all around the world.
Daily updates
New products and prices are added and updated several times a day.
Unique REST API
With our unique RESTful API endpoints, you can find and filter any device
Product images
Use our product images carefree as they are open for public and there to stay.
Support
Need some help implementing our API? We are here to help you out!
Formatted JSON structure
Every product has it own defined structure with specific fields for the corresponding category
{
"name": "Apple MacBook Pro",
"data": {
"cpu": {
// get data you can do something with
"clock_speed__ghz": 3.6,
"generation": "4th generation",
"implementation": "Apple M1 Pro",
"max_clock_speed__ghz": 3.6,
"number_of_cores": 8,
"type": "Apple M1 Pro",
...
},
"audio": {
"has_speakers": true,
"technology": "Dolby Atmos",
...
},
...
},
"images": [{...}],
"prices": [{...}],
...
}