{"id":13602217,"url":"https://github.com/techspecs/techspecs-api","last_synced_at":"2026-01-27T14:15:33.581Z","repository":{"id":43353933,"uuid":"446094184","full_name":"techspecs/techspecs-api","owner":"techspecs","description":"Get the standardized technical specifications of the world's smartphones, tablets, smartwatches and more.","archived":false,"fork":false,"pushed_at":"2023-03-08T17:40:09.000Z","size":11,"stargazers_count":16,"open_issues_count":1,"forks_count":4,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-11-07T05:38:47.612Z","etag":null,"topics":["api","consumer-electronics","documentation","laptops","mobile","mobile-description-api","phone-specification","phonespecsapi","smartphone","smartwatch","specifications","specifications-api","tablet","technical-specifications","techspecs","tv"],"latest_commit_sha":null,"homepage":"https://techspecs.io","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/techspecs.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-01-09T13:20:04.000Z","updated_at":"2024-05-25T17:36:42.000Z","dependencies_parsed_at":"2024-11-07T05:33:14.875Z","dependency_job_id":"df65639d-08e7-4f50-bc8d-15656ec29a03","html_url":"https://github.com/techspecs/techspecs-api","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/techspecs%2Ftechspecs-api","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/techspecs%2Ftechspecs-api/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/techspecs%2Ftechspecs-api/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/techspecs%2Ftechspecs-api/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/techspecs","download_url":"https://codeload.github.com/techspecs/techspecs-api/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248361573,"owners_count":21090934,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["api","consumer-electronics","documentation","laptops","mobile","mobile-description-api","phone-specification","phonespecsapi","smartphone","smartwatch","specifications","specifications-api","tablet","technical-specifications","techspecs","tv"],"created_at":"2024-08-01T18:01:16.754Z","updated_at":"2026-01-27T14:15:33.558Z","avatar_url":"https://github.com/techspecs.png","language":null,"funding_links":[],"categories":["api"],"sub_categories":[],"readme":"[![GitHub stars](https://img.shields.io/github/stars/techspecs/api.svg)](https://github.com/techspecs/api/stargazers)\n[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/shakee93/fonoapi/master/LICENSE)\n\n# Getting Started With TechSpecs API\n\nTechSpecs 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. \n\n**Available categories;**\n* Smartphones\n* Tablets\n* Smartwatches\n* Laptops\n\n**Available Endpoints;**\n* Product Search\n* Product Details\n* Get All Categories\n* Get All Brands\n* Get All Products\n\n**Available Datapoints;**\n* Specifications: **Dimension, Weight, Display, Camera, Battery, CPU, GPU, and over 200 more…**\n* Images: **Front view, Back view**\n* Launch Prices: Available for iOS devices\n\n\n## Prerequisite: Get your TechSpecs API Key \u0026 URL\nVisit https://techspecs.io to signup and get your API key. Registration is free, no credit card required.\n\n## 1. Product Search\n### Python Example\n\n```python\nimport requests\n\nurl = \"https://api.techspecs.io/v4/product/search?query=iPhone%2014\"\n\nheaders = {\n    \"accept\": \"application/json\",\n    \"Authorization\": \"Bearer techspecs_api_key\",\n    \"content-type\": \"application/json\"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.text)\n```\n\n### Node Example \n```node\nconst sdk = require('api')('@techspecs/v3.0#5dlse1lclezifmcf');\n\nsdk.searchProducts({query: 'iPhone%2014', authorization: 'Bearer techspecs_api_key'})\n  .then(({ data }) =\u003e console.log(data))\n  .catch(err =\u003e console.error(err));\n```\n### PHP Example\n```php\n\u003c?php\nrequire_once('vendor/autoload.php');\n\n$client = new \\GuzzleHttp\\Client();\n\n$response = $client-\u003erequest('POST', 'https://api.techspecs.io/v4/product/search?query=iPhone%2014', [\n  'headers' =\u003e [\n    'Authorization' =\u003e 'Bearer techspecs_api_key',\n    'accept' =\u003e 'application/json',\n    'content-type' =\u003e 'application/json',\n  ],\n]);\n\necho $response-\u003egetBody();\n```\n## Docs and code samples\nVisit https://techspecs.readme.io to read the documentation. \n\n## Feedback\nVisit https://feedback.techspecs.io/ to share your feedback and/or feature requests.\n\n## Support\nEmail: support@techspecs.io\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftechspecs%2Ftechspecs-api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftechspecs%2Ftechspecs-api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftechspecs%2Ftechspecs-api/lists"}