Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/techspecs/techspecs-api
Get the standardized technical specifications of the world's smartphones, tablets, smartwatches and more.
https://github.com/techspecs/techspecs-api
api consumer-electronics documentation laptops mobile mobile-description-api phone-specification phonespecsapi smartphone smartwatch specifications specifications-api tablet technical-specifications techspecs tv
Last synced: 7 days ago
JSON representation
Get the standardized technical specifications of the world's smartphones, tablets, smartwatches and more.
- Host: GitHub
- URL: https://github.com/techspecs/techspecs-api
- Owner: techspecs
- License: mit
- Created: 2022-01-09T13:20:04.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-03-08T17:40:09.000Z (over 1 year ago)
- Last Synced: 2024-08-02T18:42:11.874Z (3 months ago)
- Topics: api, consumer-electronics, documentation, laptops, mobile, mobile-description-api, phone-specification, phonespecsapi, smartphone, smartwatch, specifications, specifications-api, tablet, technical-specifications, techspecs, tv
- Homepage: https://techspecs.io
- Size: 10.7 KB
- Stars: 16
- Watchers: 1
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![GitHub stars](https://img.shields.io/github/stars/techspecs/api.svg)](https://github.com/techspecs/api/stargazers)
[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/shakee93/fonoapi/master/LICENSE)# Getting Started With TechSpecs API
TechSpecs API provides the easiest way to get instant access to the official technical specifications of the worlds' consumer electronics. Our database is the largest and most up-to-date in the world so you can be sure you're always getting the latest information.
**Available categories;**
* Smartphones
* Tablets
* Smartwatches
* Laptops**Available Endpoints;**
* Product Search
* Product Details
* Get All Categories
* Get All Brands
* Get All Products**Available Datapoints;**
* Specifications: **Dimension, Weight, Display, Camera, Battery, CPU, GPU, and over 200 more…**
* Images: **Front view, Back view**
* Launch Prices: Available for iOS devices## Prerequisite: Get your TechSpecs API Key & URL
Visit https://techspecs.io to signup and get your API key. Registration is free, no credit card required.## 1. Product Search
### Python Example```python
import requestsurl = "https://api.techspecs.io/v4/product/search?query=iPhone%2014"
headers = {
"accept": "application/json",
"Authorization": "Bearer techspecs_api_key",
"content-type": "application/json"
}response = requests.post(url, headers=headers)
print(response.text)
```### Node Example
```node
const sdk = require('api')('@techspecs/v3.0#5dlse1lclezifmcf');sdk.searchProducts({query: 'iPhone%2014', authorization: 'Bearer techspecs_api_key'})
.then(({ data }) => console.log(data))
.catch(err => console.error(err));
```
### PHP Example
```php
request('POST', 'https://api.techspecs.io/v4/product/search?query=iPhone%2014', [
'headers' => [
'Authorization' => 'Bearer techspecs_api_key',
'accept' => 'application/json',
'content-type' => 'application/json',
],
]);echo $response->getBody();
```
## Docs and code samples
Visit https://techspecs.readme.io to read the documentation.## Feedback
Visit https://feedback.techspecs.io/ to share your feedback and/or feature requests.## Support
Email: [email protected]