From 36e404f01f9c79d5576ce712fe18111578a78533 Mon Sep 17 00:00:00 2001 From: mygit Date: Tue, 21 Dec 2021 20:35:22 +0100 Subject: [PATCH 1/6] Update README.md --- README.md | 134 ++++-------------------------------------------------- 1 file changed, 10 insertions(+), 124 deletions(-) diff --git a/README.md b/README.md index 524690d..c26dedc 100644 --- a/README.md +++ b/README.md @@ -2,133 +2,19 @@ [![GitHub issues](https://img.shields.io/github/issues/shakee93/fonoapi.svg)](https://github.com/shakee93/fonoapi/issues) [![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/shakee93/fonoapi/master/LICENSE) -# API IS DOWN DUE TO HEAVY LOAD ON THE SERVER -## sorry for the inconvienience, it will be back up soon ! -## Thanks. +# Introducing TechSpecs API -# FonoApi - Mobile Device Description Api +TechSpecs API provides the easiest way to get instant access to the official technical specifications of any consumer electronics product including smartphones, tablets, smartwatches. 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. Plus, our service is completely free to use! -* Database Updated : 21st September 2016 -* Database Updated (New Devices Added) : 27th November 2016 -* Database Updated (Old Device Data Updated) : 27th November 2016 -* Database Updated (New Devices Added) : 4th January 2017 -* Database Updated (Old Device Data Updated) : 4th January 2017 -* Database Updated (New Devices Added) : 6th February 2017 -* Database Updated (Old Device Data Updated) : 6th February 2017 -* Database Updated (New Devices Added) : 3rd March 2017 -* Database Updated (Old Device Data Updated) : 3rd March 2017 -* Database Updated (New Devices Added) : 5th April 2017 -* Database Updated (Old Device Data Updated) : 5th April 2017 -* Database Updated : 8th May 2017 -* Database Updated : 10th July 2017 -* Database Updated : 10th August 2017 -* Database Updated : 15th September 2017 -* Database Updated : 15th October 2017 -* Database Updated : 17th November 2017 -* Database Updated : 12th December 2017 -* Database Updated : 22th January 2018 -* Database Updated : 23th February 2018 -* Database Updated : 30th April 2018 -* Database Updated : 28th August 2018 -* Database Updated : 29th MARCH 2019 +## API Live Demo +Visit https://techspecs.readme.io to try the API endpoints. -https://fonoapi.freshpixl.com/ +## Search Engine Live Demo +Visit https://techspecs.io to try the frontend search engine +## Read the Docs +Visit https://techspecs.readme.io to read the documentation. -This is an API which can provide mobile device descriptions such as model, brand, CPU, GPU, dimensions, release date etc. It might be helpful if you are building a website like GSMAera, Phonearena or something similar. This API contains a database of a mobile device descriptions of Android, iOS and some old phones too.. :D -This is the PHP class to communicate with the API. It would be nice if someone can help with other languages though. ;) +## Get API Key +Visit https://developer.dashboard.techspecs.io/signup to signup and get your API key. Registration is free, no credit card required. -### Api - -API URL: https://fonoapi.freshpixl.com/v1/ - -###### Method `getdevice` (https://fonoapi.freshpixl.com/v1/getdevice) - -Available options - - brand - - Pass the Mobile Device Brand (example : "samsung", "htc") - - device* - - Pass nearly relevent mobile device name (example : "i9305", "A8") - This might result multiple results at a time. - - position - - When a set of results is returned you can get a specific device by passing the position of your device on the result set. count starts from 0 - - token* - - You will need a token to access the Api. no registration, nothing, just grab the key. - You can get it here https://fonoapi.freshpixl.com/token/generate - -###### Method `getlatest` (https://fonoapi.freshpixl.com/v1/getlatest) - -Available options - - brand - - It gives the latest you can filter the brand (example : "samsung", "htc") - - limit - - Limit the result count (Max 100) - - token* - - You will need a token to access the Api. no registration, nothing, just grab the key.
- You can get it here https://fonoapi.freshpixl.com/token/generate - -Note: the API will return only 100 devices per request - ------- - -###### PHP Demo - -Install the package in your PHP project: - -```bash -$ composer require shakee93/fonoapi -``` - -``` -DeviceName)) echo "Device : ". $mobile->DeviceName . "
"; - if (!empty($mobile->Brand)) echo "Brand : ". $mobile->Brand . "
"; - if (!empty($mobile->cpu)) echo "Cpu : " . $mobile->cpu . "
"; - if (!empty($mobile->status)) echo "Status : " . $mobile->status . "
"; - if (!empty($mobile->dimensions)) echo "Dimensions : " . $mobile->dimensions . "
"; - if (!empty($mobile->_4g_bands)) echo "4g : " .$mobile->_4g_bands . "
"; - } -} catch (Exception $e) { - echo "ERROR : " . $e->getMessage(); -} -``` ------- - -###### Curl Example - -```bash -curl https://fonoapi.freshpixl.com/v1/getdevice -XPOST -H 'Accept: application/json' -d 'token=YOUR_TOKEN_HERE&limit=5&device=A8' -``` - -###### Python - -Library is here : https://github.com/jesusperiago/fonoapi - -###### jQuery - -Library is here : https://github.com/shakee93/fonoapi/tree/master/fonoapi-js - -###### Nodejs - -Library is here : https://github.com/mtrung/fonoapi/tree/master/fonoapi-nodejs -Package is here : https://www.npmjs.com/package/fonoapi-nodejs - -###### Java - Library is here : https://github.com/aafanasev/fonoapi-client - ------- - -##### Result Set Structure - -Check here : https://github.com/shakee93/fonoapi/blob/master/resultset.md From df08b0d2190903efdde57df8d7b3ef6199e08ef4 Mon Sep 17 00:00:00 2001 From: mygit Date: Wed, 22 Dec 2021 13:37:02 +0100 Subject: [PATCH 2/6] Update README.md --- README.md | 35 +++++++++++++++++++++++++++++------ 1 file changed, 29 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index c26dedc..2e74c94 100644 --- a/README.md +++ b/README.md @@ -1,16 +1,25 @@ [![GitHub stars](https://img.shields.io/github/stars/shakee93/fonoapi.svg)](https://github.com/shakee93/fonoapi/stargazers) -[![GitHub issues](https://img.shields.io/github/issues/shakee93/fonoapi.svg)](https://github.com/shakee93/fonoapi/issues) [![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/shakee93/fonoapi/master/LICENSE) -# Introducing TechSpecs API +# TechSpecs API -TechSpecs API provides the easiest way to get instant access to the official technical specifications of any consumer electronics product including smartphones, tablets, smartwatches. 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. Plus, our service is completely free to use! +TechSpecs API provides the easiest way to get instant access to the official technical specifications of any consumer electronics product including smartphones, tablets, smartwatches. 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. ## API Live Demo -Visit https://techspecs.readme.io to try the API endpoints. +Visit https://techspecs.readme.io to try the endpoints. -## Search Engine Live Demo -Visit https://techspecs.io to try the frontend search engine +![alt text](https://i.imgur.com/VJLZSE3.png) + +## Available Data Points +* Specifications: Dimension, Weight, Display, Camera, Battery, CPU, GPU, and more… +* Images: Front view, Back view +* Prices: Available Soon + +## Available endpoints +* POST: Search for a product +* GET: Detailed specifications of a product +* GET: All Categories +* GET: All Brands ## Read the Docs Visit https://techspecs.readme.io to read the documentation. @@ -18,3 +27,17 @@ Visit https://techspecs.readme.io to read the documentation. ## Get API Key Visit https://developer.dashboard.techspecs.io/signup to signup and get your API key. Registration is free, no credit card required. + +## Search Engine Live Demo +Visit https://techspecs.io to try the frontend search engine + +![alt text](https://i.ibb.co/Sx0gk2V/1-011-Homepage-Typing-Selected-2x.png) + +![alt text](https://i.imgur.com/siSmSIS.png) + +## Feedback +Visit https://feedback.techspecs.io/ to share your feedback and/or feature requests. + +## Support +Email: support@techspecs.io + From 61aa152dd8f36097b7db20c13b98ea271a0ff848 Mon Sep 17 00:00:00 2001 From: mygit Date: Mon, 27 Dec 2021 09:56:42 +0100 Subject: [PATCH 3/6] Update README.md --- README.md | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 2e74c94..920cfa7 100644 --- a/README.md +++ b/README.md @@ -3,16 +3,18 @@ # TechSpecs API -TechSpecs API provides the easiest way to get instant access to the official technical specifications of any consumer electronics product including smartphones, tablets, smartwatches. 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. +TechSpecs API provides the easiest way to get instant access to the official technical specifications of any consumer electronics product including **smartphones, tablets, smartwatches**. -## API Live Demo +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. + +## API Demo Visit https://techspecs.readme.io to try the endpoints. ![alt text](https://i.imgur.com/VJLZSE3.png) ## Available Data Points -* Specifications: Dimension, Weight, Display, Camera, Battery, CPU, GPU, and more… -* Images: Front view, Back view +* Specifications: **Dimension, Weight, Display, Camera, Battery, CPU, GPU, and more…** +* Images: **Front view, Back view** * Prices: Available Soon ## Available endpoints @@ -28,7 +30,7 @@ Visit https://techspecs.readme.io to read the documentation. Visit https://developer.dashboard.techspecs.io/signup to signup and get your API key. Registration is free, no credit card required. -## Search Engine Live Demo +## Search Engine Demo Visit https://techspecs.io to try the frontend search engine ![alt text](https://i.ibb.co/Sx0gk2V/1-011-Homepage-Typing-Selected-2x.png) From 874262e251392d843b7123eafd8f24a86d911507 Mon Sep 17 00:00:00 2001 From: mygit Date: Mon, 27 Dec 2021 10:05:42 +0100 Subject: [PATCH 4/6] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 920cfa7..6058cce 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ Visit https://techspecs.readme.io to try the endpoints. ![alt text](https://i.imgur.com/VJLZSE3.png) ## Available Data Points -* Specifications: **Dimension, Weight, Display, Camera, Battery, CPU, GPU, and more…** +* Specifications: **Dimension, Weight, Display, Camera, Battery, CPU, GPU, and over 200 more…** * Images: **Front view, Back view** * Prices: Available Soon From ce2b8301364e29f32169ef016daefb74161b4b01 Mon Sep 17 00:00:00 2001 From: mygit Date: Mon, 27 Dec 2021 10:07:29 +0100 Subject: [PATCH 5/6] Update README.md --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6058cce..1a1f378 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,10 @@ # TechSpecs API -TechSpecs API provides the easiest way to get instant access to the official technical specifications of any consumer electronics product including **smartphones, tablets, smartwatches**. +TechSpecs API provides the easiest way to get instant access to the official technical specifications of any consumer electronics product including; +* **smartphones +* **tablets +* **smartwatches** 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. From 3d780f06a4bbf9c8a9fac8a3a788968c7f56522a Mon Sep 17 00:00:00 2001 From: mygit Date: Mon, 27 Dec 2021 13:15:48 +0100 Subject: [PATCH 6/6] Update README.md --- README.md | 40 ++++++++++++++++++++++------------------ 1 file changed, 22 insertions(+), 18 deletions(-) diff --git a/README.md b/README.md index 1a1f378..74921c8 100644 --- a/README.md +++ b/README.md @@ -1,38 +1,42 @@ [![GitHub stars](https://img.shields.io/github/stars/shakee93/fonoapi.svg)](https://github.com/shakee93/fonoapi/stargazers) [![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/shakee93/fonoapi/master/LICENSE) -# TechSpecs API +# Getting Started With TechSpecs API -TechSpecs API provides the easiest way to get instant access to the official technical specifications of any consumer electronics product including; -* **smartphones -* **tablets -* **smartwatches** +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. -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 -## API Demo -Visit https://techspecs.readme.io to try the endpoints. - -![alt text](https://i.imgur.com/VJLZSE3.png) +**Available Endpoints;** +* POST: Search for a product +* GET: Detailed specifications of a product +* GET: All Categories +* GET: All Brands -## Available Data Points +**Available Datapoints;** * Specifications: **Dimension, Weight, Display, Camera, Battery, CPU, GPU, and over 200 more…** * Images: **Front view, Back view** * Prices: Available Soon -## Available endpoints -* POST: Search for a product -* GET: Detailed specifications of a product -* GET: All Categories -* GET: All Brands +## Try It +Visit https://techspecs.readme.io to try the endpoints. + +![alt text](https://i.imgur.com/VJLZSE3.png) + -## Read the Docs -Visit https://techspecs.readme.io to read the documentation. ## Get API Key Visit https://developer.dashboard.techspecs.io/signup to signup and get your API key. Registration is free, no credit card required. + +## Read the Docs +Visit https://techspecs.readme.io to read the documentation. + + ## Search Engine Demo Visit https://techspecs.io to try the frontend search engine