diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 9ea9fb1..0000000 --- a/.gitignore +++ /dev/null @@ -1,45 +0,0 @@ -data/ -data -data_0830/ -data*.zip -*.zip -*io.txt -error.txt -miss*.txt -output.txt -token_count_in.txt -token_count_out.txt -*local.sh -*.DS_store -openchat*/ -toolllama*/ -ws/ -.history/ -reproduction_data*/ -output/ -*result/ -result*/ -__MACOSX/ -api_test_results_with_docs.json -customized_api_test_results_with_docs.json -model_list.txt -run.bash -tool_data* -api_test_results* -api_details.json -api_details* -category_tool_details* -config.py -*dy.py -*dy.json -OAI_CONFIG_LIST -repos/ -rapidapi_key_list.json -openai_utils_dy.py -.chroma/ - -*.pyc -**/__pycache__ -.vscode/ -.cache/42/ -retrieval_model/ diff --git a/README.md b/README.md index 9c02b84..14d5aae 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@ # AnyTool ![Static Badge](https://img.shields.io/badge/anytool-blue) - + This is the implementation of the paper [AnyTool: Self-Reflective, Hierarchical Agents for Large-Scale API Calls](https://arxiv.org/abs/2402.04253) -![Figure](https://media.discordapp.net/attachments/1202909094470492163/1202909161755648010/image.png?ex=65d865f5&is=65c5f0f5&hm=a399dda2c4b1c6caf17d3a0d29bc7dc9c504012ba7a4cc856283ce9dc9a3ebd5&=&format=webp&quality=lossless&width=781&height=601) +![Figure](./assets/anytool.png) # 🔧 Installation ## ✅ Dependencies @@ -14,6 +14,10 @@ Require Python 3.9+ pip install -r requirements.txt ``` +# OpenAI GPT API config +Fill your and toolbench key into the config.py (see config_example.py). + + # 🔆 Data Preparation **ToolBench** @@ -23,30 +27,30 @@ Refer to [ToolBench](https://github.com/OpenBMB/ToolBench). You should prepare the ToolBench data first. Make sure you have the directory of data/toolenv/tools ``` -python extract_api_details.py -python extract_category_tool_details.py -python extract_tool_database.py +python scripts/extract_api_details.py +python scripts/extract_category_tool_details.py +python scripts/extract_tool_database.py ``` **AnyToolBench** Generation script ``` -python data_generation_by_gpt4.py +python scripts/data_generation_by_gpt4.py ``` -We provide sample data in anytoolbench.json file. +We provide sample data in [anytoolbench.json]() file. # 🚗 Run AnyTool -Fill your OpenAI config and toolbench key into the config.py (see config_example.py). +Fill your OpenAI GPT API config and toolbench key into the config.py (see config_example.py). -Run ToolBench +Experiment on ToolBench ``` python anytool.py --output_dir result/test_instruction/G1_instruction --query_path data/test_instruction/G1_instruction.json --max_api_number 64 ``` -Run AnyToolBench +Experiment on AnyToolBench ``` python anytool.py --output_dir result/anytoolbench --query_path anytoolbench.json -max_api_number 64 ``` diff --git a/assets/anytool.png b/assets/anytool.png new file mode 100644 index 0000000..04ae1e9 Binary files /dev/null and b/assets/anytool.png differ diff --git a/anytoolbench.json b/atb_data/anytoolbench.json similarity index 100% rename from anytoolbench.json rename to atb_data/anytoolbench.json diff --git a/solved_dict.json b/misc/solved_dict.json similarity index 100% rename from solved_dict.json rename to misc/solved_dict.json diff --git a/anytool.py b/scripts/anytool.py similarity index 100% rename from anytool.py rename to scripts/anytool.py diff --git a/data_generation_by_gpt4.py b/scripts/data_generation_by_gpt4.py similarity index 100% rename from data_generation_by_gpt4.py rename to scripts/data_generation_by_gpt4.py diff --git a/extract_api_details.py b/scripts/extract_api_details.py similarity index 54% rename from extract_api_details.py rename to scripts/extract_api_details.py index c0495d5..5fbb8e4 100644 --- a/extract_api_details.py +++ b/scripts/extract_api_details.py @@ -2,18 +2,10 @@ import zipfile import os import json from copy import deepcopy -# Extract the new zip file -# with zipfile.ZipFile(zip_file_path_small, 'r') as zip_ref: -# zip_ref.extractall(extracted_folder_path_small) extracted_folder_path_small = 'data/toolenv/tools' - - -# api_test_results = json.load(open('api_test_results_with_docs2.json', 'r', encoding='utf-8')) - - # Walk through the extracted files and read the JSON data -detailed_data_small = {} # Initialize an empty dictionary to store the extracted data +detailed_data = {} # Initialize an empty dictionary to store the extracted data cnt = 0 api_name_list = [] data_for_retrieval = [] @@ -34,26 +26,17 @@ for root, dirs, files in os.walk(extracted_folder_path_small): tool_name = json_data['tool_name'] api_list = json_data.get('api_list', []) # Extract necessary data for each API and organize it in the dictionary - if category not in detailed_data_small: - detailed_data_small[category] = {} - if tool_name not in detailed_data_small[category]: - detailed_data_small[category][tool_name] = {"api_list": []} + if category not in detailed_data: + detailed_data[category] = {} + if tool_name not in detailed_data[category]: + detailed_data[category][tool_name] = {"api_list": []} else: tool_name += '_new' raise ValueError('duplicate tool name') - detailed_data_small[category][tool_name] = {"api_list": []} + detailed_data[category][tool_name] = {"api_list": []} for api in api_list: cnt += 1 api_name = api.get('name', 'Unknown API') - # try: - # if api_test_results[category][tool_name][api_name]["result"]['return_type'] == "inalive": - # print('remove') - # continue - # except: - # print(category, tool_name, api_name) - # pass - # if api_name in api_name_list: - # raise Exception('duplicate api name') api_name_list.append(api_name) description = api.get('description', 'No description available.') required_parameters = [param.get('name', 'Unknown Parameter') for param in api.get('required_parameters', [])] @@ -61,7 +44,6 @@ for root, dirs, files in os.walk(extracted_folder_path_small): test_endpoint = api.get('test_endpoint', '') tool_description = json_data.get('tool_description', 'No description available.'), # Organizing the data - # print(len(detailed_data_small[category][tool_name]['api_list'])) if tool_description is not None: tool_description = tool_description[:100] if description is not None: @@ -75,36 +57,22 @@ for root, dirs, files in os.walk(extracted_folder_path_small): "required_parameters": required_parameters, "optional_parameters": optional_parameters, }) - detailed_data_small[category][tool_name]["api_list"].append({ + detailed_data[category][tool_name]["api_list"].append({ "name": api_name, "description": description, "required_parameters": required_parameters, "optional_parameters": optional_parameters, # "test_endpoint": test_endpoint }) - # except Exception as e: - # Store the error message if we fail to process a file - # if category not in detailed_data_small: - # detailed_data_small[category] = {} - # detailed_data_small[category][file] = {"error": str(e)} - -# Verifying the structure of the detailed_data_small by displaying a sample -# sample_detailed_data_small = { -# category: { -# tool_name: detailed_data_small[category][tool_name] -# for tool_name in list(detailed_data_small[category].keys())[:1] -# } -# for category in list(detailed_data_small.keys())[:3] -# } cnt = 0 -for category in detailed_data_small: - for tool_name in detailed_data_small[category]: - cnt += len(detailed_data_small[category][tool_name]['api_list']) +for category in detailed_data: + for tool_name in detailed_data[category]: + cnt += len(detailed_data[category][tool_name]['api_list']) print('total api number:', cnt) -# json.dump(detailed_data_small, open('api_details_compressed.json', 'w', encoding='utf-8'), indent=4, ensure_ascii=False) -print(len(data_for_retrieval)) -json.dump(data_for_retrieval, open('data_for_retrieval.json', 'w', encoding='utf-8'), indent=4, ensure_ascii=False) -json.dump(detailed_data_small, open('api_details.json', 'w', encoding='utf-8'), indent=4, ensure_ascii=False) +# json.dump(detailed_data, open('api_details_compressed.json', 'w', encoding='utf-8'), indent=4, ensure_ascii=False) +# print(len(data_for_retrieval)) +# json.dump(data_for_retrieval, open('data_for_retrieval.json', 'w', encoding='utf-8'), indent=4, ensure_ascii=False) +json.dump(detailed_data, open('api_details.json', 'w', encoding='utf-8'), indent=4, ensure_ascii=False) print(cnt) diff --git a/extract_category_tool_details.py b/scripts/extract_category_tool_details.py similarity index 100% rename from extract_category_tool_details.py rename to scripts/extract_category_tool_details.py diff --git a/extract_tool_database.py b/scripts/extract_tool_database.py similarity index 100% rename from extract_tool_database.py rename to scripts/extract_tool_database.py diff --git a/tool_details.json b/tool_details.json deleted file mode 100644 index 5e760fe..0000000 --- a/tool_details.json +++ /dev/null @@ -1,32568 +0,0 @@ -{ - "Refactor numbers in human readable form like 1K or 1M": { - "tool_description": "By this API, you can refactor any number into human-readable form like 1000 can be read as 1K, or 1000000 can be read as 1M.", - "score": { - "avgServiceLevel": 71, - "avgLatency": 6991, - "avgSuccessRate": 71, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "Covid-19 Live data": { - "tool_description": "Global COVID-19 Tracker", - "score": { - "avgServiceLevel": 100, - "avgLatency": 9, - "avgSuccessRate": 100, - "popularityScore": 8, - "__typename": "Score" - } - }, - "Get Twitter mentions": { - "tool_description": "Find your brand, competitor, or any other query mentions across the Twitter", - "score": { - "avgServiceLevel": 100, - "avgLatency": 923, - "avgSuccessRate": 100, - "popularityScore": 6.8, - "__typename": "Score" - } - }, - "Users list": { - "tool_description": "Provide users data", - "score": { - "avgServiceLevel": 100, - "avgLatency": 464, - "avgSuccessRate": 100, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "Track the mentions and conversations about your business": { - "tool_description": "Find your brand, competitor, or any other query mentions across the web daily, including websites, Twitter, Reddit, forums, blogs, and other", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1441, - "avgSuccessRate": 100, - "popularityScore": 7.7, - "__typename": "Score" - } - }, - "Avito Scraper": { - "tool_description": "API that extract data of any search on avito.ma", - "score": { - "avgServiceLevel": 100, - "avgLatency": 6586, - "avgSuccessRate": 100, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "France 2D": { - "tool_description": "France 2D\nGet started for free!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1694, - "avgSuccessRate": 100, - "popularityScore": 7.4, - "__typename": "Score" - } - }, - "Solcast": { - "tool_description": "The Solcast API is a solar radiation and solar energy forecasting data service that is designed to be easy to use and to integrate with other systems that are looking for live solar radiation and solar PV energy output data.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 785, - "avgSuccessRate": 89, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "oauthecho": { - "tool_description": "Illustrates \"Client Credentials\" OAuth 2.0 Grant Type. This grant type is used by clients to obtain an access token outside of the context of a user", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1013, - "avgSuccessRate": 100, - "popularityScore": 6.5, - "__typename": "Score" - } - }, - "PlantWise": { - "tool_description": "Streamline plant care in your applications. Leverage the power of AI to access comprehensive plant care information, including watering schedules, light requirements, temperature ranges, and more. Empower your users to nurture healthy, thriving plants with ease.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 18119, - "avgSuccessRate": 100, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "Fear and Greed index": { - "tool_description": "Fear and Greed index. Historical data.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 482, - "avgSuccessRate": 100, - "popularityScore": 7.4, - "__typename": "Score" - } - }, - "Lootero": { - "tool_description": "Endpoints for the Lootero Application", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1269, - "avgSuccessRate": 100, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "Opencage geocoder": { - "tool_description": "Worldwide forward and reverse address geocoding. Uses multiple geocoders, based on open data.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 906, - "avgSuccessRate": 96, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "indeed": { - "tool_description": "Get company and job information from indeed", - "score": { - "avgServiceLevel": 100, - "avgLatency": 4805, - "avgSuccessRate": 93, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "Article Extractor": { - "tool_description": "Get main article content and meta data from news articles or blog entries.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1131, - "avgSuccessRate": 100, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Todo Lsit": { - "tool_description": "Make my own Todo Lsit", - "score": { - "avgServiceLevel": 100, - "avgLatency": 51, - "avgSuccessRate": 82, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "YouTube Video Info": { - "tool_description": "Get YouTube Video Information including the Audio and Video Streams!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 5664, - "avgSuccessRate": 100, - "popularityScore": 7.5, - "__typename": "Score" - } - }, - "AI detection": { - "tool_description": "Quickly determine the authenticity of your data with just a single API call. With just a simple API call, you can quickly and easily determine if the text you're analyzing was generated by a machine or a human. This powerful tool is perfect for businesses, researchers, and developers who need to ensure the authenticity of their text data. Whether you're working with customer reviews, social media posts, or any other type of text, the AI Content Detection API has you covered. Try it today and ...", - "score": { - "avgServiceLevel": 98, - "avgLatency": 4598, - "avgSuccessRate": 98, - "popularityScore": 9, - "__typename": "Score" - } - }, - "Real-Time Web Search": { - "tool_description": "Ultra-Fast, Simple and Reliable real-time web searches at an unbeatable price.", - "score": { - "avgServiceLevel": 99, - "avgLatency": 1080, - "avgSuccessRate": 99, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "DNS Lookup": { - "tool_description": "DNS Lookup API lets you gather a domain' corresponding IP address/A record, mail server/MX record, DNS servers/NS nameservers, as well as other items like SPF records/TXT records.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 452, - "avgSuccessRate": 100, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "Name Using Domain": { - "tool_description": "Get the Domain/Org name by Domain", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1374, - "avgSuccessRate": 100, - "popularityScore": 6.4, - "__typename": "Score" - } - }, - "Blackbox": { - "tool_description": "Blackbox is a Proxy, Tor, Hosting, Cloud, Bogon detection service for IP addresses. Utilize Blackbox to protect your game-servers, user front-ends, and much more. ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 88, - "avgSuccessRate": 100, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "Reqres": { - "tool_description": "Reqres", - "score": { - "avgServiceLevel": 100, - "avgLatency": 509, - "avgSuccessRate": 100, - "popularityScore": 6.1, - "__typename": "Score" - } - }, - "Bible Search": { - "tool_description": "Retrieve chapters and verses from the Old Testament and New Testament of the KJV. This API does not include the false gnostic books of the bible called the Pauline and Petrine epistles.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1981, - "avgSuccessRate": 100, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "ScrapeNinja": { - "tool_description": "High performance API for web scraping. Emulates Chrome TLS fingerprint, backed by rotating proxies (geos: US, EU, Brazil, France, Germany, 4g residential proxies available!) and smart retries. Use this when node.js/curl/python fails to load the website even with headers fully identical to Chrome, but you still need fast scraping and want to avoid using Puppeteer and JS evaluation (ScrapeNinja returns raw HTTP responses by default). Javascript rendering is available, as well! Read more: https:...", - "score": { - "avgServiceLevel": 98, - "avgLatency": 2418, - "avgSuccessRate": 98, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "Returns company info based on the website": { - "tool_description": "Name of the company, description, ceo info, links to the social platforms, hq location info, top competitors", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2603, - "avgSuccessRate": 100, - "popularityScore": 7.7, - "__typename": "Score" - } - }, - "Liquidation Report": { - "tool_description": "Crypto liquidation tracking and reporting system. Aggregate data from exchange like Binance, Bybit & OKX", - "score": { - "avgServiceLevel": 100, - "avgLatency": 713, - "avgSuccessRate": 100, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Google Local Rank Tracker": { - "tool_description": "Real-Time overview of your Google Local Ranking across multiple coordinate points in a Grid View. Accurate and fast SERP results and ranking of your business by keyword and location. Get results for a single geopoint coordinate or for an entire grid. See how you stack up against your competitors and Track your progress over time. ", - "score": { - "avgServiceLevel": 69, - "avgLatency": 1617, - "avgSuccessRate": 68, - "popularityScore": 9, - "__typename": "Score" - } - }, - "BlockIt": { - "tool_description": "BlockIt\nBlockIt is detect IP Address a Proxy, Tor, Hosting, Cloud, Bogon and etc.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 890, - "avgSuccessRate": 100, - "popularityScore": 8, - "__typename": "Score" - } - }, - "Web Search Autocomplete": { - "tool_description": "Fast and Simple web search query autocomplete with support for Knowledge Graph entities. Powered by Google Search.", - "score": { - "avgServiceLevel": 99, - "avgLatency": 116, - "avgSuccessRate": 99, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "Api plaque immatriculation SIV": { - "tool_description": "Immatriculation API (France) \n\nNotre service Web permettra Ă  votre site Internet ou Ă  vos applications d’identifier les motos et les scooters en utilisant leur plaque d’immatriculation. Cette mĂ©thode est largement utilisĂ©e par la plupart des boutiques en ligne de piĂšces dĂ©tachĂ©es pour identifier les vĂ©hicules de leurs clients, afin d’éviter les erreurs d’identification, les insatisfactions clients et les retours de marchandise.\n\nÊtes-vous Ă  la recherche de plaques d’immatriculation françaises...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1898, - "avgSuccessRate": 100, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Proxy Port": { - "tool_description": "Proxy", - "score": { - "avgServiceLevel": 100, - "avgLatency": 837, - "avgSuccessRate": 100, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "Cat breeds": { - "tool_description": "The API is scraping the Wikipedia pages for cats in order to collect data ", - "score": { - "avgServiceLevel": 99, - "avgLatency": 1058, - "avgSuccessRate": 99, - "popularityScore": 9, - "__typename": "Score" - } - }, - "x2y2": { - "tool_description": "Unofficial API for x2y2 - 1,000+ requests/min\n\nSimple & high performance Blur API, backed by rotating proxies & API keys\n\nCheck out my Opensea / Looksrare / Blur APIs as well\nhttps://rapidapi.com/user/openseatools\n\n- Crypto Payments Available\n\n- Lifetime Unlimited Requests Licenses Available\n\n- Private Plans with 16 / 32 / 64 / 128 requests/second Available\n\n- Ready made bots written in node.js already configured to work with RapidApi Available.\n\nJoin our Discord to inquire & find out the l...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1156, - "avgSuccessRate": 45, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "Subtitles for YouTube_v2": { - "tool_description": "Api for fetching YouTube subtitles", - "score": { - "avgServiceLevel": 98, - "avgLatency": 6113, - "avgSuccessRate": 98, - "popularityScore": 9, - "__typename": "Score" - } - }, - "All information about IP": { - "tool_description": "API for getting information about ip address, taken from several databases, compared.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1116, - "avgSuccessRate": 100, - "popularityScore": 8.2, - "__typename": "Score" - } - }, - "Quotes_v2": { - "tool_description": "We provide developers with a vast collection of inspirational, thought-provoking, and entertaining quotes. ", - "score": { - "avgServiceLevel": 92, - "avgLatency": 5550, - "avgSuccessRate": 92, - "popularityScore": 8.2, - "__typename": "Score" - } - }, - "Instagram Downloader": { - "tool_description": "You can download any video,story,highlights,igtv,reel,post on this api \\n Conact us : https://PPooP.t.me \\n My Channel : https://keepdeving.t.me", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2706, - "avgSuccessRate": 100, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "Whois Lookup_v5": { - "tool_description": "Whois Lookup API in Json or Xml", - "score": null - }, - "Thai Lotto New API": { - "tool_description": "Myanmar 2D/3D, Thai Lottery, Myanmar Currency Exchanger All the entries data is taken from: https://www.set.or.th/th/home", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1352, - "avgSuccessRate": 100, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Risk Management Framework": { - "tool_description": "The Risk Management Framework (RMF) makes it easy to view and compare controls and CCIs.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 542, - "avgSuccessRate": 100, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "Semantic Quotes": { - "tool_description": "Semantic search for quotes. Wondering which celebrities have said something similar? Look no more, this API gives you the power to search for quotes semantically from over 1M+ quotes. The Artificial Intelligence (NLP) engine behind the scene seeks to understand the meaning of your query rather than simply matching keywords. We allows user to flexibly filter the results by the length of the quote, and/or by a large variety of tags.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1889, - "avgSuccessRate": 100, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "World Bank | GDP": { - "tool_description": "Sourced from World Bank at https://datahelpdesk.worldbank.org/knowledgebase/articles/898581-api-basic-call-structures", - "score": { - "avgServiceLevel": 100, - "avgLatency": 137, - "avgSuccessRate": 69, - "popularityScore": 9, - "__typename": "Score" - } - }, - "Yandex Video API": { - "tool_description": "đŸ”„ Unlock a world of video data with our Yandex SERP API. Retrieve comprehensive search results. Experience it today!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 746, - "avgSuccessRate": 100, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "Car Verification Nigeria": { - "tool_description": "Use this API to determine the location where a Nigeria car is registered.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 660, - "avgSuccessRate": 100, - "popularityScore": 9, - "__typename": "Score" - } - }, - "Socialgrep": { - "tool_description": "Search Reddit comments and posts in near real time and view archive data from 2010 to present day", - "score": { - "avgServiceLevel": 99, - "avgLatency": 579, - "avgSuccessRate": 98, - "popularityScore": 9, - "__typename": "Score" - } - }, - "QR Code Generator API": { - "tool_description": "This API returns a QR Code in PNG format, based on input string", - "score": { - "avgServiceLevel": 100, - "avgLatency": 722, - "avgSuccessRate": 100, - "popularityScore": 7.2, - "__typename": "Score" - } - }, - "books": { - "tool_description": "books", - "score": { - "avgServiceLevel": 100, - "avgLatency": 593, - "avgSuccessRate": 100, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Screenshot URL to image": { - "tool_description": "Generate screenshots of websites with simple api, accept various parameters such as width, height, full page", - "score": { - "avgServiceLevel": 100, - "avgLatency": 4503, - "avgSuccessRate": 78, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "CHAT GPT AI BOT": { - "tool_description": "Simply ask for whatever you require, and our API will provide the solutions. Let us know your needs, and our AI BOT will effortlessly generate the marketing copy for you. With this convenient tool, you'll have more time to dedicate to your passions.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 6024, - "avgSuccessRate": 56, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "Animals by API-Ninjas": { - "tool_description": "Detailed and interesting facts for thousands of animal species. See more info at https://api-ninjas.com/api/animals.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 462, - "avgSuccessRate": 98, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "BreachDirectory": { - "tool_description": "Check if an email, username, password, or phone number was compromised in a data breach.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1176, - "avgSuccessRate": 100, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "Azure Smartable": { - "tool_description": "The Azure Smartable API offers the Microsoft Azure news, learning resources, events, influencers and other information.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 222, - "avgSuccessRate": 77, - "popularityScore": 7.7, - "__typename": "Score" - } - }, - "Zippopotam.us": { - "tool_description": "Zip Code Galore!\r\nZip·po·pot·amus   /ˈzipƍpĂ€təməs/\r\nPostal Codes and Zip Codes made easy\r\n\r\nFree API with JSON Response Format\r\n\r\nOver 60 Countries Supported\r\n\r\nPerfect for Form Autocompletion\r\n\r\nOpen for Crowdsourcing and Contribution", - "score": { - "avgServiceLevel": 100, - "avgLatency": 115, - "avgSuccessRate": 98, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Emotional Poem": { - "tool_description": "This API'v choice poem from emotional parameters.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3224, - "avgSuccessRate": 100, - "popularityScore": 7.2, - "__typename": "Score" - } - }, - "SEO API - Get Backlinks": { - "tool_description": " Backlink Checker API, is the ultimate tool for analyzing your website's backlinks, as well as those of your competitors. With our API, you can easily check the quality of your backlinks, identify any issues that may be impacting your SEO efforts, and even discover new backlink opportunities", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2079, - "avgSuccessRate": 100, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "Tokenizer": { - "tool_description": "Format preserving tokenization. Replace you sensitive data with tokens that cannot be decrypted only detokinzed!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1201, - "avgSuccessRate": 100, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "Local Businesses by Outscraper": { - "tool_description": "Get Local Businesses' information with simple and reliable Maps Places API provided by Outscraper.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 11487, - "avgSuccessRate": 50, - "popularityScore": 6.9, - "__typename": "Score" - } - }, - "URL Shortener - We store your links forever!": { - "tool_description": "Convenient URL shortening service without ads and registration. You will get a link like https://mrshort.org/abcdefg\nTo get the statistics of clicks on your link, enter the your password in the POST request.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 747, - "avgSuccessRate": 62, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "Udemy course scrapper api": { - "tool_description": "We have bring an api that will help to fetch udemy course scrapper for your next project Get Udemy course scraper for your next project. Use this api to fetch all the data you need in a fraction of a second.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 505, - "avgSuccessRate": 100, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Store Apps": { - "tool_description": "Extremely Fast and Simple API to search and list apps/games top charts on the Google Play Store and get their full details and reviews.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 630, - "avgSuccessRate": 99, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Domain DA - PA Check": { - "tool_description": "Domain authority score & page authority score, backlink count, moz rank information.", - "score": { - "avgServiceLevel": 92, - "avgLatency": 355, - "avgSuccessRate": 92, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Commodity Rates API": { - "tool_description": "The Commodity Rates API provides real-time and historical pricing data for various commodity markets, including metals, energy, and agricultural products. It allows users to access market data and perform advanced analytics, such as price forecasting and trend analysis. ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1157, - "avgSuccessRate": 100, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "Facebook User Info": { - "tool_description": "Facebook VietNam User Info, Convert UID To Phone and Phone To UID", - "score": { - "avgServiceLevel": 100, - "avgLatency": 262, - "avgSuccessRate": 100, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "URL Analysis": { - "tool_description": "Obtain information about web pages, the platform on which they are built, the language of the texts they contain, if it is an e-commerce or if it uses the opengraph standard.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2705, - "avgSuccessRate": 100, - "popularityScore": 6.5, - "__typename": "Score" - } - }, - "Flowers": { - "tool_description": "Information about flowers.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 379, - "avgSuccessRate": 100, - "popularityScore": 7.6, - "__typename": "Score" - } - }, - "pluses-and-minuses-of-the-car": { - "tool_description": "The Car Pluses and Minuses API is a comprehensive endpoint designed to provide detailed insights into the pros and cons of various car makes, models, and years. It offers potential buyers, car enthusiasts, and businesses a valuable tool to evaluate vehicles more effectively.\n\nBy using this API, you can access a wealth of information related to the car's performance, reliability, safety, comfort, and overall satisfaction. The data is sourced from real-world user experiences, expert reviews, an...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1080, - "avgSuccessRate": 100, - "popularityScore": 7.4, - "__typename": "Score" - } - }, - "OutSystems Community API": { - "tool_description": "Get information about the OutSystems community. This is not an official OutSystems API.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1088, - "avgSuccessRate": 100, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "Italian Pharmacy": { - "tool_description": "API to find the list of Italian pharmacies, dynamic filters are used", - "score": { - "avgServiceLevel": 100, - "avgLatency": 711, - "avgSuccessRate": 100, - "popularityScore": 6.4, - "__typename": "Score" - } - }, - "OpenSea Data Query": { - "tool_description": "Get opensea data without any api key", - "score": { - "avgServiceLevel": 100, - "avgLatency": 131, - "avgSuccessRate": 98, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "GeoDB Cities": { - "tool_description": "Get global city, region, and country data. Filter and display results in multiple languages.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 56, - "avgSuccessRate": 99, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "Webit QR Code": { - "tool_description": "Generate beautiful QR Codes with custom logo, colors, gradient effects and styles with ease.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1672, - "avgSuccessRate": 100, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "Fluximmo": { - "tool_description": "API de flux immobilier 🏡: Scraper LEBONCOIN, PAP, EXPLORIMMO, MEILLEURSAGENTS et plus de 20 portails - CrĂ©ez des services innovants grĂące Ă  notre flux d'annonces immobiliĂšres en temps rĂ©el !", - "score": { - "avgServiceLevel": 100, - "avgLatency": 46, - "avgSuccessRate": 100, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "Link Preview": { - "tool_description": "Open graph protocol data parser. Can fetch various meta data from an url link.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 670, - "avgSuccessRate": 85, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "Feku Json": { - "tool_description": "Free Feku ( Fake ) API for Testing and Prototyping.", - "score": { - "avgServiceLevel": 75, - "avgLatency": 1029, - "avgSuccessRate": 67, - "popularityScore": 7.5, - "__typename": "Score" - } - }, - "Human Resources API": { - "tool_description": "API for supplying demo human resources data of employees and their bank cards.\nUp to 900 samples per table. You can query the employees' table or bank cards' table.\nWith Fast Response. and also paginate through each table, metadata for pagination is included in the response of the pagination route.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 159, - "avgSuccessRate": 100, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "Live Whois Lookup": { - "tool_description": "Get Complete Live Whois detail in xml and json formats", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1633, - "avgSuccessRate": 88, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "ASIN Data": { - "tool_description": "", - "score": { - "avgServiceLevel": 63, - "avgLatency": 8389, - "avgSuccessRate": 63, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "Unique Username Generator By Pizza API": { - "tool_description": "The Unique Username API Service provided by PIZZA API is a simple tool that generates unique usernames for users during the registration process of any app or website. Developers can integrate this API with their registration forms to ensure that each user is assigned a unique username that is not already in use. To use this API, developers can simply make an HTTP request to the endpoint provided by PIZZA API. The response will include a randomly generated username that can be used to comple...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 445, - "avgSuccessRate": 100, - "popularityScore": 7.8, - "__typename": "Score" - } - }, - "Random Word API": { - "tool_description": "This easy-to-use, 100% free API randomely picks out words from the entire english dictionnary with many parameters. Supports selecting words of a certain length or that start with a certain letter or a certain string of characters, or both, and much more!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 866, - "avgSuccessRate": 84, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "CNPJ Validator": { - "tool_description": "Validates Brazilian CNPJ numbers. It can also generate random, valid numbers.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1249, - "avgSuccessRate": 100, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "Genderize - Nationalize": { - "tool_description": "Get name gender and nationality.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 922, - "avgSuccessRate": 100, - "popularityScore": 6.6, - "__typename": "Score" - } - }, - "Linkedin Live Data": { - "tool_description": "", - "score": { - "avgServiceLevel": 94, - "avgLatency": 1951, - "avgSuccessRate": 90, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "Open Proxies": { - "tool_description": "Open proxy IP:Port lists, curated by ProxyMesh. Proxy lists include 200-400 open proxies, checked for functionality every 15 minutes. However, this does not guarantee the proxies will still be functional at retrieval time. IP lists are returned as plain text, with 1 IP:port per line.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 700, - "avgSuccessRate": 100, - "popularityScore": 7, - "__typename": "Score" - } - }, - "Consulta CNPJ GrĂĄtis": { - "tool_description": "API Gratuita de Consultas a Receita Federal, Simples Nacional e Cadastro de Contribuintes (SINTEGRA).", - "score": { - "avgServiceLevel": 100, - "avgLatency": 461, - "avgSuccessRate": 67, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Hashing-Api": { - "tool_description": "Blake2B/MD5/SHA Text/File/Bytes Hashing", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1440, - "avgSuccessRate": 87, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "Ultimate password generator": { - "tool_description": "Generate robust, customizable passwords with Ultimate password generator by DevPicker. Optimize your security with our adjustable length, number inclusion, and symbol usage options.", - "score": null - }, - "News Content Extraction - Live": { - "tool_description": "Comprehensive Extraction of Web News Content", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1026, - "avgSuccessRate": 100, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "Polish zip codes": { - "tool_description": "Poczta polska - zip codes", - "score": { - "avgServiceLevel": 99, - "avgLatency": 1054, - "avgSuccessRate": 98, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "livestock": { - "tool_description": "Images and details of livestock offering", - "score": { - "avgServiceLevel": 100, - "avgLatency": 7, - "avgSuccessRate": 100, - "popularityScore": 8, - "__typename": "Score" - } - }, - "Historical Figures by API-Ninjas": { - "tool_description": "Get vital information on the most famous people in history. See more info at https://api-ninjas.com/api/historicalfigures.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 586, - "avgSuccessRate": 98, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "Cigars": { - "tool_description": "Data about Cigar brands, Cigars, and country data", - "score": { - "avgServiceLevel": 100, - "avgLatency": 646, - "avgSuccessRate": 64, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "GS1-Code128 Generator": { - "tool_description": "This API returns a GS1-Code128 Barcode in PNG format based on company prefix, code, quantity and lot", - "score": { - "avgServiceLevel": 100, - "avgLatency": 856, - "avgSuccessRate": 100, - "popularityScore": 6.3, - "__typename": "Score" - } - }, - "Realtor": { - "tool_description": "Query real time data of US real estate properties and agents", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1690, - "avgSuccessRate": 100, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "Fish species": { - "tool_description": "A Restful API which is scraping the Wikipedia pages for fish species in order to collect data. The data are cached and refreshed every 24 hours.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1314, - "avgSuccessRate": 99, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "Holy Bible": { - "tool_description": "The Best Bible API out there.\n\nThe Bible API is an easy-to-use web service that allows you to retrieve The Old Testament and The New Testament based on a chapter or selected verse. The API provides access to the King James Version (KJV) of the Bible, which is widely considered to be one of the most accurate and widely-used translations of the Bible in the English language.", - "score": { - "avgServiceLevel": 89, - "avgLatency": 299, - "avgSuccessRate": 89, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "US Zipcodes": { - "tool_description": "The API offers detailed data about zip codes in the USA, including geographic coordinates, county, city, and time zone. This information is valuable for targeted marketing, data analysis, and location-based services. Users can retrieve location-specific details about a given zip code using the API.", - "score": { - "avgServiceLevel": 74, - "avgLatency": 227, - "avgSuccessRate": 45, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "Trulia Real Estate Scraper": { - "tool_description": "🏡 Master the real estate market with Trulia API. Extract crucial home data, tailor your search. Experience it today!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1025, - "avgSuccessRate": 100, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "WA Rego Check": { - "tool_description": "Western Australia vehicle license expiry date query, data from DoTDirect\nhttps://csnb.net/wa-rego-check-api/", - "score": { - "avgServiceLevel": 100, - "avgLatency": 992, - "avgSuccessRate": 100, - "popularityScore": 5.9, - "__typename": "Score" - } - }, - "Restaurant": { - "tool_description": "List of restaurant", - "score": { - "avgServiceLevel": 100, - "avgLatency": 990, - "avgSuccessRate": 100, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "Railway Periods": { - "tool_description": "An API to calculate the railway period of a UTC date in milliseconds since epoch (Unix timestamp).", - "score": { - "avgServiceLevel": 100, - "avgLatency": 4522, - "avgSuccessRate": 100, - "popularityScore": 7.2, - "__typename": "Score" - } - }, - "Domain name search": { - "tool_description": "Search 600m+ domain names in use/retired by partial match.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2430, - "avgSuccessRate": 100, - "popularityScore": 7.2, - "__typename": "Score" - } - }, - "WatchSignals": { - "tool_description": "Watchsignals is a data-driven platform for luxury watches (new & pre owned) and services, empowering customers with an AI driven valuation tool. We help customers to enjoy a high value shopping experience, without overpaying for their goods. A unique feature will be our value prediction model, based on Artificial Intelligence / Machine Learning algorithms. We will initially focus on jewelry, watches, clothes, shoes, bags and eventually yachts, cars and jets.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 503, - "avgSuccessRate": 95, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "Mobile-Phones": { - "tool_description": "An API that provides information about all mobile brands and their devices would be a comprehensive source of data for developers seeking to build applications or services related to mobile devices. Such an API could include details on all the mobile brands currently on the market, as well as information about each brand's individual devices, such as model names, technical specifications, and images. The \nAPI might also provide additional metadata, such as operating system versions and releas...", - "score": { - "avgServiceLevel": 99, - "avgLatency": 2406, - "avgSuccessRate": 99, - "popularityScore": 9, - "__typename": "Score" - } - }, - "Spotify Data": { - "tool_description": "Spotify Data", - "score": { - "avgServiceLevel": 99, - "avgLatency": 515, - "avgSuccessRate": 96, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "Linkedin Profile Data": { - "tool_description": "Returns a JSON Profile data from a Linkedin ID", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1689, - "avgSuccessRate": 100, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Unofficial Efteling API": { - "tool_description": "An Unofficial Efteling API is a software tool that allows developers to access real-time queue times and news from the Efteling amusement park, located in the Netherlands. The API provides a simple and easy-to-use interface for retrieving data, which can be integrated into third-party applications, websites, or services. With this API, users can stay up-to-date with the latest information on ride wait times and park news, making it easier to plan their visit to the park. This API is not offic...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 184, - "avgSuccessRate": 100, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "autocomplete usa": { - "tool_description": "USA Address, City, Zip code - Zip4, Zip code Autocomplete", - "score": { - "avgServiceLevel": 97, - "avgLatency": 540, - "avgSuccessRate": 97, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "Real-Time Image Search": { - "tool_description": "Fast and Simple real-time image web searches with support for all filters available on Google Advanced Image Search.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1733, - "avgSuccessRate": 100, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Keyword Analysis": { - "tool_description": "Get main keywords for query, similar queries and related domains for query. ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1406, - "avgSuccessRate": 100, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Car Data_v2": { - "tool_description": "Use this API to pull relevant automobile data such as the car make, model, type, and year.", - "score": null - }, - "Captcha_v2": { - "tool_description": " SmileMe's Captcha provide a Captcha image for you. Just call and the API will return the info Captcha ( include image base64, id, value ...) ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 396, - "avgSuccessRate": 100, - "popularityScore": 7.3, - "__typename": "Score" - } - }, - "Lotto Draw Results - Global": { - "tool_description": "Up to 65 countries lotto draw results available.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 527, - "avgSuccessRate": 98, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "OpenSea GraphQL": { - "tool_description": "An API that provides easy and efficient access to both OpenSea's GraphQL API and OpenSea's Testnet GraphQL API.", - "score": { - "avgServiceLevel": 99, - "avgLatency": 2994, - "avgSuccessRate": 99, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Unicode Codepoints": { - "tool_description": "A RESTful Interface to Unicode Data, this API gives easy and standardized access to all information from Codepoints.net. The detailed documentation is [available on Github](https://github.com/Boldewyn/Codepoints.net/wiki/API).", - "score": { - "avgServiceLevel": 100, - "avgLatency": 510, - "avgSuccessRate": 100, - "popularityScore": 7.7, - "__typename": "Score" - } - }, - "10000+ Anime Quotes With Pagination Support": { - "tool_description": "Access best quality anime quotes from over 10000+ animes with pagination supports. Easily access quotes ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 367, - "avgSuccessRate": 100, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "CPF Validator": { - "tool_description": "Validates Brazilian CPF numbers. It can also generate random valid numbers.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 717, - "avgSuccessRate": 100, - "popularityScore": 6.7, - "__typename": "Score" - } - }, - "Most expensive NFT artworks": { - "tool_description": "Get list of most expensive and bestselling NFTs ever", - "score": { - "avgServiceLevel": 100, - "avgLatency": 783, - "avgSuccessRate": 100, - "popularityScore": 6.8, - "__typename": "Score" - } - }, - "Simple YouTube Search": { - "tool_description": "Simple api to make easy youtube searches for free.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 995, - "avgSuccessRate": 100, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "Seeding Data": { - "tool_description": "Completely APIs that helps web developers and web designers generate fake data in a fast and easy way.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1318, - "avgSuccessRate": 100, - "popularityScore": 7.7, - "__typename": "Score" - } - }, - "phone validation": { - "tool_description": "Mobile phone validation with extended checks", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1039, - "avgSuccessRate": 50, - "popularityScore": 7.3, - "__typename": "Score" - } - }, - "Twitter": { - "tool_description": "Please join our telegram channel to get notified about updates. https://t.me/social_miner_news", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1415, - "avgSuccessRate": 100, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "Barcodes Lookup": { - "tool_description": "Search over 500 million products with UPC, EAN, JAN, ISBN barcodes.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2442, - "avgSuccessRate": 95, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "Encryption-Api": { - "tool_description": "Encrypt/Decrypt String/File Using these Algorithms (AES, DES, TripleDES, RC2, Rijndael).", - "score": { - "avgServiceLevel": 100, - "avgLatency": 817, - "avgSuccessRate": 89, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "Cities Cost of Living and Average Prices API": { - "tool_description": "The Cities Cost of Living and Average Prices API provides data on the cost of living and average prices of goods and services in various cities around the world. It allows developers to access information such as housing costs, transportation expenses, and the prices of groceries and other everyday items. This can be useful for individuals or businesses looking to compare the cost of living in different locations or to make budgeting decisions", - "score": { - "avgServiceLevel": 100, - "avgLatency": 494, - "avgSuccessRate": 100, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "Best Backlink checker API": { - "tool_description": "Best Backlink checker, You can check Top backlinks, New backlinks, Poor Backlinks, etc", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3431, - "avgSuccessRate": 100, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "Matrimony Profiles": { - "tool_description": "Get Matrimony Profiles based on Religion, Caste, Marrital Status, Education, Age, Height, etc filters.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 692, - "avgSuccessRate": 100, - "popularityScore": 8, - "__typename": "Score" - } - }, - "House Plants": { - "tool_description": "This API provides a database of house plants, along with their description and information how to best take care of them (ideal temperature, light, etc.).\n\nAll proceeds go to charity (donated at the end of each month).", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1360, - "avgSuccessRate": 100, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "EPA Superfunds": { - "tool_description": "An intuitive endpoint to query the EPA Superfunds list. Query epaId, epaIdLink, frsLink, name, address, city, state, zipcode, county, federalFacilityStatus, nplStatus, lat, lng.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 366, - "avgSuccessRate": 100, - "popularityScore": 8, - "__typename": "Score" - } - }, - "Shopify Stores Info": { - "tool_description": "This API returns a info such as email, phone number, etc for shopify stores. You can use this for a lead Generation.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 7336, - "avgSuccessRate": 100, - "popularityScore": 7.4, - "__typename": "Score" - } - }, - "App Store": { - "tool_description": "Unofficial Apple App Store Api", - "score": { - "avgServiceLevel": 100, - "avgLatency": 131, - "avgSuccessRate": 100, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "Hull ID Boat HIN Decoder": { - "tool_description": "Decode the 12 digit HIN and check if it is valid. HINDecoder is used by many State DMV's and has been running for 7+ years.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 530, - "avgSuccessRate": 100, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "US States": { - "tool_description": "Detailed and accurate information for each U.S. state and territory in JSON format.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 229, - "avgSuccessRate": 100, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "File Extension": { - "tool_description": "Get data based on file extension. Currently only has one endpoint to get icon and full name of the file extension.\n\nhttps://fileinfo.com/ was used to create the data used in this api. All credit is given to their extensive list of file extensions.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 788, - "avgSuccessRate": 63, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "Barcodes": { - "tool_description": "Search over 500+ million products with UPC, EAN, JAN, ISBN barcodes.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 936, - "avgSuccessRate": 100, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "Gis Engine": { - "tool_description": "Provide regions, cities and districts per countries", - "score": { - "avgServiceLevel": 100, - "avgLatency": 371, - "avgSuccessRate": 100, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "Phone": { - "tool_description": "Full set of cool Telephone validation functions with a coverage of more than a hundred different countries. Phone Metropolis API can analyse, get location information and parse the content of a given phone number. [This API is under maintenance and is not working properly] ", - "score": { - "avgServiceLevel": 98, - "avgLatency": 736, - "avgSuccessRate": 92, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "World countries": { - "tool_description": "World countries available in multiple languages, with associated alpha-2, alpha-3, and numeric codes as defined by the ISO 3166 standard", - "score": { - "avgServiceLevel": 100, - "avgLatency": 390, - "avgSuccessRate": 100, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "Complete Study Bible": { - "tool_description": "The most COMPLETE Bible study API available! Strongs, Locations, Dictionaries, and more! ", - "score": { - "avgServiceLevel": 98, - "avgLatency": 752, - "avgSuccessRate": 96, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "Dog breeds": { - "tool_description": "The API is scraping the Wikipedia pages for dogs in order to collect data", - "score": { - "avgServiceLevel": 99, - "avgLatency": 1510, - "avgSuccessRate": 94, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "Tesla VIN Identifier": { - "tool_description": "Project TEMPA - This API is capable of resolving Tesla's VIN Identifier", - "score": { - "avgServiceLevel": 100, - "avgLatency": 545, - "avgSuccessRate": 88, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "Neostrada Domains": { - "tool_description": "edit your neostrada domains", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1695, - "avgSuccessRate": 92, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "Zillow_v2": { - "tool_description": "Access US and CA property data in JSON, CSV, or Excel formats. Search listings, compare zestimate home values, and discover agent details.", - "score": { - "avgServiceLevel": 99, - "avgLatency": 1388, - "avgSuccessRate": 99, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "Trinidad Covid 19 Statistics": { - "tool_description": "This API provides Covid-19 statistics by year, month, day and most recent day in Trinidad and Tobago", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1225, - "avgSuccessRate": 100, - "popularityScore": 5.7, - "__typename": "Score" - } - }, - "Places in radius": { - "tool_description": "API for retrieving places & facilities data for given origin, distance and list of facility types.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3164, - "avgSuccessRate": 100, - "popularityScore": 6.6, - "__typename": "Score" - } - }, - "JailBase": { - "tool_description": "JailBase provides mugshots and arrest information to the public for free. \r\n\r\nWe have an easy to use web api so your website or application can access our extensive county jail inmate data. Using the API, you can search for arrested and booked individuals in county jails. \r\n\r\nThe web service uses a REST interface to make calls and returns results in JSON (JSONP is also supported). Calls to the webservice do not require a developer key, however they are rate limited (see terms of use). If you have questions or comments, please contact us. \r\n\r\nUse our api to search for county jail mugshots today.", - "score": { - "avgServiceLevel": 93, - "avgLatency": 775, - "avgSuccessRate": 93, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "OG Link preview": { - "tool_description": "Link preview uses Open Graph protocol to get metadata from a website such as a title, description, images, favicon and raw data", - "score": { - "avgServiceLevel": 99, - "avgLatency": 721, - "avgSuccessRate": 99, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "CountryByIP": { - "tool_description": "Get country code by providing IP address (IPV4 & IPV6). We aim to provide output at lightning speed.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 540, - "avgSuccessRate": 100, - "popularityScore": 7.8, - "__typename": "Score" - } - }, - "TransitFeeds": { - "tool_description": "An extensive collection of official public transit data from around the world, including GTFS, GTFS-RealTime and more.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 107, - "avgSuccessRate": 100, - "popularityScore": 7.5, - "__typename": "Score" - } - }, - "Generate LinkedIn Leads": { - "tool_description": "The top-rated Lead Generation API on RapidAPI that gives valid business emails among all profiles downloaded. Our system downloads the profiles instantly after the API is called, ensuring the data is always fresh and up-to-date.", - "score": { - "avgServiceLevel": 77, - "avgLatency": 16030, - "avgSuccessRate": 77, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Adzuna": { - "tool_description": "Get the very latest ads and data with Adzuna's API. Get job, property and car ads for your own website. Use Adzuna's up-to-the-minute employment data to power your own website, reporting and data visualisations.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 228, - "avgSuccessRate": 100, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "Date and Time": { - "tool_description": "An API to calculate the current date and time by a timezone, co-ordinates or address for those times when you cannot do this client-side.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1048, - "avgSuccessRate": 50, - "popularityScore": 7.1, - "__typename": "Score" - } - }, - "Android PlayStore Scraper": { - "tool_description": "Enter a PlayStore app ID and retrieve app information like pricing, reviews, descriptions, and more.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2747, - "avgSuccessRate": 91, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "GeoAPI": { - "tool_description": "APIs to get data based on city and countries name.\n- Get Country Details : Get country deatils with country name. Use prefix = true for prefix match.\n- Get Cities in a Country : Get cities in a country wiht population minimum and maximum filter. \n- Get City Detail : Get city details with city name.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 286, - "avgSuccessRate": 90, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "AirportsData": { - "tool_description": "Get basic information from 28k+ airports and landing strips around the world. With filtering, sorting and pagination options. ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1675, - "avgSuccessRate": 100, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "Lowest Bins Api": { - "tool_description": "Hypixel Lowest bins api", - "score": { - "avgServiceLevel": 100, - "avgLatency": 729, - "avgSuccessRate": 100, - "popularityScore": 6.8, - "__typename": "Score" - } - }, - "Country Location API": { - "tool_description": "The Country Location API is a RESTful API that allows developers to retrieve location data for any country in the world. Using a GET request with a country parameter, the API retrieves information about the specified country, such as its name, capital city, region, subregion, population, languages, and currencies.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 771, - "avgSuccessRate": 65, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "LBC Shark": { - "tool_description": "Api of leboncoin\nif you need this api contact me on private XD", - "score": { - "avgServiceLevel": 100, - "avgLatency": 559, - "avgSuccessRate": 100, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "Apple App Store Scraper": { - "tool_description": "Enter an AppStore app ID and retrieve app information like pricing, reviews, descriptions, and more. Simply provide the app ID to this API and the most up to date App Store details are returned in easy to digest JSON format. That's it.", - "score": { - "avgServiceLevel": 58, - "avgLatency": 3371, - "avgSuccessRate": 58, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "IP and Location Spoofing Detection": { - "tool_description": "Ensure that the individuals and merchants you’re onboarding are not attempting to defraud you by hiding behind a fake IP address or pretending to be from a different location.\n\nWith the IP and Location spoofing API, you can now be confident that the users on your platform are not attempting to fake their location or their IP address via a VPN or a proxy.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 127, - "avgSuccessRate": 94, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "SA Rego Check": { - "tool_description": "returns the registration details of your South Australia-registered vehicle or boat.\nInformation returned from this check includes:\nMake\nPrimary Colour\nExpiry Date \nbody or hull type\ncompulsory third-party (CTP) insurer (vehicles only)\nheavy vehicle details (gross vehicle, combination, or trailer mass).", - "score": null - }, - "NIV Bible": { - "tool_description": "An simple and quick web tool that allows you to retrieve data from both Old and New Testament based on a book, chapter or verse. The API provides access to the New International Version (NIV) of the Holy Bible, which is known to be one of the most widely-used translations in the English language.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 6133, - "avgSuccessRate": 100, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "CryptoPriceTracker": { - "tool_description": "You Can Get All Cryptos Price Real Time With Rate Change.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2531, - "avgSuccessRate": 100, - "popularityScore": 6.6, - "__typename": "Score" - } - }, - "Consumer Reports": { - "tool_description": "This API helps to query trusted ratings and reviews for the products, cars and services used every day to create a review site such as : consumerreports.org", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2547, - "avgSuccessRate": 100, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "PMI Jateng": { - "tool_description": "ini adalah data pmi jateng unofficial", - "score": { - "avgServiceLevel": 100, - "avgLatency": 204, - "avgSuccessRate": 100, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "Barcode Lookup": { - "tool_description": "Lookup product data and pricing for over 635 million unique items by UPC, EAN, ISBN codes or search terms.", - "score": { - "avgServiceLevel": 99, - "avgLatency": 271, - "avgSuccessRate": 73, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "COVID-19 News": { - "tool_description": "API to find all news mentioning COVID -19. You can filter news by topic, language, country, website and time period. By newscatcherapi.com", - "score": { - "avgServiceLevel": 100, - "avgLatency": 843, - "avgSuccessRate": 100, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "Hedonometer": { - "tool_description": "With hedonometer.org we’ve created an instrument that measures the happiness of large populations in real time.\r\nOur hedonometer is based on people’s online expressions, capitalizing on data-rich social media, and we’re measuring how people present themselves to the outside world. For our first version of hedonometer.org, we’re using Twitter as a source but in principle we can expand to any data source in any language", - "score": { - "avgServiceLevel": 100, - "avgLatency": 357, - "avgSuccessRate": 100, - "popularityScore": 7.2, - "__typename": "Score" - } - }, - "Diffbot": { - "tool_description": "Diffbot extracts data from web pages automatically and returns structured JSON. For example, our Article API returns an article's title, author, date and full-text. Use the web as your database!\r\n\r\nWe use computer vision, machine learning and natural language processing to add structure to just about any web page.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 5869, - "avgSuccessRate": 100, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "Homeless Shelter": { - "tool_description": "Introducing our National Registered Homeless Shelters API for the United States, featuring an extensive and up-to-date database.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 691, - "avgSuccessRate": 60, - "popularityScore": 7.1, - "__typename": "Score" - } - }, - "YouTube v3_v3": { - "tool_description": "YouTube Data v3 API is a tool for developers to access and manipulate YouTube data, including videos, channels, and playlists, so they can create custom experiences for users.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1074, - "avgSuccessRate": 99, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "KVStore": { - "tool_description": "The simple storage service", - "score": { - "avgServiceLevel": 100, - "avgLatency": 408, - "avgSuccessRate": 99, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "Reddit - Track the mentions and conversations about your business": { - "tool_description": "Find your brand, competitor, or any other query mentions across the Reddit", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1055, - "avgSuccessRate": 100, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "EV Charging Stations": { - "tool_description": "Electric vehicle charging stations full information.", - "score": { - "avgServiceLevel": 72, - "avgLatency": 2129, - "avgSuccessRate": 71, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "Business email compromise (BEC) API\t": { - "tool_description": "This API protect your business from Business email compromise (BEC), it takes email and returns keys risk indicators such as : email validation, blacklisted, phishing, dmarc seurity, spoofing risk, malicious activity.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 7, - "avgSuccessRate": 100, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "Thai Lottery Result": { - "tool_description": "Thai lottery results API, Provided by Thailand-API.com", - "score": { - "avgServiceLevel": 100, - "avgLatency": 94, - "avgSuccessRate": 100, - "popularityScore": 9, - "__typename": "Score" - } - }, - "StopModReposts Blocklist": { - "tool_description": "The StopModReposts Blocklist in different data formats.", - "score": null - }, - "Youtube v3 - alternative": { - "tool_description": "Get data similar to YouTube Data API v3 from this API. Check latest version: [YT-API](https://rapidapi.com/ytjar/api/yt-api)", - "score": { - "avgServiceLevel": 100, - "avgLatency": 367, - "avgSuccessRate": 100, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "Image Search": { - "tool_description": "The Image Search API is a tool that allows developers to integrate image search functionality into their applications or websites.", - "score": { - "avgServiceLevel": 96, - "avgLatency": 1221, - "avgSuccessRate": 95, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "IP Geo Location - Find IP Location and Details": { - "tool_description": "API returns location data such as country, city, latitude, longitude, timezone, asn, currency, security data for IPv4 and IPv6 addresses in JSON formats.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 915, - "avgSuccessRate": 100, - "popularityScore": 8, - "__typename": "Score" - } - }, - "Fake Identity Generator": { - "tool_description": "The most complete and cheap Fake Identity Generation API", - "score": { - "avgServiceLevel": 97, - "avgLatency": 6133, - "avgSuccessRate": 97, - "popularityScore": 8, - "__typename": "Score" - } - }, - "Twitter Pack_v2": { - "tool_description": "Complete pack to get any public information on twitter, includes Twitter Trends, Search Tweet, User Activity", - "score": { - "avgServiceLevel": 96, - "avgLatency": 2155, - "avgSuccessRate": 95, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Whois Lookup_v2": { - "tool_description": "Whois Lookup API in JSON", - "score": { - "avgServiceLevel": 97, - "avgLatency": 2951, - "avgSuccessRate": 97, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "JSearch": { - "tool_description": "Fast and Simple Job Search for jobs posted on LinkedIn, Indeed, Glassdoor, ZipRecruiter, BeBee and many others, all in a single API.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1917, - "avgSuccessRate": 98, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "SERP by Outscraper": { - "tool_description": "Get Search Engine Results Pages from the most common search engine with simple and reliable API provided by Outscraper.\n\nSERP API supports the following fields: organic results, ads, shopping results, related questions, and more.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 120593, - "avgSuccessRate": 100, - "popularityScore": 6.4, - "__typename": "Score" - } - }, - "Get Docs": { - "tool_description": "data", - "score": { - "avgServiceLevel": 100, - "avgLatency": 6, - "avgSuccessRate": 100, - "popularityScore": 5.9, - "__typename": "Score" - } - }, - "TradingFlow Option Flow": { - "tool_description": "Subscribe to TradingFlow TradingFlow Option Flow Api", - "score": null - }, - "Open Brewery DB": { - "tool_description": "Looking for a Beer API? Open Brewery DB is a free API for public information on breweries, cideries, brewpubs, and bottleshops. Currently it is focused to the United States, but future plans are to import world-wide data.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 138, - "avgSuccessRate": 94, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "VALUE SERP": { - "tool_description": "", - "score": { - "avgServiceLevel": 91, - "avgLatency": 4079, - "avgSuccessRate": 91, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "Opensea_v2": { - "tool_description": "Opensea / Blur / Looksrare / x2y2 API - 1,000+ requests/min\n\nSimple & high performance Opensea / Blur / Looksrare / x2y2 API, backed by rotating proxies & API keys\n\n- Crypto Payments Available\n\n- Lifetime Unlimited Requests Licenses Available\n\n- Private Plans with 16 / 32 / 64 / 128 requests/second Available\n\n- Ready made bots written in node.js already configured to work with RapidApi Available.\n\nJoin our Discord to inquire & find out the latest information and tools: \n\nhttps://discord.g...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1012, - "avgSuccessRate": 98, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "Google Search Results Scraper": { - "tool_description": "Scrapes search results from google including ads, translation, weather, knowledge graph results, image search, top news results, people also ask, did you mean, dictionary results and more.", - "score": { - "avgServiceLevel": 83, - "avgLatency": 2108, - "avgSuccessRate": 83, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "runs.tech": { - "tool_description": "Find the technologies that powers a company", - "score": { - "avgServiceLevel": 83, - "avgLatency": 67030, - "avgSuccessRate": 74, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "Addressr": { - "tool_description": "Australian Address Validation, Search and Autocomplete", - "score": { - "avgServiceLevel": 100, - "avgLatency": 488, - "avgSuccessRate": 100, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Crops": { - "tool_description": "Plants for agricultural purposes in Spain: info about taxonomy, growing period, fruit type, categorization, and other. Total of 293 species. Being possible to filter by any of the characteristics mentioned above.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 919, - "avgSuccessRate": 100, - "popularityScore": 9, - "__typename": "Score" - } - }, - "Realtor API for Real Estate Data": { - "tool_description": "Data API for Realtor USA\nYou can use this API to get all the Realtor Property data, Realtor Agents data and Realtor School data.\nCurrently it is from Realtor USA only.\nContact me at: vuesdata@gmail.com or visit https://www.vuesdata.com for building custom spiders or custom requests.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1621, - "avgSuccessRate": 100, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "Youtube video subtitles list": { - "tool_description": "Youtube video subtitle list", - "score": { - "avgServiceLevel": 99, - "avgLatency": 1158, - "avgSuccessRate": 99, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Email Search": { - "tool_description": "Simple and Powerful web search for emails - get emails found on the web given a query and an email domain in real-time.", - "score": { - "avgServiceLevel": 98, - "avgLatency": 75, - "avgSuccessRate": 98, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "IP to Income": { - "tool_description": "Get the per capita income USD/yr with the IP address in the US. Useful in LTV & user valuation modeling", - "score": { - "avgServiceLevel": 100, - "avgLatency": 386, - "avgSuccessRate": 100, - "popularityScore": 6.9, - "__typename": "Score" - } - }, - "Power BI Smartable": { - "tool_description": "The Power BI API offers the Microsoft Power BI news, learning resources, events, samples and other information.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 206, - "avgSuccessRate": 97, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "YouTube Search (Unlimited)": { - "tool_description": "Get YouTube Search Results Without API Key or Quota Restrictions", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1345, - "avgSuccessRate": 100, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "MagicEden": { - "tool_description": "Simple & high performance Magic Eden API, backed by rotating proxies & API keys\n\nCheck out my Opensea / Blur / Looksrare / x2y2 API as well\nhttps://rapidapi.com/openseatools/api/opensea15\n\n- Crypto Payments Available\n\n- Lifetime Unlimited Requests Licenses Available\n\n- Private Plans with 16 / 32 / 64 / 128 requests/second Available\n\n- Ready made bots written in node.js already configured to work with RapidApi Available.\n\nJoin our Discord to inquire & find out the latest information and tools...", - "score": { - "avgServiceLevel": 90, - "avgLatency": 15442, - "avgSuccessRate": 90, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "Wayback machine domain archived lookup": { - "tool_description": "Query domain to discover years available on Wayback Machine", - "score": { - "avgServiceLevel": 100, - "avgLatency": 608, - "avgSuccessRate": 100, - "popularityScore": 7.3, - "__typename": "Score" - } - }, - "Electric Vehicle Charging Stations": { - "tool_description": "Designed to provide users with the ability to search for and locate electric vehicle charging stations. The API includes a vast database of over 50,000 charging stations, with more being added regularly.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 9185, - "avgSuccessRate": 100, - "popularityScore": 7.7, - "__typename": "Score" - } - }, - "Tardis.dev": { - "tool_description": "The most granular data for cryptocurrency markets — tick-level L2 & L3 order book updates, tick-by-tick trades, quotes, open interest, funding rates, liquidations, options chains and more.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1290, - "avgSuccessRate": 50, - "popularityScore": 6.6, - "__typename": "Score" - } - }, - "Fresh LinkedIn Profile Data": { - "tool_description": "One-stop API for all LinkedIn Scraping Needs: profiles, companies, activities/posts, and job posts. This API scrapes data directly from LinkedIn upon request so that you'll get real-time data. Say goodbye to stale data!\n\nWe're active and responsive on this platform, please don't hesitate to drop a message in the Discussions or PM channels.", - "score": { - "avgServiceLevel": 99, - "avgLatency": 4411, - "avgSuccessRate": 99, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "Captcha": { - "tool_description": "Feeling nostalgic? Generate the same old alphanumeric captchas.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 7, - "avgSuccessRate": 91, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "YT-API": { - "tool_description": "An all-in-one Youtube API solution. It provides both data and stream or download info. API solutions for video, shorts, channel, search, playlist, trending, comments, shorts sound attribution, hashtag, URL resolving, etc", - "score": { - "avgServiceLevel": 100, - "avgLatency": 296, - "avgSuccessRate": 100, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "Weather": { - "tool_description": "Current weather data API, and Weather forecast API - Basic access to the Weatherbit.io Weather API.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 322, - "avgSuccessRate": 100, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "MLS Router": { - "tool_description": "The MLS Router API provides consumers access to MLS data feeds to develop apps using Property Listings and Headless Architecture. MLS Router API is ideal for developers across multiple platforms and languages to build their real estate solutions. ", - "score": { - "avgServiceLevel": 99, - "avgLatency": 477, - "avgSuccessRate": 94, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "Zipcodebase Zip Code Search": { - "tool_description": "Zip Code API - Free Access to Worldwide Postal Code Data", - "score": { - "avgServiceLevel": 100, - "avgLatency": 364, - "avgSuccessRate": 100, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "Open Graph SEO Scraper": { - "tool_description": "Extract open graph and social details from any website or URL. Simply provide a URL and the API will retrieve the OpenGraph data you. Very lightweight, fast, and easy to use", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1358, - "avgSuccessRate": 100, - "popularityScore": 8, - "__typename": "Score" - } - }, - "Vietnamese News": { - "tool_description": "Metadata of 250,000+ tagged Vietnamese local news articles from as soon as 2005. Updated hourly.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2052, - "avgSuccessRate": 100, - "popularityScore": 6.1, - "__typename": "Score" - } - }, - "Social Links Search": { - "tool_description": "Search for social profile links on the web - Facebook, TikTok, Instagram, Snapchat, Twitter, LinkedIn, Youtube channels, Pinterest and Github.", - "score": { - "avgServiceLevel": 99, - "avgLatency": 325, - "avgSuccessRate": 99, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Crime Data By ZipCode API": { - "tool_description": "The Crime Data By ZipCode API allows users to retrieve crime scores for a specific Zip Code in the US. It also provides additional information about crime rates and crime rates for nearby locations. ", - "score": { - "avgServiceLevel": 94, - "avgLatency": 4539, - "avgSuccessRate": 94, - "popularityScore": 7.2, - "__typename": "Score" - } - }, - "Pet Store": { - "tool_description": "My test Pet Store API", - "score": { - "avgServiceLevel": 98, - "avgLatency": 662, - "avgSuccessRate": 33, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "Thesaurus by API-Ninjas": { - "tool_description": "Get synonym and antonyms for any word. See more info at https://api-ninjas.com/api/thesaurus.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 669, - "avgSuccessRate": 100, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Global Address": { - "tool_description": "Easily verify, check or lookup address. The Global Address JSON API takes in any global address in one line or multiple lines, and matches it against the best postal reference sources (246 countries and territories) to correct, verify and standardize U.S., Canadian and international addresses.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 113, - "avgSuccessRate": 100, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Kick.com API | Kick API": { - "tool_description": "Detailed Kick.com API. Streamers, categories, chats, users and more.", - "score": { - "avgServiceLevel": 98, - "avgLatency": 3439, - "avgSuccessRate": 98, - "popularityScore": 7.4, - "__typename": "Score" - } - }, - "Twitter Data": { - "tool_description": "Twitter public and private data API for search, Tweets, users, followers, images, media and more.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 994, - "avgSuccessRate": 94, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "Axesso - Instagram Data Service": { - "tool_description": "This API returns data from Instagram like posts, comments, replies and different account informations.", - "score": { - "avgServiceLevel": 92, - "avgLatency": 34451, - "avgSuccessRate": 88, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "Cars by API-Ninjas": { - "tool_description": "Get detailed data on tens of thousands of vehicle models from dozens of automakers. See more info at https://api-ninjas.com/api/cars.", - "score": { - "avgServiceLevel": 99, - "avgLatency": 427, - "avgSuccessRate": 89, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "Unofficial Trust Pilot": { - "tool_description": "This API helps to query data relating to reviews and consumer reports to create a reviewing platform, such as : trustpilot.com", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2335, - "avgSuccessRate": 100, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Real-Time News Data": { - "tool_description": "Extremely Fast and Simple API to get top news globally or per topic and search for news by query and geographic area in real-time.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 797, - "avgSuccessRate": 98, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Currency Exchange": { - "tool_description": "Live currency and foreign exchange rates by specifying source and destination quotes and optionally amount to calculate. Support vast amount of quotes around the world.", - "score": { - "avgServiceLevel": 97, - "avgLatency": 1122, - "avgSuccessRate": 97, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "Random Word Generator": { - "tool_description": "Random words and more provided by RandomWordGenerator.com", - "score": { - "avgServiceLevel": 91, - "avgLatency": 559, - "avgSuccessRate": 91, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "Real-Time Lens Data": { - "tool_description": "Fast and Simple image searches - get visual matches, knowledge graph, text and OCR, object detections and additional data available on Google Lens.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 675, - "avgSuccessRate": 100, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Covid Italy statistics": { - "tool_description": "The italian covid statistics", - "score": { - "avgServiceLevel": 100, - "avgLatency": 4488, - "avgSuccessRate": 100, - "popularityScore": 5.6, - "__typename": "Score" - } - }, - "US Cell Coverage by Zip Code": { - "tool_description": "Check Cell Coverage by zip code for all US networks", - "score": { - "avgServiceLevel": 100, - "avgLatency": 25, - "avgSuccessRate": 100, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "whatsapp data": { - "tool_description": "fetch whatsapp profiles data", - "score": { - "avgServiceLevel": 95, - "avgLatency": 1357, - "avgSuccessRate": 95, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "Simple Salvage Vin Check": { - "tool_description": "Provided by vinalert.com, this simple api will return true or false for any VIN depending on the salvage records that are found. Database has 19.2 million VINs as of April 2020 and adding more daily.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2341, - "avgSuccessRate": 100, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "Scraper's Proxy": { - "tool_description": "Simple HTTP proxy API made for scrapers. Scrape anonymously without having to worry about restrictions, blocks or captchas. Our goal is to provide you with faster response times and higher success rates.", - "score": { - "avgServiceLevel": 99, - "avgLatency": 17288, - "avgSuccessRate": 99, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "World Population": { - "tool_description": "Get interesting information about countries' population", - "score": { - "avgServiceLevel": 85, - "avgLatency": 11978, - "avgSuccessRate": 82, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "GTrend": { - "tool_description": "Discover the power of Google Trends Data API! Stay ahead of the game with real-time insights into trending topics, consumer interests, and popular keywords.", - "score": { - "avgServiceLevel": 94, - "avgLatency": 937, - "avgSuccessRate": 91, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "User": { - "tool_description": "Instagram users", - "score": { - "avgServiceLevel": 100, - "avgLatency": 619, - "avgSuccessRate": 100, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "Cek ID PLN PASCA DAN PRA BAYAR": { - "tool_description": "Cek ID Pelanggan PLN", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1436, - "avgSuccessRate": 100, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "COVID-19 INDIA": { - "tool_description": "COVID-19 Updated using Goverment Database | Coded With ❀ By Hritik R", - "score": { - "avgServiceLevel": 96, - "avgLatency": 7484, - "avgSuccessRate": 96, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "BigBox": { - "tool_description": "", - "score": { - "avgServiceLevel": 50, - "avgLatency": 30351, - "avgSuccessRate": 50, - "popularityScore": 7.6, - "__typename": "Score" - } - }, - "IYS Skill API ": { - "tool_description": "With the skills search API, applications can allow users to search, be shown skills based on the term they type. and based on the skill they select, show the skills that are in the same category", - "score": { - "avgServiceLevel": 98, - "avgLatency": 1012, - "avgSuccessRate": 97, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Randomizer": { - "tool_description": "Fast and straightforward API to retrieve a random sequence of characters!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 92, - "avgSuccessRate": 99, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "VIN Decoder API - Europe": { - "tool_description": "The VIN Decoder API - Europe retrieves information about a vehicle by decoding its Vehicle Identification Number (VIN). It returns details like make, model, year, and engine size for vehicles registered in Europe.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1698, - "avgSuccessRate": 100, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "Africa-Api ": { - "tool_description": "Africa-Api is a comprehensive project that provides a vast range of data about Africa, including countries, languages, tourism destinations, colonial history, and much more. This project offers a user-friendly interface that enables users to easily access and retrieve data about different African countries and their respective histories, languages, and cultures. The Africa-Api project is an invaluable resource for individuals or organizations looking to learn more about the African continent...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 404, - "avgSuccessRate": 100, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "Youtube v3 Lite": { - "tool_description": "Lite version of Youtube Data API v3. Get Youtube data without any Youtube api key", - "score": { - "avgServiceLevel": 100, - "avgLatency": 601, - "avgSuccessRate": 100, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "đŸ”„ All-In-One Crypto Swiss Knife 🚀": { - "tool_description": "Coins, NFTS, Portfolio tracker, Whales, airdrops, news, tweets, YT videos, reddit posts, DeFi protocols,, games, podcasts, events, gas price and more!", - "score": { - "avgServiceLevel": 66, - "avgLatency": 1452, - "avgSuccessRate": 63, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "Whois Lookup_v3": { - "tool_description": "This API pulls up-to-date records from the original data sources in real time, so you can have access to fresh data.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1484, - "avgSuccessRate": 100, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "Dogs by API-Ninjas": { - "tool_description": "Detailed, qualitative information on over 200 different breeds of dogs. See more info at https://api-ninjas.com/api/dogs.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 499, - "avgSuccessRate": 86, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Diablo4 Smartable": { - "tool_description": "The Diablo 4 API offers the Diablo IV news, gameplays, guides, top players, and other information.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 143, - "avgSuccessRate": 92, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "Age Calculator": { - "tool_description": "Returns Age calculation based on requested date. ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 432, - "avgSuccessRate": 94, - "popularityScore": 7.3, - "__typename": "Score" - } - }, - "Request Boomerang": { - "tool_description": "Easily create fake requests with your data, and send what you need to receive. RequestBoomerang will help you to test, prototype, and mock, with real data. Give a boost to your frontend development without waiting for the backend.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 582, - "avgSuccessRate": 100, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "Motivational Quotes": { - "tool_description": "Our Motivational Quotes API is the perfect tool to add an inspiring touch to your project. With our API, you can access a vast library of motivational quotes from famous authors, speakers, and thinkers. These quotes can be used to add motivational content to your app, website, or social media feed.\n\nOur API is hosted on Cloudflare servers with edge technology, ensuring fast and reliable access to the data you need. With our API, you can easily retrieve quotes that fit specific themes or categ...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 873, - "avgSuccessRate": 100, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "BlogsAPI": { - "tool_description": "Get evergreen blogs for your mobile apps.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 685, - "avgSuccessRate": 100, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "PowerBI": { - "tool_description": "The Power BI API offers the Microsoft Power BI news, learning resources, events, samples and other information.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 163, - "avgSuccessRate": 100, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "Geography": { - "tool_description": "Powerful APIs for getting information about Countries and Cities", - "score": { - "avgServiceLevel": 99, - "avgLatency": 570, - "avgSuccessRate": 97, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "dummyData": { - "tool_description": "provides various types of dummy data", - "score": { - "avgServiceLevel": 100, - "avgLatency": 654, - "avgSuccessRate": 100, - "popularityScore": 7.4, - "__typename": "Score" - } - }, - "Local Business Data": { - "tool_description": "Extremely comprehensive and up-to-date local business search - get business reviews and rating, photos, phone, address / location, website, emails / social profiles and 30+ other fields.", - "score": { - "avgServiceLevel": 99, - "avgLatency": 1331, - "avgSuccessRate": 99, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "Redfin Base": { - "tool_description": "[IMPROVED SEARCH API] API Redfin offers a powerful search feature that allows users to easily find their desired properties. With the search tool, users can refine their search based on location, price range, property type, and various other criteria. They can also customize their search by specifying the number of bedrooms and bathrooms, square footage, and other specific features they are looking for in a home. Redfin's search feature provides accurate and up-to-date results, helping users...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1120, - "avgSuccessRate": 100, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "Airdna": { - "tool_description": "API for Short-Term Rental Data Analytics | Vrbo & Airbnb Data | Rentalizer", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1972, - "avgSuccessRate": 100, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "Email address search": { - "tool_description": "Search our database of email addresses by partial match", - "score": { - "avgServiceLevel": 100, - "avgLatency": 473, - "avgSuccessRate": 100, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "FastAPI Project": { - "tool_description": "Python FastAPI Test Project", - "score": { - "avgServiceLevel": 100, - "avgLatency": 621, - "avgSuccessRate": 50, - "popularityScore": 6.6, - "__typename": "Score" - } - }, - "TLD": { - "tool_description": "Collection of official top level domains", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3757, - "avgSuccessRate": 100, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "climate-change-live-api": { - "tool_description": "This API shows climate change news all over the world", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1274, - "avgSuccessRate": 100, - "popularityScore": 7, - "__typename": "Score" - } - }, - "Gloppo Fake API": { - "tool_description": "Gloppo Fake API is a collection of developer friendly endpoints for returning randomly generated data for testing purposes.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 565, - "avgSuccessRate": 100, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "Amazon-Products-API": { - "tool_description": "API to provide amazon products data", - "score": { - "avgServiceLevel": 100, - "avgLatency": 18215, - "avgSuccessRate": 88, - "popularityScore": 8.2, - "__typename": "Score" - } - }, - "Mzansi Loadshedding Api ": { - "tool_description": "Get load sheding schedule for any area by simply searching the town name. Very Easy to use.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1465, - "avgSuccessRate": 100, - "popularityScore": 7, - "__typename": "Score" - } - }, - "ASN Details": { - "tool_description": "Get details about Autonomous System Numbers (ASN), find ASN of IPs/CIDRs, find ASNs of each country etc", - "score": { - "avgServiceLevel": 100, - "avgLatency": 687, - "avgSuccessRate": 100, - "popularityScore": 7.5, - "__typename": "Score" - } - }, - "WhatsApp_Api": { - "tool_description": "To Send Messages From WhatsApp", - "score": { - "avgServiceLevel": 100, - "avgLatency": 405, - "avgSuccessRate": 100, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "Currents News": { - "tool_description": "Currents News API provides JSON format news and articles from forums, blogs, news media outlets with rich metadata.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 729, - "avgSuccessRate": 83, - "popularityScore": 8, - "__typename": "Score" - } - }, - "OpenBlur": { - "tool_description": "Unofficial Listings API for blur.io\n\n- For Blur V1 endpoints use this API: https://rapidapi.com/openseatools/api/opensea15\n\n- Crypto Payments Available\n\n- Lifetime Unlimited Requests Licenses Available\n\n- Private Plans with 16 / 32 / 64 / 128 requests/second Available\n\n- Ready made bots written in node.js already configured to work with RapidApi Available.\n\nJoin our Discord to inquire & find out the latest information and tools: \n\nhttps://discord.gg/Yezs2VDhBV", - "score": { - "avgServiceLevel": 99, - "avgLatency": 87, - "avgSuccessRate": 99, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "EV Charge Finder": { - "tool_description": "Extremely Fast and Simple searches for EV charging stations, anywhere in the world.", - "score": { - "avgServiceLevel": 99, - "avgLatency": 99, - "avgSuccessRate": 99, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "TheClique": { - "tool_description": "API for TheClique company", - "score": { - "avgServiceLevel": 93, - "avgLatency": 5048, - "avgSuccessRate": 93, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Top NFT Collections": { - "tool_description": "Provides up-to-date information on the top NFT collections across various networks, including Ethereum, BNB Chain, Polygon, Arbitrum, Optimism, and Solana.", - "score": { - "avgServiceLevel": 98, - "avgLatency": 2559, - "avgSuccessRate": 93, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "Food Price Inflation": { - "tool_description": "This API provides the percent change of the Inflations Rate for the Food Prices in the last 2 Years independent of the Price Index (CPI) for food is a component of the all-items CPI.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 744, - "avgSuccessRate": 100, - "popularityScore": 7, - "__typename": "Score" - } - }, - "Personator": { - "tool_description": "Easily verify a person’s information, lookup and check customer data. Personator is a lightweight, flexible, and powerful customer verification and enrichment API. Personator all-in-one cloud solution verifies contact data (name, address, e-mail, phone number), appends missing information, updates addresses with geolocation data and augments with numerous demographic traits as well.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 244, - "avgSuccessRate": 100, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "US Gun Laws": { - "tool_description": "Query for gun laws by state or retrieve data for all states.", - "score": { - "avgServiceLevel": 92, - "avgLatency": 30678, - "avgSuccessRate": 92, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "autocomplete india": { - "tool_description": "Autocomplete Indian pincodes, localities, cities, states.", - "score": { - "avgServiceLevel": 98, - "avgLatency": 929, - "avgSuccessRate": 98, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Email and internal links scraper": { - "tool_description": "Email and links scraper allows you to get all emails and internal links from any sent to the API URL", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1492, - "avgSuccessRate": 50, - "popularityScore": 8, - "__typename": "Score" - } - }, - "Youtube Search": { - "tool_description": "Introducing our API for obtaining YouTube Shorts URLs, the perfect solution to unlock an ocean of opportunities and boost your revenue! Our API is designed to seamlessly fetch YouTube Shorts URLs based on specific keywords, allowing you to retrieve multiple videos at once that match your search criteria. This feature empowers users to download and integrate a curated selection of YouTube Shorts into various platforms, applications, or projects. By leveraging the power of YouTube Shorts, you c...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1689, - "avgSuccessRate": 98, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "Location and Time": { - "tool_description": "A collection of location and time utilities. You can search for country/city information worldwide, find out distance between two locations/cities, get location data from IP address, solve any time questions regarding different timezones, get sunrise/sunset times at any location, get holiday information worldwide, and much more!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 764, - "avgSuccessRate": 85, - "popularityScore": 9, - "__typename": "Score" - } - }, - "aircraftscatter": { - "tool_description": "Aircraft Scatter API by ADSBexchange.com", - "score": { - "avgServiceLevel": 97, - "avgLatency": 516, - "avgSuccessRate": 97, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "car-averages": { - "tool_description": "The Car Price and Odometer Averages API is a powerful and comprehensive endpoint designed to provide users with valuable insights into the average pricing and odometer readings for various makes, models, and years of vehicles in different locales. This API is perfect for automotive businesses, car enthusiasts, and individuals seeking to make informed decisions when purchasing or selling vehicles.\n\nBy using this API, you can access a wealth of information related to vehicle pricing and odomete...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 7021, - "avgSuccessRate": 100, - "popularityScore": 8, - "__typename": "Score" - } - }, - "SERP Results": { - "tool_description": "Get Search Engine Results with simple API (SERP API)", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1586, - "avgSuccessRate": 100, - "popularityScore": 8.2, - "__typename": "Score" - } - }, - "FilePursuit": { - "tool_description": "Search the web for files, videos, audios, eBooks & much more.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 702, - "avgSuccessRate": 100, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Indian Mobile info": { - "tool_description": "The Indian Mobile Info API is a powerful tool for those who need quick and easy access to important information about Indian mobile numbers. With this API, you can enter any 10 digit Indian mobile number and get detailed information such as location, provider, type, and more. This API is especially useful for businesses, researchers, and anyone else who needs to gather data on Indian mobile numbers.\nRecently, on Aug-23-2018, this API has been updated and bugs fixed, ensuring that the data pro...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1520, - "avgSuccessRate": 100, - "popularityScore": 6.4, - "__typename": "Score" - } - }, - "IP reputation, geoip and detect VPN": { - "tool_description": "Block fraud attempts in realtime. This ridiculously effective API provides invaluable information about any IP address. Detect bots, prevent fraud and abuse by detecting users trying to hide behind a VPN, proxy, or TOR. Geolocate IP addresses to find out which country or city the website visitors are from.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 558, - "avgSuccessRate": 100, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "scrape for me": { - "tool_description": "scrape remotely for me through python server;\nany website instead of making the execution on your device , \nserver code is using requests & beautifulsoup\nmake sure your scripts are legal and did write it currectly", - "score": { - "avgServiceLevel": 100, - "avgLatency": 744, - "avgSuccessRate": 33, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "Car database": { - "tool_description": "Database of car makes and models", - "score": { - "avgServiceLevel": 100, - "avgLatency": 7, - "avgSuccessRate": 100, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "Vibrant DNS": { - "tool_description": "Get DNS record information", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2519, - "avgSuccessRate": 100, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "YouTube Influencer Search": { - "tool_description": "The YouTube Influencer Search API returns the most relevant influencers for your target keyword or domain.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2149, - "avgSuccessRate": 95, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "Website Contacts Scraper": { - "tool_description": "Scrape emails, phone numbers and social profiles (Facebook, TikTok, Instagram, Twitter, LinkedIn and more) from a website domain in real-time.", - "score": { - "avgServiceLevel": 99, - "avgLatency": 2534, - "avgSuccessRate": 99, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "Referential DB": { - "tool_description": "Get global countries, states, and cities data. Filter and display results in multiple languages.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 462, - "avgSuccessRate": 100, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "Dicolink": { - "tool_description": "Dicolink API lets you retrieve information about French words, including definitions, synonyms, antonyms, quotes, expressions, lexical field, scrabble score, and much more...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 244, - "avgSuccessRate": 94, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Linkedin Profile Data Api": { - "tool_description": "LinkedIn profile data API provides LinkedIn profile data as JSON response.\nIf you have any trouble or need more, please feel free to contact me https://rapidapi.com/rockdevs-rockdevs-default/api/linkedin-profile-data-api/details", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1326, - "avgSuccessRate": 100, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Awesome RSS": { - "tool_description": "Generating RSS is super easy", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1409, - "avgSuccessRate": 67, - "popularityScore": 6.2, - "__typename": "Score" - } - }, - "MoodRing": { - "tool_description": "Get the mood from Storybox's MoodRing", - "score": { - "avgServiceLevel": 100, - "avgLatency": 870, - "avgSuccessRate": 100, - "popularityScore": 8, - "__typename": "Score" - } - }, - "TikTok API": { - "tool_description": "Reliable TikTok API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2208, - "avgSuccessRate": 100, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "YouTube Media Downloader": { - "tool_description": "A scraper API for YouTube search and download. Get videos, subtitles, comments without age or region limits (proxy URL supported).", - "score": { - "avgServiceLevel": 100, - "avgLatency": 839, - "avgSuccessRate": 98, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "PostcodeJP-API": { - "tool_description": "Japan postal code and address. Please check https://postcode-jp.com for details.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 53, - "avgSuccessRate": 100, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "CheckThatPhone": { - "tool_description": "Real-time phone validation and data lookup for US numbers. All-in-one: carrier look-up, line type, portability status, geoIP, timezone, and routing.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 787, - "avgSuccessRate": 96, - "popularityScore": 9, - "__typename": "Score" - } - }, - "YouTube": { - "tool_description": "With the YouTube Data API, you can add various YouTube features to your app. Use the API for search, videos, playlists, channels and more.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1978, - "avgSuccessRate": 99, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "Local Rank Tracker": { - "tool_description": "Ultra-Fast and Reliable Local Grid Search - see Google My Business ranking on a map in real-time.", - "score": { - "avgServiceLevel": 99, - "avgLatency": 116, - "avgSuccessRate": 99, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "Cryptocurrencies data collection": { - "tool_description": "Get millions of news and articles about Crypto (cryptocurrencies) data collection from media sources around the world and in multiple languages ​​in real time. Bitcoin, Etehreum, Cardano, Solidity, Solana, AAVE, NFT, metaverse, etc.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1950, - "avgSuccessRate": 100, - "popularityScore": 8, - "__typename": "Score" - } - }, - "WikiHow": { - "tool_description": "Retrieve random out-of-context text and images from WikiHow articles", - "score": { - "avgServiceLevel": 100, - "avgLatency": 692, - "avgSuccessRate": 100, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "Car Specs": { - "tool_description": "Fast, simple and reliable API to retrieve car data. Contains data on almost all car manufacturers and models, updated regularly.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 317, - "avgSuccessRate": 89, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "Motivational Content": { - "tool_description": "Get motivational quotes and motivational pictures.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 820, - "avgSuccessRate": 96, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "Address From To Latitude Longitude": { - "tool_description": "Free API to convert coordinates (latitude, longitude) to and from address An Easy, Open, Worldwide, Free Geocoding API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 803, - "avgSuccessRate": 100, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "Domain SEO Analysis": { - "tool_description": "Bishopi's advanced and real-time proprietary SEO metrics for domain names investors, keywords research and SEO professionals. - More on Bishopi.io ", - "score": { - "avgServiceLevel": 99, - "avgLatency": 6433, - "avgSuccessRate": 99, - "popularityScore": 9, - "__typename": "Score" - } - }, - "Genderizeio": { - "tool_description": "Predict the gender of a person based on their name.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1083, - "avgSuccessRate": 100, - "popularityScore": 7.1, - "__typename": "Score" - } - }, - "Rainforest": { - "tool_description": "", - "score": { - "avgServiceLevel": 42, - "avgLatency": 10056, - "avgSuccessRate": 42, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "frrefe": { - "tool_description": "eferfrefe", - "score": { - "avgServiceLevel": 100, - "avgLatency": 103, - "avgSuccessRate": 100, - "popularityScore": 6.8, - "__typename": "Score" - } - }, - "QRMaster API": { - "tool_description": "Generate High-Quality QR Codes with Ease", - "score": { - "avgServiceLevel": 100, - "avgLatency": 4577, - "avgSuccessRate": 100, - "popularityScore": 7.3, - "__typename": "Score" - } - }, - "BaseConverterAPI": { - "tool_description": "An API that converts a number from one base to another", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1449, - "avgSuccessRate": 100, - "popularityScore": 7, - "__typename": "Score" - } - }, - "Data.Police.UK": { - "tool_description": "This is the unofficial documentation for the Data.Police.UK API.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 434, - "avgSuccessRate": 100, - "popularityScore": 8.2, - "__typename": "Score" - } - }, - "Corona virus World and India data": { - "tool_description": "COVID-19 World and India data (Depricated since 13th August 2021)", - "score": { - "avgServiceLevel": 100, - "avgLatency": 512, - "avgSuccessRate": 100, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Tomba": { - "tool_description": "Search or verify lists of email addresses in minutes", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3150, - "avgSuccessRate": 97, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "BuiltWith Domain": { - "tool_description": "Get web technology current and usage history for a domain going back to 2000.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 866, - "avgSuccessRate": 100, - "popularityScore": 7, - "__typename": "Score" - } - }, - "Token Forwarding": { - "tool_description": "Automatic token forwarding once funds are received. Support BNB, BEP20, ETH and ERC20 tokens.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 637, - "avgSuccessRate": 91, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "Cats by API-Ninjas": { - "tool_description": "Get detailed facts for every cat breed. See more info at https://api-ninjas.com/api/cats.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 426, - "avgSuccessRate": 91, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "VinHub": { - "tool_description": "Provide popular vehicle history reports for cars from USA & Canada", - "score": { - "avgServiceLevel": 100, - "avgLatency": 470, - "avgSuccessRate": 100, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Subtitles for YouTube_v3": { - "tool_description": "Api for fetching YouTube subtitles", - "score": { - "avgServiceLevel": 100, - "avgLatency": 616, - "avgSuccessRate": 100, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "yoonit": { - "tool_description": "Parse quantities and units from text / text replace", - "score": { - "avgServiceLevel": 75, - "avgLatency": 5685, - "avgSuccessRate": 75, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "Random Chunk API": { - "tool_description": "A simple random picker for names, movies, TV shows, quotes, and numbers. A simple JSON object, user object, and array generator.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 782, - "avgSuccessRate": 100, - "popularityScore": 7, - "__typename": "Score" - } - }, - "Youtube v3_v2": { - "tool_description": "Get youtube data without any youtube data api key", - "score": { - "avgServiceLevel": 100, - "avgLatency": 379, - "avgSuccessRate": 100, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "Azure": { - "tool_description": "The Azure Every Day API offers the Microsoft Azure news, learning resources, events, influencers and other information.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 158, - "avgSuccessRate": 96, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "Domain Info": { - "tool_description": "This API returns informations on any domain online.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3725, - "avgSuccessRate": 100, - "popularityScore": 7.5, - "__typename": "Score" - } - }, - "Zillow": { - "tool_description": "Fast and highly available API. For-sale, rental listings and agens real-time data from Zillow.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 569, - "avgSuccessRate": 100, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "DNS Records Lookup": { - "tool_description": "Fast DNS Records Lookup", - "score": { - "avgServiceLevel": 100, - "avgLatency": 105, - "avgSuccessRate": 76, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "Domain WHOIS Lookup API": { - "tool_description": "The WHOIS Lookup API is a powerful, RESTful API that allows you to retrieve WHOIS information for any registered domain name. This API provides a simple and fast way to access detailed WHOIS data, including domain owner, registration date, expiration date, and more. Whether you're building a domain search tool, conducting research on domain ownership, or developing a new application that requires WHOIS data, this API is the perfect solution.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2229, - "avgSuccessRate": 100, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Book": { - "tool_description": "get and save testing book data", - "score": { - "avgServiceLevel": 100, - "avgLatency": 6, - "avgSuccessRate": 100, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "Consulta CNPJ Tempo Real": { - "tool_description": "API Tempo Real de Consultas a Receita Federal, Simples Nacional e Cadastro de Contribuintes (SINTEGRA).", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3198, - "avgSuccessRate": 99, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "Email": { - "tool_description": "Analyse the content of an Email Address and check if it is valid or not. Email API can recode the Email Address if any common error or misspelling is found. The API can also check for invalid or fake DNS. [This API is under maintenance and is not working properly] ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2125, - "avgSuccessRate": 100, - "popularityScore": 7.5, - "__typename": "Score" - } - }, - "Chain49": { - "tool_description": "Kickstart your next crypto project - extended trezor/blockbook API with 10+ blockchains available instantly and 50+ possible on request running on the finest hardware in Germany's best datacenters at Hetzner\n\nWebsocket only via api.chain49.com endpoint possible (RapidAPI does not support it yet)", - "score": { - "avgServiceLevel": 100, - "avgLatency": 68, - "avgSuccessRate": 99, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "jobtitle": { - "tool_description": "jobtitle", - "score": { - "avgServiceLevel": 100, - "avgLatency": 605, - "avgSuccessRate": 100, - "popularityScore": 8, - "__typename": "Score" - } - }, - "Indonesian National Identity Card Validator": { - "tool_description": "Indonesian NIC Validator & Detail Finder API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1084, - "avgSuccessRate": 100, - "popularityScore": 8.2, - "__typename": "Score" - } - }, - "Diagnostics Code List": { - "tool_description": "Diagnostics Code List", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1237, - "avgSuccessRate": 83, - "popularityScore": 7.6, - "__typename": "Score" - } - }, - "Global Patent": { - "tool_description": "Search global patents from world-wide countries with your keyword for freemium", - "score": { - "avgServiceLevel": 90, - "avgLatency": 4001, - "avgSuccessRate": 90, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "Zenserp": { - "tool_description": "Our SERP API allows you to Scrape Search results from Search Engines and obtain valuable SEO data insights", - "score": { - "avgServiceLevel": 66, - "avgLatency": 4073, - "avgSuccessRate": 66, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "Whois Lookup_v4": { - "tool_description": "WHOIS API (v1) returns well-parsed WHOIS records with fields in JSON formats for any domain name.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2844, - "avgSuccessRate": 100, - "popularityScore": 7.2, - "__typename": "Score" - } - }, - "Pocket Cube Solver": { - "tool_description": "Returns the list of all optimal solutions ( QTM not HTM ) for a given pocket cube ( 2x2x2 ) position.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1556, - "avgSuccessRate": 100, - "popularityScore": 7.4, - "__typename": "Score" - } - }, - "RaastaAPI": { - "tool_description": "This API provides access to the database that contains road-related information about Karachi, Pakistan. ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 976, - "avgSuccessRate": 100, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "Wayback Machine": { - "tool_description": "The Internet Archive Wayback Machine supports a number of different APIs to make it easier for developers to retrieve information about Wayback capture data.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 436, - "avgSuccessRate": 100, - "popularityScore": 6.7, - "__typename": "Score" - } - }, - "Bible Memory Verse Flashcard": { - "tool_description": "This KJV Bible API allows users to retrieve verses/chapters in 1 of 6 formats.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1087, - "avgSuccessRate": 100, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "Zillow Data v2": { - "tool_description": "Real-time data, unofficial API Zillow com, search for-sale and rental listings\n\nZillow is a leading real estate website in the United States that provides information on buying, selling, renting, and investing in properties such as homes, apartments, and condos.\n", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1814, - "avgSuccessRate": 100, - "popularityScore": 9, - "__typename": "Score" - } - }, - "Article Content Extractor": { - "tool_description": "Provide a URL and get main article content from news articles or blog", - "score": { - "avgServiceLevel": 100, - "avgLatency": 762, - "avgSuccessRate": 100, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "Cat Facts": { - "tool_description": "Get a list of cat facts.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 241, - "avgSuccessRate": 100, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Linkedin Company and Profile Data": { - "tool_description": "Introducing our LinkedIn Company and Profile Data API! With our API, you can access valuable insights and data from LinkedIn's vast network of professionals and companies. Our API provides real-time access to company and profile information, including company size, industry, employee information, job titles, and more. With this data, you can create powerful applications that empower your users with actionable insights and help them make informed decisions. Whether you're building a recruiting...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1193, - "avgSuccessRate": 38, - "popularityScore": 9, - "__typename": "Score" - } - }, - "English Words": { - "tool_description": "4, 5 and 6 letter english words with meanings to create your own word based games", - "score": { - "avgServiceLevel": 100, - "avgLatency": 907, - "avgSuccessRate": 100, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "Get Companies By SIC Code API": { - "tool_description": "The Get Companies By SIC Code API allows users to retrieve information on companies based on their Standard Industrial Classification (SIC) code. The SIC code is a numerical classification system that groups similar industries together and is used to classify businesses by the type of economic activity in which they engage.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 908, - "avgSuccessRate": 81, - "popularityScore": 7.1, - "__typename": "Score" - } - }, - "UK Real Estate Rightmove": { - "tool_description": "Real-time data, unofficial API rightmove co uk\n\nRightmove is a leading UK Real Estate website in the United Kingdom. With the aim of providing detailed and reliable information about various types of properties, Rightmove has become an important destination for individuals looking to buy, sell, or rent property in the UK", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1439, - "avgSuccessRate": 100, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "Random Quotes V1": { - "tool_description": "", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2361, - "avgSuccessRate": 100, - "popularityScore": 7.7, - "__typename": "Score" - } - }, - "fake users": { - "tool_description": "fake users is a Api that give you fake users", - "score": { - "avgServiceLevel": 100, - "avgLatency": 219, - "avgSuccessRate": 100, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "Free stopwords": { - "tool_description": "StopwordAPI.com offers an easy solution for you to retrive words that you want to remove from a string. This filtering process is common in NLP (Natural Language Processing) algoritms and whenever you want to remove words from user input in your software application. StopwordAPI.com has ordered the words into useful categories making it easy for you to only download the words you need - eventhough you do not know the language.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 4511, - "avgSuccessRate": 100, - "popularityScore": 8.2, - "__typename": "Score" - } - }, - "SSH Honeypot": { - "tool_description": "SSH honeypot data including logins, commands, and proxy requests", - "score": { - "avgServiceLevel": 100, - "avgLatency": 30, - "avgSuccessRate": 100, - "popularityScore": 6.9, - "__typename": "Score" - } - }, - "Zip Code Master": { - "tool_description": "Profile and demographic data for every US ZIP code in JSON format.", - "score": { - "avgServiceLevel": 86, - "avgLatency": 300, - "avgSuccessRate": 76, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "SnapChat Story": { - "tool_description": "Download all stories and account information easy , Channel : https://t.me/keepdeving , Dm : https://t.me/PPooP", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1805, - "avgSuccessRate": 100, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "Zillow Base": { - "tool_description": "[IMPROVED SEARCH API] These APIs provide a powerful and user-friendly real estate search feature. Users can enter an address, city, state, or ZIP code to search for apartments, houses, land, and homes for rent or sale in the United States. Additionally, they can customize their search results by using filters to specify price, square footage, property type, number of bedrooms and bathrooms, construction year, and various other criteria. Furthermore, users can view detailed information about e...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2599, - "avgSuccessRate": 100, - "popularityScore": 9, - "__typename": "Score" - } - }, - "Quotes by API-Ninjas": { - "tool_description": "Access over 50,000 quotes from famous people. See more info at https://api-ninjas.com/api/quotes.", - "score": { - "avgServiceLevel": 99, - "avgLatency": 461, - "avgSuccessRate": 99, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "MetaAPI Mindfulness Quotes": { - "tool_description": "Get a random quote about mindfulness from a list of 100 quotes.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 499, - "avgSuccessRate": 50, - "popularityScore": 7.3, - "__typename": "Score" - } - }, - "AI Random User Generator": { - "tool_description": "AI-based freemium API for generating random user data with AI. Like Lorem Ipsum, but for people.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 577, - "avgSuccessRate": 100, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "Fake Data Generator": { - "tool_description": "With this API you can generate fake random data with different predefined layouts or define your own layout.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 703, - "avgSuccessRate": 100, - "popularityScore": 7.6, - "__typename": "Score" - } - }, - "iOS Store": { - "tool_description": "Get API access to iOS Store data", - "score": { - "avgServiceLevel": 97, - "avgLatency": 6316, - "avgSuccessRate": 97, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "Messages": { - "tool_description": "Unlock an endless stream of inspiration with our Messages API. Choose from a variety of categories, including Love, Friendship, Good Morning, Good Night, Funny, Birthday, Sad, Sweet, and Random, to access over 20,000 carefully curated messages from our database. Whether you're looking for a heartfelt quote or a funny pick-me-up, our API has you covered.", - "score": { - "avgServiceLevel": 90, - "avgLatency": 545, - "avgSuccessRate": 90, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "FastYTAPI": { - "tool_description": "Fetch YouTube info: channel, videos, video recommendations, search for channels and special endpoint: recommended channels for a given channel.\n\nAnd much more to come! Chat with us in the community section. Let us know what you like, what you don't like, what you are missing. We are a team of developers dedicated to make this the best YouTube API ever!\n\nLast but not least, have an awesome day :)", - "score": { - "avgServiceLevel": 83, - "avgLatency": 6004, - "avgSuccessRate": 75, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "Rich NFT API + Metadata": { - "tool_description": "Rich NFT API. Browse collections, tokens, metadata, holders, activities, transfers", - "score": { - "avgServiceLevel": 100, - "avgLatency": 6023, - "avgSuccessRate": 62, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "EAN13 Code Generator API": { - "tool_description": "This API return a EAN13 Barcode in PNG format, based on input of a 12 or 13 lenght code", - "score": { - "avgServiceLevel": 100, - "avgLatency": 757, - "avgSuccessRate": 100, - "popularityScore": 6.1, - "__typename": "Score" - } - }, - "ASN Lookup": { - "tool_description": "Autonomous System Numbers (ASN) internet search engine to quickly lookup updated information about specific ASN, Organization, CIDR, or registered IP addresses (IPv4 and IPv6) among other relevant data.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 610, - "avgSuccessRate": 91, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "Sign Hexagram": { - "tool_description": "æäŸ›ç”ç­ŸćœšçșżæŠœç­Ÿè§Łç­Ÿă€ç”ç­Ÿç„žćŠć ćœă€‚", - "score": { - "avgServiceLevel": 67, - "avgLatency": 1241, - "avgSuccessRate": 67, - "popularityScore": 7.6, - "__typename": "Score" - } - }, - "Url Metadata: OpenGraph": { - "tool_description": "Retrieve comprehensive site metadata effortlessly with our powerful Site Metadata API. Access a wealth of information about any web page, including OpenGraph tags, page title, description, author, image, and more. Whether you're building a content aggregator, social media tool, or SEO analytics platform, our API provides a streamlined solution to gather rich site metadata. Enrich your applications with valuable insights and enhance user experiences using our Site Metadata API.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1414, - "avgSuccessRate": 100, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "Lexicala": { - "tool_description": "Lexicala API is a REST interface offering access to dictionary and lexical data from our monolingual, bilingual, multilingual and learner’s dictionaries in JSON format.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 188, - "avgSuccessRate": 100, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "FreeCurrencyAPI - free currency data": { - "tool_description": "Our free currency conversion API is the perfect tool to handle your exchange rate conversions. Stop worrying about uptime and outdated data. Let our servers do the work and focus on more important things.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 50, - "avgSuccessRate": 100, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "Sex Offenders": { - "tool_description": "National Registered Sex Offenders API for the United States. 750k+ offender records, 1M+ crimes, 19k+ cities, and all 50 states. Supports lat, lng search with radius. More info https://offenders.io/", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1819, - "avgSuccessRate": 100, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "Crypto Gem Finder": { - "tool_description": "Find your next gem crypto! Browse popular today, trending and recently added coins", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1462, - "avgSuccessRate": 100, - "popularityScore": 7, - "__typename": "Score" - } - }, - "100% Success Instagram API - Scalable & Robust": { - "tool_description": "750 requests a minute, 100% success rate Instagram API, any scale is supported. Need help/ custom plan? contact us on Telegram: https://t.me/apimaster10 Join the channel for updates: https://t.me/socialdataapis", - "score": { - "avgServiceLevel": 97, - "avgLatency": 2812, - "avgSuccessRate": 96, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "Fresh LinkedIn Company Data": { - "tool_description": "**Real-time** LinkedIn Company data based on Numeric ID, Domain or URL. **Really working now 2023**. Scalable API.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3693, - "avgSuccessRate": 100, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "Axesso - Facebook Data Service": { - "tool_description": "Axesso API to query facebook data like posts, comments and corresponding replies.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 7967, - "avgSuccessRate": 95, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "US Counties": { - "tool_description": "Detailed and accurate information about every US county and county equivalent in JSON format.", - "score": { - "avgServiceLevel": 79, - "avgLatency": 685, - "avgSuccessRate": 79, - "popularityScore": 8.2, - "__typename": "Score" - } - }, - "IP Geolocation - IPWHOIS.io": { - "tool_description": "You can use https://ipwhois.io/ to filter out bot traffic, customize content based on visitor's location, display full country names, perform bulk IP geolocation, and more.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 38, - "avgSuccessRate": 100, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "4D Dream Dictionary": { - "tool_description": "Interpretation of your dream to 4/3 digits lucky draw number.ïŒˆäž‡ć­—æąŠćąƒèŸžć…žïŒ‰", - "score": { - "avgServiceLevel": 78, - "avgLatency": 1166, - "avgSuccessRate": 78, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "Google Trends US": { - "tool_description": "Gives the list of trending search results in the United States at the current time.", - "score": { - "avgServiceLevel": 98, - "avgLatency": 805, - "avgSuccessRate": 98, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "Proxy-Spider Proxies": { - "tool_description": "The most reliable premium proxy servers list. Http and socks proxies updated daily in IP PORT txt, json, csv and xml format.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 301, - "avgSuccessRate": 100, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "vin-decoder_v4": { - "tool_description": "Get the most accurate data from your VIN globally or specific locale. Our VIN decoder API is used by various automotive businesses: online stores, forums, portals, blogs and VIN decoding services all around the globe. ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1165, - "avgSuccessRate": 100, - "popularityScore": 6.3, - "__typename": "Score" - } - }, - "Website Analyze and SEO Audit (PRO)": { - "tool_description": "Analyze website and get seo audit report and speed report , onpage and offpage reports, informations about domain , hosting and more", - "score": { - "avgServiceLevel": 100, - "avgLatency": 4283, - "avgSuccessRate": 100, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "Indonesia Hotspot and Fire Location Data": { - "tool_description": "This API provides Hotspot data or fires in the FRS system use MODIS hotspot data processed and published by Indonesian National Institute of Aeronautics and Space (LAPAN).", - "score": { - "avgServiceLevel": 93, - "avgLatency": 40988, - "avgSuccessRate": 93, - "popularityScore": 8, - "__typename": "Score" - } - }, - "scout": { - "tool_description": "scouting how rapidapi works", - "score": { - "avgServiceLevel": 100, - "avgLatency": 602, - "avgSuccessRate": 100, - "popularityScore": 5.5, - "__typename": "Score" - } - }, - "Country List": { - "tool_description": "Get All Country List, (Get State and District List of India)", - "score": { - "avgServiceLevel": 94, - "avgLatency": 2753, - "avgSuccessRate": 94, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Lorem Ipsum Api": { - "tool_description": "Generate Lorem Ipsum placeholder text for your applications.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 312, - "avgSuccessRate": 100, - "popularityScore": 7.8, - "__typename": "Score" - } - }, - "Random User by API-Ninjas": { - "tool_description": "Random user data generator for placeholders and testing. See more info at https://api-ninjas.com/api/randomuser", - "score": { - "avgServiceLevel": 100, - "avgLatency": 190, - "avgSuccessRate": 100, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "BIN/IIN Lookup": { - "tool_description": "", - "score": { - "avgServiceLevel": 100, - "avgLatency": 845, - "avgSuccessRate": 100, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "VRM STR Tools": { - "tool_description": "Vacation Rental Management and Short Term Rental Tools. Get Airbnb Reviews, Airbnb Ratings, VRBO Reviews", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1865, - "avgSuccessRate": 100, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "seo api": { - "tool_description": "Simple SERP API with accurate, real-time search engine results by location, device, and language. Data for SEO, news, scholar, images, and videos.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 692, - "avgSuccessRate": 100, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "YT Data API_v2": { - "tool_description": "YT Data API is an application programming interface (API) that enables users to search for videos, retrieve video details, and access comments on the YouTube platform. It allows developers and third parties to integrate YouTube features into their applications or services, offering functionalities like video search, detailed video information retrieval, and comment management. With YT Data API, users can programmatically interact with YouTube's vast video library, enhancing their applications...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 966, - "avgSuccessRate": 99, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "URL Intelligence": { - "tool_description": "Extracts links from a target URL and provides linking metadata ", - "score": { - "avgServiceLevel": 97, - "avgLatency": 2611, - "avgSuccessRate": 91, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "Company Logo": { - "tool_description": "Clearbit api alternative. ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1254, - "avgSuccessRate": 75, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "Iframely": { - "tool_description": "Providing a simple API for embedding content from any URL", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1133, - "avgSuccessRate": 97, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "Netflix Data": { - "tool_description": "Netflix data API provides details, stats and information of TV shows, movies, series, documentaries and more.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1607, - "avgSuccessRate": 100, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "Jiosaavn": { - "tool_description": "Get Jiosaavn Data (Get all possible data of songs, albums, playlists & lyrics)", - "score": { - "avgServiceLevel": 97, - "avgLatency": 2147, - "avgSuccessRate": 97, - "popularityScore": 9, - "__typename": "Score" - } - }, - "Blur": { - "tool_description": "Unofficial API for blur.io - 1,000+ requests/min\n\nSimple & high performance Blur API, backed by rotating proxies & API keys\n\nCheck out my Opensea / Looksrare / x2y2 API as well\nhttps://rapidapi.com/openseatools/api/opensea15\n\n- Crypto Payments Available\n\n- Lifetime Unlimited Requests Licenses Available\n\n- Private Plans with 16 / 32 / 64 / 128 requests/second Available\n\n- Ready made bots written in node.js already configured to work with RapidApi Available.\n\nJoin our Discord to inquire & fin...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1053, - "avgSuccessRate": 84, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Livescan a Domain": { - "tool_description": "Get essential (24 data points) domain information realtime with one simple call.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1420, - "avgSuccessRate": 100, - "popularityScore": 8, - "__typename": "Score" - } - }, - "Thai Lottery": { - "tool_description": "Api for serve result of Thailand lottory. - API àžȘàčàžČàž«àžŁàž±àžšàž”àž¶àž‡àž‚àč‰àž­àžĄàžčàž„àžœàž„àžàžČàžŁàž­àž­àžàžŁàžČàž‡àž§àž±àž„àžȘàž„àžČàžàžàžŽàž™àčàžšàčˆàž‡àžŁàž±àžàžšàžČàž„ àž‚àč‰àž­àžĄàžčàž„àž•àž±àč‰àž‡àčàž•àčˆàž­àž”àž”àž• àžˆàž™àž–àž¶àž‡àž‡àž§àž”àž›àž±àžˆàžˆàžžàžšàž±àž™ àž­àž±àžžàč€àž”àž—àž—àž±àž™àž—àž”àž«àž„àž±àž‡àžˆàžČàžàžœàž„àžȘàž„àžČàžàž­àž­àžàž­àžąàčˆàžČàž‡àč€àž›àč‡àž™àž—àžČàž‡àžàžČàžŁ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 333, - "avgSuccessRate": 67, - "popularityScore": 7.3, - "__typename": "Score" - } - }, - "api-telecom": { - "tool_description": "servicio de prueba api", - "score": { - "avgServiceLevel": 100, - "avgLatency": 7, - "avgSuccessRate": 100, - "popularityScore": 6.5, - "__typename": "Score" - } - }, - "German Cities": { - "tool_description": "Returns information about all German cities with more than 2500 inhabitants: Number of inhabitants, average age and more", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1458, - "avgSuccessRate": 100, - "popularityScore": 6.1, - "__typename": "Score" - } - }, - "NREL National Renewable Energy Laboratory": { - "tool_description": "The National Renewable Energy Laboratory's developer network helps developers access and use energy data via Web services, including renewable energy and alternative fuel data.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 446, - "avgSuccessRate": 100, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "G Search": { - "tool_description": "Web search API using best search engine", - "score": { - "avgServiceLevel": 93, - "avgLatency": 287, - "avgSuccessRate": 93, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "IP WHOIS & Geolocation": { - "tool_description": "This service is provided by ipfinder.ch and offers precise data on both IPv4 and IPv6 addresses, including information on the associated AS, company, location, abuse contact, and more. This API is one of the most accurate IP WHOIS lookups available and offers 35 different specifications for each IP, making it an excellent tool for both exact analysis and statistical purposes. In addition to its accuracy, this API is also affordable, making it an excellent choice for businesses and individuals...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 960, - "avgSuccessRate": 100, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Arbeitnow Free Job Board": { - "tool_description": "A Job Board API for jobs in Germany and remote with visa sponsorship, relocation support and 4 day work week jobs.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 185, - "avgSuccessRate": 100, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Keyword Research for Youtube": { - "tool_description": "Unlock the Power of Youtube Keyword Research for Your Youtube Channel with our API. Get Accurate Monthly Search Volume, Keyword Difficulty, and Competition Details to Drive Traffic and Boost Views!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1979, - "avgSuccessRate": 100, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "Crypto Prices API": { - "tool_description": "Crypto prices API is an API that provides updates on the status of your favorite crypto coins. It's designed to be used by developers who are building apps and websites that need to know the information on a cryptocurrency.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1071, - "avgSuccessRate": 100, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "US ZIP Code to Income": { - "tool_description": "Get ZIP code level individual per-capita USD/yr income data in the US. Useful in LTV & user valuation modeling.", - "score": { - "avgServiceLevel": 98, - "avgLatency": 201, - "avgSuccessRate": 98, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "Person App": { - "tool_description": "Gender API. Create personalised experiences by inferring gender from a name.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 84, - "avgSuccessRate": 100, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "Youtube Trending": { - "tool_description": "Unofficial API to gather video information from the trending section of Youtube", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1041, - "avgSuccessRate": 100, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Amazon Web Scraping API": { - "tool_description": "Provides access to amazon product details, customer reviews, product images, videos, and more, with support for all Amazon websites across the globe. Whether you're a developer building an e-commerce app or a business looking to enhance your customer experience, our API has got you covered. Try it today and start integrating Amazon product data into your application or website.\n\nCheckout our channel of telegram: https://t.me/+EkKIVZiiDQthMmYx", - "score": { - "avgServiceLevel": 97, - "avgLatency": 7960, - "avgSuccessRate": 94, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "Leetcode Compensation": { - "tool_description": "An API service to obtain HOT posts of Leetcode Discuss Compensation", - "score": { - "avgServiceLevel": 100, - "avgLatency": 19965, - "avgSuccessRate": 100, - "popularityScore": 7.6, - "__typename": "Score" - } - }, - "Indian Names": { - "tool_description": "API for fetching Indian Names", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1607, - "avgSuccessRate": 100, - "popularityScore": 8.2, - "__typename": "Score" - } - }, - "SimilarWeb (historical data)": { - "tool_description": "More than 36 month visits and countries share SimilarWeb data ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1241, - "avgSuccessRate": 100, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "Advanced SERP Operators": { - "tool_description": "Real-Time & Accurate Advanced Search Engine Results. REST API for SERP and SEO data. - More at: bishopi.io", - "score": { - "avgServiceLevel": 87, - "avgLatency": 2304, - "avgSuccessRate": 64, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "Contact Scraper": { - "tool_description": "This API is really helpful if you want to extract emails or phone numbers from any website without any challenges or coding issues.\nThis API is one of the finest and least expensive ones available, and it produces good and accurate results since it is built on very effective algorithms and precise regex.\nAhmed Elban developed this API.\n# Currently, This API cannot handle JS and doesn't use proxies so if you intend to use it on a website using js or need proxies, it won't work\nso please use cr...", - "score": { - "avgServiceLevel": 99, - "avgLatency": 7827, - "avgSuccessRate": 40, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "Lorem Ipsum by API-Ninjas": { - "tool_description": "Generate configurable lorem ipsum placeholder text. See more info at https://api-ninjas.com/api/loremipsum", - "score": { - "avgServiceLevel": 100, - "avgLatency": 632, - "avgSuccessRate": 100, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "Busy and Popular Times": { - "tool_description": "The goal of this API is to provide an option to use Google popular times data, until it is available via Google's API.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3422, - "avgSuccessRate": 100, - "popularityScore": 7.6, - "__typename": "Score" - } - }, - "Cloudflare bypass": { - "tool_description": "Unofficial Cloudflare bypass - 1,000+ requests/min\n\nSimple & high performance API, backed by rotating proxies & API keys\n\n- Crypto Payments Available\n\n- Lifetime Unlimited Requests Licenses Available\n\n- Private Plans with 16 / 32 / 64 / 128 requests/second Available\n\nJoin our Discord to inquire & find out the latest information and tools: \n\nhttps://discord.gg/Yezs2VDhBV", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1298, - "avgSuccessRate": 97, - "popularityScore": 8, - "__typename": "Score" - } - }, - "JoJ Web Search": { - "tool_description": "JoJ Web Search API. Search the world's information, including webpages, related keywords and more.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1641, - "avgSuccessRate": 100, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "Latest Laptop Deals": { - "tool_description": "Planning to buy a new laptop but want to save as much money as you can? Look no further! From gaming laptop to general or productivity use, this API will get the latest available laptop deals for you.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 661, - "avgSuccessRate": 100, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "Websites on same IP": { - "tool_description": "Search all domains on a shared IP address", - "score": { - "avgServiceLevel": 100, - "avgLatency": 577, - "avgSuccessRate": 100, - "popularityScore": 7.6, - "__typename": "Score" - } - }, - "Get Population": { - "tool_description": "Get world population in realtime. 🌍", - "score": { - "avgServiceLevel": 99, - "avgLatency": 330, - "avgSuccessRate": 99, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Linkedin Profiles": { - "tool_description": "Scraping data from LinkedIn is hard. This simple API solves this problem and extracts LinkedIn profiles and company data reliably. Backed by programmatic browsers and rotating proxies. Examlple URLs it can scrape: https://www.linkedin.com/company/nextera-energy-inc?trk=public_profile_experience-group-header (company profile) and https://www.linkedin.com/in/williamhgates (personal profile). Local domains are supported as well: https://nl.linkedin.com/in/stefanvandervliet?trk=public_profile_bro...", - "score": { - "avgServiceLevel": 94, - "avgLatency": 5603, - "avgSuccessRate": 89, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "Domain Analysis": { - "tool_description": "Analyze and evaluate domain names for their value and ROI with enriched Whois API data for domainrs and SEO professionals - More at: bishopi.io", - "score": { - "avgServiceLevel": 94, - "avgLatency": 4563, - "avgSuccessRate": 94, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "Car Utils": { - "tool_description": "FREE resources for checking VIN, getting the market value of your car, estimating the cost of ownership in US, checking fuel economy, and more to come.", - "score": { - "avgServiceLevel": 98, - "avgLatency": 660, - "avgSuccessRate": 80, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Hubspot APIs": { - "tool_description": "Hubspot api", - "score": { - "avgServiceLevel": 100, - "avgLatency": 87776, - "avgSuccessRate": 100, - "popularityScore": 5.6, - "__typename": "Score" - } - }, - "Google Search 2": { - "tool_description": "Serpdog(https://serpdog.io) is a Google Search API that allows you to access Google Search Results in real time. It solves the problem of proxies and captchas for a smooth scraping journey. Serpdog supports results in both HTML and JSON format.\n\nGet your free trial by registering at https://api.serpdog.io\n\nIf you want to buy our plan, I recommend you to please visit https://serpdog.io/pricing for more information. ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 9, - "avgSuccessRate": 100, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Yelp Reviews": { - "tool_description": "Extremely Fast and Simple Yelp business searches and reviews.", - "score": { - "avgServiceLevel": 97, - "avgLatency": 329, - "avgSuccessRate": 97, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "World Coordinates to Income": { - "tool_description": "Get sub-city level individual per-capita USD/yr income data from across the globe.\nUseful in LTV & user valuation modeling.", - "score": { - "avgServiceLevel": 44, - "avgLatency": 2856, - "avgSuccessRate": 44, - "popularityScore": 7.8, - "__typename": "Score" - } - }, - "Sample API": { - "tool_description": "A sample API data", - "score": { - "avgServiceLevel": 100, - "avgLatency": 24613, - "avgSuccessRate": 100, - "popularityScore": 7.6, - "__typename": "Score" - } - }, - "Player Data": { - "tool_description": "SSCB players", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1076, - "avgSuccessRate": 80, - "popularityScore": 7.2, - "__typename": "Score" - } - }, - "Rest Countries": { - "tool_description": "Countries' data—name, flag (form Twitter icons), ISO-codes, etc", - "score": { - "avgServiceLevel": 100, - "avgLatency": 78, - "avgSuccessRate": 100, - "popularityScore": 9, - "__typename": "Score" - } - }, - "Real Estate Records": { - "tool_description": "Real estate transaction records for New York City and whole New Jersey. Public records have been collected from various sites, standardized using Here.com API, with geolocation information for your consumption. ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 737, - "avgSuccessRate": 100, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "Provinces of Thailand": { - "tool_description": "àžˆàž±àž‡àž«àž§àž±àž” \nGET https://provinces-of-thailand.p.rapidapi.com/province/\nGET https://provinces-of-thailand.p.rapidapi.com/province/id/{number}\nGET https://provinces-of-thailand.p.rapidapi.com/province/code/{number}\nàž­àžłàč€àž àž­ \nGET https://provinces-of-thailand.p.rapidapi.com/district \nàž•àžłàžšàž„\nGET https://provinces-of-thailand.p.rapidapi.com/subdistrict", - "score": { - "avgServiceLevel": 100, - "avgLatency": 954, - "avgSuccessRate": 100, - "popularityScore": 6.3, - "__typename": "Score" - } - }, - "Uers API": { - "tool_description": "Fake users data for Employee Management", - "score": { - "avgServiceLevel": 60, - "avgLatency": 15317, - "avgSuccessRate": 40, - "popularityScore": 7.3, - "__typename": "Score" - } - }, - "Address Monitor": { - "tool_description": "Monitor EVM network address transactions and get prompt and reliable webhook call with transaction details", - "score": { - "avgServiceLevel": 100, - "avgLatency": 78, - "avgSuccessRate": 100, - "popularityScore": 9, - "__typename": "Score" - } - }, - "Web Search": { - "tool_description": "Billions of webpages, images and news with a single API call. Visit us at: usearch.com", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1849, - "avgSuccessRate": 100, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "TelephoneToCountry": { - "tool_description": "Validate and get location information about phone number. Supports 245 countries", - "score": { - "avgServiceLevel": 100, - "avgLatency": 830, - "avgSuccessRate": 65, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "Phishing Url Risk API": { - "tool_description": "This API helps you detect if the URL is legitimate or a phishing link, It prevents against phishing, Suspicious URL and fraudulent link. API check url Redirecting risk, SubDomains, HTTPS, Domain Regulation Length, IframeRedirection, Age of Domain, DNS Recording, WebsiteTraffic.", - "score": { - "avgServiceLevel": 99, - "avgLatency": 31909, - "avgSuccessRate": 99, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "Payment card numbers generator": { - "tool_description": "A simple service to generate random credit/debit card numbers", - "score": { - "avgServiceLevel": 100, - "avgLatency": 602, - "avgSuccessRate": 100, - "popularityScore": 8.2, - "__typename": "Score" - } - }, - "Vessel Data": { - "tool_description": "Global live on board vessels information.", - "score": { - "avgServiceLevel": 65, - "avgLatency": 2297, - "avgSuccessRate": 65, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "Car Data": { - "tool_description": "Use this API to pull relevant automobile data such as the car make, model, type, and year.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 892, - "avgSuccessRate": 100, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "ScrapeMaster": { - "tool_description": "ScrapeMaster is a Web Scraping API that helps you to scrap data from any website, you can: - Get all page data. - Get data by \"tag\" - Get data by \"class\" - Get data by \"id\" - Get data by \"research a specific word/string\" in the tag's text - Get data by \"research a specific part of attribute\" in the tag selector This API helps you to scrap complex and specific data.", - "score": { - "avgServiceLevel": 79, - "avgLatency": 74529, - "avgSuccessRate": 79, - "popularityScore": 8, - "__typename": "Score" - } - }, - "Google Play API": { - "tool_description": "Detaied Google Play API. Search, Suggest, Category Search, Dev Data, App Data etc.", - "score": { - "avgServiceLevel": 96, - "avgLatency": 44, - "avgSuccessRate": 96, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "Industry NAICS Search": { - "tool_description": "Find the NAICS code base on free search or find all description of industry for a given NAICS code", - "score": { - "avgServiceLevel": 100, - "avgLatency": 261, - "avgSuccessRate": 100, - "popularityScore": 7.8, - "__typename": "Score" - } - }, - "Historical YouTube Data": { - "tool_description": "Historical channel views and subscribers for YouTube channels.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 59, - "avgSuccessRate": 100, - "popularityScore": 6.4, - "__typename": "Score" - } - }, - "DataEstado": { - "tool_description": "Un esfuerzo por recopilar informaciĂłn de las instituciones pĂșblicas de la AdministraciĂłn Central del Estado chileno.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3107, - "avgSuccessRate": 100, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "ask-ai": { - "tool_description": "Introducing ask-ai - the friend all your friends already have! ask-ai is here to make all your mundane tasks easier and faster than ever. \nWith instant, personalized responses to all your requests, ask-ai will make sure you never feel alone. \nPlus, ask-ai is fully equipped with some seriously hilarious one-liners- so get ready to laugh out loud! đŸ€–", - "score": { - "avgServiceLevel": 0, - "avgLatency": 9626, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "q-study": { - "tool_description": "for learning", - "score": null - }, - "hellonext": { - "tool_description": "for hello next app", - "score": { - "avgServiceLevel": 100, - "avgLatency": 365, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "data_visualisation_": { - "tool_description": "nothing to describe", - "score": { - "avgServiceLevel": 100, - "avgLatency": 41443, - "avgSuccessRate": 100, - "popularityScore": 7.2, - "__typename": "Score" - } - }, - "TDot School Data": { - "tool_description": "Data about tdscb locations", - "score": { - "avgServiceLevel": 100, - "avgLatency": 707, - "avgSuccessRate": 100, - "popularityScore": 7.7, - "__typename": "Score" - } - }, - "periodicTable": { - "tool_description": "It provides detailed information about periodic table", - "score": { - "avgServiceLevel": 100, - "avgLatency": 77, - "avgSuccessRate": 100, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "DCPS Project": { - "tool_description": "Gets all DCPS Data", - "score": { - "avgServiceLevel": 100, - "avgLatency": 7204, - "avgSuccessRate": 96, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "Chemical Elements": { - "tool_description": "This API retrieves data of chemical elements and their properties collected from authoritative sources in JSON format", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1531, - "avgSuccessRate": 100, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "Bhagavad Gita_v3": { - "tool_description": "This is api for the Bhagavad Gita book. A Hindu scripture.", - "score": { - "avgServiceLevel": 0, - "avgLatency": 50052, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "Events UEL": { - "tool_description": "events.uel.edu.vn", - "score": null - }, - "kittichai": { - "tool_description": "Education", - "score": { - "avgServiceLevel": 100, - "avgLatency": 349, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Old English Translator": { - "tool_description": "Convert modern day English phrases to Old English, the language of the Anglo-Saxons.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 365, - "avgSuccessRate": 100, - "popularityScore": 7.8, - "__typename": "Score" - } - }, - "todo": { - "tool_description": "to doo list", - "score": null - }, - "Random Word": { - "tool_description": "The application generating random words is very useful not only as a tool for various parlor games but it is also essential for the authors of articles or literary works.\r\nThe application is developed in cooperation with nlp centre. According to parameters entered by a user it returns a random word as a text.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1019, - "avgSuccessRate": 100, - "popularityScore": 6.1, - "__typename": "Score" - } - }, - "LeetcodeApi": { - "tool_description": "The API fetches basic information of a LeetCode profile based on the provided username.", - "score": { - "avgServiceLevel": 98, - "avgLatency": 15634, - "avgSuccessRate": 98, - "popularityScore": 6.8, - "__typename": "Score" - } - }, - "GetBooksInfo": { - "tool_description": "GetBooksInfo API will give you information about the top 3 relevant books you searched for including its pdf link. With our API, you can easily integrate book search functionality into your applications, websites, or services. Whether you're building a book recommendation platform, a digital library, or a book review website, our API provides the data you need to enhance your user experience.", - "score": { - "avgServiceLevel": 97, - "avgLatency": 15038, - "avgSuccessRate": 84, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "COVID19PH": { - "tool_description": "COVID", - "score": { - "avgServiceLevel": 100, - "avgLatency": 461, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Top 2023 IT Certifications": { - "tool_description": "A list of Top IT Certifications for 2023", - "score": { - "avgServiceLevel": 100, - "avgLatency": 769, - "avgSuccessRate": 50, - "popularityScore": 5.5, - "__typename": "Score" - } - }, - "Aeries": { - "tool_description": "The Aeries API is a web-based, REST API system.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 610, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "Miraisoft Training": { - "tool_description": "Miraisoft Training", - "score": { - "avgServiceLevel": 100, - "avgLatency": 7, - "avgSuccessRate": 100, - "popularityScore": 8, - "__typename": "Score" - } - }, - "Test_Crypto_Api": { - "tool_description": "Test_Crypto_Api", - "score": { - "avgServiceLevel": 100, - "avgLatency": 364, - "avgSuccessRate": 0, - "popularityScore": 0, - "__typename": "Score" - } - }, - "Physical quantities, constants and equations ": { - "tool_description": "This API retrieves physical quantities,constants and equations formatted as JSON ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1283, - "avgSuccessRate": 100, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "Learn to read and write Japanese kanji": { - "tool_description": "Free API to the Kanji alive web application with CC-BY licensed language data on Japanese kanji, radicals and associated media files.", - "score": { - "avgServiceLevel": 98, - "avgLatency": 710, - "avgSuccessRate": 98, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "Numbers Translator": { - "tool_description": "Convert numerical numbers to words. For example 23879908709817834 will give you \"Twenty-three quadrillion eight hundred seventy-nine trillion nine hundred eight billion seven hundred nine million eight hundred seventeen thousand eight hundred thirty-four\".", - "score": { - "avgServiceLevel": 100, - "avgLatency": 24, - "avgSuccessRate": 100, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Learning Engine": { - "tool_description": "Easily integrate Memre adaptive learning software with your internal systems to optimize memory retention, build lasting knowledge, and create expertise.", - "score": null - }, - "Word of the day": { - "tool_description": "Get the word of the day with type and meaning etc.", - "score": { - "avgServiceLevel": 71, - "avgLatency": 4647, - "avgSuccessRate": 71, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "Book Finder": { - "tool_description": "Find books by title, author, series, and reading complexity. Try the demo: [https://bookfinder-1-r7047837.deta.app](https://bookfinder-1-r7047837.deta.app/)", - "score": { - "avgServiceLevel": 100, - "avgLatency": 501, - "avgSuccessRate": 96, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "futboleta": { - "tool_description": "student practice for academy", - "score": null - }, - "thefluentme": { - "tool_description": "The AI-powered language pronunciation API with ChatGPT", - "score": { - "avgServiceLevel": 98, - "avgLatency": 10253, - "avgSuccessRate": 86, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Real Estate Exam": { - "tool_description": "Questions, answers, and flash cards to ace the National Real Estate exam.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 367, - "avgSuccessRate": 100, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "Samyutam Eduction": { - "tool_description": "What is the best tool to publish online api documentation.", - "score": null - }, - "Urban Dictionary": { - "tool_description": "Access all of the Urban Dictionary, the one-stop shop for slang definitions", - "score": { - "avgServiceLevel": 100, - "avgLatency": 148, - "avgSuccessRate": 100, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "message-api": { - "tool_description": "Some message api", - "score": { - "avgServiceLevel": 0, - "avgLatency": 0, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "weather": { - "tool_description": "weather prediction app", - "score": { - "avgServiceLevel": 0, - "avgLatency": 0, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "APIGabin": { - "tool_description": "L'api de gabin", - "score": { - "avgServiceLevel": 100, - "avgLatency": 354, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "TestAPI": { - "tool_description": "OliAPI", - "score": { - "avgServiceLevel": 100, - "avgLatency": 6, - "avgSuccessRate": 100, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "Master Dictionary": { - "tool_description": "A dictionary rich information for a word with definitions, meanings, phonetics, synonyms and much more.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 663, - "avgSuccessRate": 88, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "Random Ukrainian Word": { - "tool_description": "Get multiple or single Ukrainian words from a list of 150.000+ words.", - "score": { - "avgServiceLevel": 97, - "avgLatency": 799, - "avgSuccessRate": 94, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "Numbers": { - "tool_description": "An API for interesting facts about numbers. Provides trivia, math, date, and year facts about numbers. \r\n\r\nFor example, \"5 is the number of platonic solids\", \"42 is the number of little squares forming the left side trail of Microsoft's Windows 98 logo\", \"February 27th is the day in 1964 that the government of Italy asks for help to keep the Leaning Tower of Pisa from toppling over\"", - "score": { - "avgServiceLevel": 100, - "avgLatency": 185, - "avgSuccessRate": 100, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "TED Talks API": { - "tool_description": "Get TED talks based on multiple different parameters and filtering options, from the speaker, topic, talk duration, and more.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 344, - "avgSuccessRate": 94, - "popularityScore": 9, - "__typename": "Score" - } - }, - "mony": { - "tool_description": " get mony", - "score": null - }, - "Dictionary": { - "tool_description": "Dictionaries API gives you access to our world-renowned dictionary data, including definitions, translations, synonyms, and audio pronunciations.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1248, - "avgSuccessRate": 100, - "popularityScore": 9, - "__typename": "Score" - } - }, - "Pluralsight Articles": { - "tool_description": "An API for a huge amount of articles for the newest software techologies, development and much more...", - "score": { - "avgServiceLevel": 0, - "avgLatency": 780, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Tutorial": { - "tool_description": "for tutorials", - "score": null - }, - "Indonesia School List": { - "tool_description": "This API provides School List in Indonesia by Province (Propinsi), City (Kabupaten), and District (Kecamatan).", - "score": { - "avgServiceLevel": 98, - "avgLatency": 931, - "avgSuccessRate": 98, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "Quotes": { - "tool_description": "Get Random Quotes", - "score": { - "avgServiceLevel": 100, - "avgLatency": 6, - "avgSuccessRate": 100, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "News space": { - "tool_description": "Space news scraper API for project", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2096, - "avgSuccessRate": 100, - "popularityScore": 6.8, - "__typename": "Score" - } - }, - "tapzulecountry": { - "tool_description": "country", - "score": null - }, - "Tech Exams": { - "tool_description": "Tech Exams offers flexible, affordable and the most up to date test banks for self-study training and exam creation. Practice exams for CompTIA, and coming soon, Microsoft, EC-Council, SANS, PMI, ISC2, CISCO, ISACA, CITRIX, ITIL, VMware, Juniper.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 525, - "avgSuccessRate": 94, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "Allah Name": { - "tool_description": "99 name of Allah with Arabic as well as English word and with explanation and benefit", - "score": { - "avgServiceLevel": 100, - "avgLatency": 214, - "avgSuccessRate": 100, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "Helioviewer v1": { - "tool_description": "Helioviewer is an open-source project for the visualization of solar and heliospheric data, funded by ESA and NASA.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 436, - "avgSuccessRate": 100, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "lm_API": { - "tool_description": "an weather map API for LM", - "score": null - }, - "weather_v3": { - "tool_description": "weather", - "score": { - "avgServiceLevel": 100, - "avgLatency": 353, - "avgSuccessRate": 0, - "popularityScore": 0, - "__typename": "Score" - } - }, - "Uncovered Treasure": { - "tool_description": "The Uncovered Treasure API has more than 25,000 revealed truths from every Book and chapter in the Bible as recorded by Phil Largent over the last 25 years.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 141, - "avgSuccessRate": 100, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "TCYonlineDictionary": { - "tool_description": "TCYonlineDictionary for antonyms and synonyms", - "score": { - "avgServiceLevel": 100, - "avgLatency": 189, - "avgSuccessRate": 0, - "popularityScore": 0, - "__typename": "Score" - } - }, - "weatherJS": { - "tool_description": "testing api project", - "score": null - }, - "aftab": { - "tool_description": "aftab api", - "score": null - }, - "Reading Home APIs": { - "tool_description": "Join the millions of readers who turn to Reading Home digital library to access bookss including Personal Growth, True Crime, Business, Travel, Non-Fiction, Contemporary Fiction, YA, Science Fiction, and more.\n\nDownload App at\n\nhttps://play.google.com/store/apps/details?id=com.elabdtech.reading_home", - "score": { - "avgServiceLevel": 0, - "avgLatency": 696, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "sekolah": { - "tool_description": "penilaian sekolah", - "score": null - }, - "Hadiths API": { - "tool_description": "A collection of hadiths API in one place, Sahih Bukhari, Sahih muslim, Ibn majah, Abu Dawud. working on compiling timidhi and nezai insha Allah.", - "score": { - "avgServiceLevel": 97, - "avgLatency": 932, - "avgSuccessRate": 95, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "Uurrooster_v2": { - "tool_description": "Widget", - "score": { - "avgServiceLevel": 100, - "avgLatency": 348, - "avgSuccessRate": 0, - "popularityScore": 0, - "__typename": "Score" - } - }, - "Drillster 2.0": { - "tool_description": "Drillster is an open cloud based memorization platform that helps users learn more in less time. Use our API to integrate with Drillster or to create your own memorization solution.\r\n\r\nFor detailed information about this API, please refer to http://www.drillster.com/info/api-2/.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 274, - "avgSuccessRate": 3, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "USDA": { - "tool_description": "United States Government Data and API.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 282, - "avgSuccessRate": 100, - "popularityScore": 7.6, - "__typename": "Score" - } - }, - "paultest": { - "tool_description": "test", - "score": null - }, - "Dr Almotawa Quotes": { - "tool_description": "This API provides above 40000 Arabic quotes by Dr Abdulaziz Almotawa.", - "score": { - "avgServiceLevel": 91, - "avgLatency": 2634, - "avgSuccessRate": 91, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "democracia": { - "tool_description": "prueba democracia", - "score": null - }, - "Current Affairs Of India": { - "tool_description": "Current Affairs and daily quizzes.", - "score": { - "avgServiceLevel": 84, - "avgLatency": 39679, - "avgSuccessRate": 80, - "popularityScore": 8.2, - "__typename": "Score" - } - }, - "Random Words - Spanish and French": { - "tool_description": "Generates random words or list of words of selected lengths, in either Spanish or French.", - "score": { - "avgServiceLevel": 0, - "avgLatency": 541, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Code For You": { - "tool_description": "CodeIsFun", - "score": { - "avgServiceLevel": 100, - "avgLatency": 7, - "avgSuccessRate": 0, - "popularityScore": 0, - "__typename": "Score" - } - }, - "apiDeveloper": { - "tool_description": "apiDeveloper test", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1343, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "Dictionary Translation Hablaa": { - "tool_description": "FREE Dictionary Translation API Hablaa. Use it to translate words from and into more than 160 languages. The API use is free and requires no authentication. Have fun!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 812, - "avgSuccessRate": 100, - "popularityScore": 9, - "__typename": "Score" - } - }, - "Stars API": { - "tool_description": "API to serve information about stars and planets scraped from wikipedia. Get to know over 200 stars and surrounding planets, in just a few lines of code.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 822, - "avgSuccessRate": 100, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "Random Words": { - "tool_description": "Random words api provides you a list of random words or a single random word", - "score": { - "avgServiceLevel": 100, - "avgLatency": 638, - "avgSuccessRate": 97, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "nguyenthanhduy178.tk": { - "tool_description": "nguyenthanhduy178.tk", - "score": null - }, - "fachaApi": { - "tool_description": "testing", - "score": { - "avgServiceLevel": 100, - "avgLatency": 14, - "avgSuccessRate": 100, - "popularityScore": 7.7, - "__typename": "Score" - } - }, - "nail": { - "tool_description": "new001", - "score": null - }, - "Safe Exam": { - "tool_description": "Web platform to take programming exams safely.", - "score": null - }, - "SevenTraderAPI": { - "tool_description": "Football API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 419, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "yosi": { - "tool_description": "yosi", - "score": { - "avgServiceLevel": 100, - "avgLatency": 86, - "avgSuccessRate": 100, - "popularityScore": 7.1, - "__typename": "Score" - } - }, - "Dictionary Data API": { - "tool_description": "A concise linguistic resource delivering pronunciation, definition, part of speech, and example usage for words via a single GET endpoint. Enrich your applications with accurate language insights.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 563, - "avgSuccessRate": 36, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "Aircraft data simple collection": { - "tool_description": "This API gives you information about an aircraft. We have collected this data from multiple sources. You get data from multiple sources at once using a single request.", - "score": { - "avgServiceLevel": 25, - "avgLatency": 20425, - "avgSuccessRate": 25, - "popularityScore": 2.1, - "__typename": "Score" - } - }, - "TrackingPackage": { - "tool_description": "track ups, fedex,usps and DHL packages.\nWindows store app available → https://www.microsoft.com/store/apps/9PHP0Z68X02N?cid=rapidAPI", - "score": { - "avgServiceLevel": 100, - "avgLatency": 589, - "avgSuccessRate": 100, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "Airports by API-Ninjas": { - "tool_description": "Access vital data for 30,000 different airports worldwide. See more info at https://api-ninjas.com/api/airports.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 582, - "avgSuccessRate": 100, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "Airlines by API-Ninjas": { - "tool_description": "General and detailed fleet information for over 1,000 airlines. See more info at https://api-ninjas.com/api/airlines.", - "score": { - "avgServiceLevel": 98, - "avgLatency": 458, - "avgSuccessRate": 95, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "aqls-b2c-system": { - "tool_description": "AQLS for railway transport queue line management", - "score": null - }, - "Travel Hacking Tool": { - "tool_description": "Complete and up-to-date database with detailed information about IATA airports, IATA airlines, countries, alliances and more.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 491, - "avgSuccessRate": 98, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "Vehicle RC Information_v2": { - "tool_description": "Fetch any Indian Vehicle's Information through it's Registration Number/License Plate.\nThis API can fetch:-\n[+] Owner Name\n[+] Owner's Father Name\n[+] Owner's Permanent & Current Address\n[+] Vehicle Details\n[+] Financer Details\n[+] Permit & Insurance Details\n[+] NOC Details\n.......And Much More\n\nTags: Parivahan mParivahan Vehicle Info RC Details India Car Info Car Info RC database", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1329, - "avgSuccessRate": 100, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "US Gas Prices": { - "tool_description": "Simplest and most comprehensive API for average gas price data in the US.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 160, - "avgSuccessRate": 100, - "popularityScore": 7.3, - "__typename": "Score" - } - }, - "Datamo": { - "tool_description": "Datamo is a RESTful API that provides extensive electric and combustion vehicle specification data.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 975, - "avgSuccessRate": 100, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "OpenNWI": { - "tool_description": "An open-source API to access local walk scores and regional bike and transit data for any address recognized by US Census Geocoding.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 532, - "avgSuccessRate": 85, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "AutoYMM": { - "tool_description": "Ecommerce Automotive Year Make Model Data", - "score": { - "avgServiceLevel": 100, - "avgLatency": 965, - "avgSuccessRate": 100, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "Flight Radar": { - "tool_description": "The world's most popular flight tracker API which helps you to create Flight tracker application, such as : flightradar24.com", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2040, - "avgSuccessRate": 100, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "InfoCarsAPI": { - "tool_description": "Access detailed car data and captivating visuals effortlessly.", - "score": { - "avgServiceLevel": 98, - "avgLatency": 6575, - "avgSuccessRate": 98, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "VIN Lookup by API-Ninjas": { - "tool_description": "Find vehicle information from Vehicle Identification Numbers. See more info at https://api-ninjas.com/api/vinlookup.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 577, - "avgSuccessRate": 100, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "Aircraft by API-Ninjas": { - "tool_description": "Detailed technical specs on over 1000 airplane models. See more info at https://api-ninjas.com/api/aircraft", - "score": { - "avgServiceLevel": 100, - "avgLatency": 508, - "avgSuccessRate": 96, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "Waze": { - "tool_description": "Fetch alerts, traffic jams information and driving directions from Waze/Google in real-time.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2275, - "avgSuccessRate": 100, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "Driving Directions": { - "tool_description": "Get driving directions and best routes from an origin to a destination in real-time.", - "score": { - "avgServiceLevel": 61, - "avgLatency": 1025, - "avgSuccessRate": 61, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "Taxi Fare Calculator": { - "tool_description": "How much does a taxi cost? Estimate your taxicab fare & rates. Get your taxi fare now and compare taxi prices. Taxi Fare Calculator provides taxi & cab fares for any trip in any city. The API provides you with a price for the best possible route for your cab ride.", - "score": { - "avgServiceLevel": 76, - "avgLatency": 572, - "avgSuccessRate": 75, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "ADSBx Flight Sim Traffic": { - "tool_description": "ADSBexchange.com traffic feed for flight simulators", - "score": { - "avgServiceLevel": 99, - "avgLatency": 329, - "avgSuccessRate": 99, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "AP sample": { - "tool_description": "AR sample", - "score": { - "avgServiceLevel": 100, - "avgLatency": 879, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Car API": { - "tool_description": "Search vehicles sold in the United States by year, make, model, trim, engine, body, mileage, VIN decoder and more.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 240, - "avgSuccessRate": 100, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "Brazilian airlines real flights data": { - "tool_description": "✈ This is an API that provides real brazilian airlines flights information.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 9523, - "avgSuccessRate": 100, - "popularityScore": 7.6, - "__typename": "Score" - } - }, - "TimeTable Lookup ": { - "tool_description": "Access Worldwide Flight Schedules with connection building.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 100, - "avgSuccessRate": 100, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "Canadian Gas Prices": { - "tool_description": "Provides current gas prices in Canada. Try the `/locations-list` endpoint to view all supported locations.", - "score": { - "avgServiceLevel": 99, - "avgLatency": 2346, - "avgSuccessRate": 95, - "popularityScore": 9, - "__typename": "Score" - } - }, - "Helicopter by API-Ninjas": { - "tool_description": "Detailed technical specs for a wide range of helicopter models. See more info at https://api-ninjas.com/api/helicopter.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 406, - "avgSuccessRate": 98, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "Motorcycles by API-Ninjas": { - "tool_description": "Detailed technical specifications on tens of thousands of motorcycle models. See more info at https://api-ninjas.com/api/motorcycles.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 652, - "avgSuccessRate": 100, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "Flight Information of Hong Kong International Airport": { - "tool_description": "The data of Flight Information of Hong Kong International Airport is provided by Hong Kong International Airport. This web service returns historical data (previous calendar day) in JSON format based on parameters provided by user.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 206, - "avgSuccessRate": 95, - "popularityScore": 8.2, - "__typename": "Score" - } - }, - "FachaAPI": { - "tool_description": "Multi Purpose API, including Temporary Disposable Email Detection, Aircraft Database and Live Aircraft Data", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1092, - "avgSuccessRate": 100, - "popularityScore": 6.8, - "__typename": "Score" - } - }, - "Instagram_v13": { - "tool_description": "Real time Instagram Data! Plans with low price! Write a message for special plan!", - "score": { - "avgServiceLevel": 0, - "avgLatency": 127257, - "avgSuccessRate": 0, - "popularityScore": 0.4, - "__typename": "Score" - } - }, - "Telegram_v2": { - "tool_description": "Real-time Telegram data API. Get messages and information directly from Telegram Channels/Groups.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1280, - "avgSuccessRate": 100, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "Instagram API - Media Downloader": { - "tool_description": "Cheapest Instagram API: HD profile pictures, download stories, reels, videos, photos and more!", - "score": { - "avgServiceLevel": 94, - "avgLatency": 3517, - "avgSuccessRate": 84, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "TokApi - mobile version": { - "tool_description": "Highly available tiktok **mobile** API. We are doing our best for make your life easy.Bigger API plans and **additional functionality** are available on request. Feel free to contact us on Telegram: [https://t.me/somjik_tokapi](https://t.me/somjik_tokapi) #tiktok #tik #tok #tik-tok #video #music #user #feed #hashtag #challenge #trending #trend #comments #comment #image #photo #media #search #scrapper #grabber", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1327, - "avgSuccessRate": 99, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "Tweesky": { - "tool_description": "From a web page creates a customisable Social Media card which can be shared on all Social Media.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 309, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Instagram_v7": { - "tool_description": "Get information from Instagram reliably", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1729, - "avgSuccessRate": 100, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "Instagram Statistics API": { - "tool_description": "Universal Instagram, YouTube, TikTok, Facebook, Twitter, Telegram, Viber, Dzen, VK.com, OK.ru, Rutube, VC.ru, TenChat Statistics API.\nActual metrics (Followers, Fake Followers, Engagement Rate, Mentions, Quality Score, ...) and history. Business and Influencers audience demographics, interest categories.\n\nSearch accounts by country, demographics, category and more metrics.\n\n", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1086, - "avgSuccessRate": 100, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "Socie": { - "tool_description": "This REST API can be used to create, read, update or delete data from the Socie platform.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 357, - "avgSuccessRate": 68, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "instagram downloader": { - "tool_description": "API instagram Download \nGet Story and Highlight and Post and reels and igtv and Media from Instagram consistently and quickly! \n\nNeed some quick help? \n\n\n\nPersonal: ![](https://telegram.org/img/favicon-16x16.png) [@arashroid](https://t.me/arashroid)\nChannel : ![](https://telegram.org/img/favicon-16x16.png) [@instagram_api](https://t.me/instagram_api)", - "score": { - "avgServiceLevel": 100, - "avgLatency": 528, - "avgSuccessRate": 100, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "Soundcloud": { - "tool_description": "Soundcloud api", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1302, - "avgSuccessRate": 100, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "Valid Whatsapp": { - "tool_description": "Checks if a phone number is a valid whatsapp account.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 469, - "avgSuccessRate": 77, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "Instagram_v9": { - "tool_description": "🟱💚 2023 API Scraping Instagram public data scraper for search, users, posts, hashtags, locations and more. You are only charged for the traffic you use.\n\n", - "score": { - "avgServiceLevel": 74, - "avgLatency": 16145, - "avgSuccessRate": 72, - "popularityScore": 9, - "__typename": "Score" - } - }, - "Instagram Profile": { - "tool_description": "Get profile information with proxy image will show directly to your frontend", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1364, - "avgSuccessRate": 74, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "Olato Quotes": { - "tool_description": "Olato Quote APIs gives you random quotes about motivation, sucess and love quotes.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 689, - "avgSuccessRate": 100, - "popularityScore": 6.9, - "__typename": "Score" - } - }, - "Twitter AIO": { - "tool_description": "Access real-time data as soon as it's posted! With the Twitter AIO API, you can retrieve tweets, spaces, media and profiles instantly. Say goodbye to expensive fees charged by Twitter while still getting access to all the available data.\n", - "score": { - "avgServiceLevel": 100, - "avgLatency": 844, - "avgSuccessRate": 97, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "Hashtag": { - "tool_description": "Generate hashtags based on image, text and get the post count detail of that hashtag.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1446, - "avgSuccessRate": 100, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Instagram_v2": { - "tool_description": "Instagram most needed endpoints", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1101, - "avgSuccessRate": 96, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "TwttrAPI": { - "tool_description": "twttrapi is an unofficial Twitter API that offers a variety of features to easily access Twitter data and perform actions using simple HTTP requests. With twttrapi, you can use Twitter Login + 2FA, get tweets, users, and search results, follow/like/retweet content, create and delete tweets, and even access your direct messages. It is perfect for large scale scraping of public data or for building applications that need access to Twitter's API.\n\ntwttrapi is a well-maintained service with a ded...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1376, - "avgSuccessRate": 100, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "Instagram Bulk Profile Scrapper": { - "tool_description": "Highly maintained and Stable Instagram Api. Scrap up to 200k Instagram profile per day. It's capable to handle high volume. Contact me for custom plans or requirements", - "score": { - "avgServiceLevel": 100, - "avgLatency": 4065, - "avgSuccessRate": 100, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "Pinterest APIs": { - "tool_description": "API search user, get user profile, user pins", - "score": { - "avgServiceLevel": 96, - "avgLatency": 1122, - "avgSuccessRate": 83, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "Real Love Calculator": { - "tool_description": "Real Love Calculator is a love calculator which uses male and female names and their date of birth to determine the love compatibility. It is completely based on astrological calculations and thus gives real prediction compatibility score.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1044, - "avgSuccessRate": 96, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "Twitter_v5": { - "tool_description": "Introducing a powerful Twitter API with 14 endpoints to help you access valuable Twitter data. With our API, you can easily retrieve user followers and followings, post likes, comments, quoted tweets, and retweets. You can also search for top, latest, videos, photos, and people, and access user tweets, replies, media, likes, and info by username or ID. Additionally, our autocomplete function helps you complete typed values with ease. Get started with our Twitter API today!", - "score": { - "avgServiceLevel": 93, - "avgLatency": 10560, - "avgSuccessRate": 93, - "popularityScore": 9, - "__typename": "Score" - } - }, - "Kwai": { - "tool_description": "Kwai Private API (TikTok like mobile app), Best Kwai Scraping API, non-blocking API, contact us if you want a custom plan. http://t.me/aimadnet", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2676, - "avgSuccessRate": 100, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Instagram #1": { - "tool_description": "Collect instagram data with no headaches - more APIs are available, please request any that are not yet available!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2948, - "avgSuccessRate": 100, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "funny emojis": { - "tool_description": "get emojis from api", - "score": { - "avgServiceLevel": 13, - "avgLatency": 511, - "avgSuccessRate": 13, - "popularityScore": 1.9, - "__typename": "Score" - } - }, - "Tronald Dump": { - "tool_description": "Api & web archive for the dumbest things Donald Trump has ever said.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 68, - "avgSuccessRate": 99, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "LinkedIn Outreach": { - "tool_description": "Automate Outreach on Linkedin with ease! Extract search results, Find LinkedIn profile URLs, Scrape LinkedIn profiles etc.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1596, - "avgSuccessRate": 78, - "popularityScore": 9, - "__typename": "Score" - } - }, - "TikTok Full Video Info (without watermark)": { - "tool_description": "A fast and stable API that uses a request directly to the TikTok server.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 6112, - "avgSuccessRate": 100, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "Tiktok full info without watermark": { - "tool_description": "Fast .. Stable .. Without Watermark APi gives you full info about tiktok posts and videos without watermark", - "score": { - "avgServiceLevel": 98, - "avgLatency": 3656, - "avgSuccessRate": 98, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "ZodiacAPI": { - "tool_description": "Simple ZodiacAPI BETA", - "score": { - "avgServiceLevel": 100, - "avgLatency": 36, - "avgSuccessRate": 100, - "popularityScore": 6.8, - "__typename": "Score" - } - }, - "Instagram Data": { - "tool_description": "Real-time Instagram data API. Get very useful and unique information directly from Instagram. \n I'm on Telegram https://t.me/logicBuilder \n News and announcements Telegram Channel https://t.me/logicApi", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2326, - "avgSuccessRate": 84, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "SendAPic API": { - "tool_description": "https://sendapic.xyz/\n\n🔐 Send confidential images securely and safely with an expiring link.\n💣 Choose the duration of the expiry, and feel safe knowing it will be deleted after expiry.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 635, - "avgSuccessRate": 20, - "popularityScore": 1.8, - "__typename": "Score" - } - }, - "Instagram Cheapest": { - "tool_description": "2023Real-time and cheapest Instagram data APIraw jsonă€‚æœ€äŸżćźœçš„instagram api", - "score": { - "avgServiceLevel": 100, - "avgLatency": 6361, - "avgSuccessRate": 100, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "TikTok Hashtag Generator": { - "tool_description": "TikTok Hashtag Generator API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 851, - "avgSuccessRate": 100, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "Instagram Pro": { - "tool_description": "Insatgram API Pro Version", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1454, - "avgSuccessRate": 100, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "YouTube Channel Details": { - "tool_description": "YouTube Channel Details API", - "score": { - "avgServiceLevel": 91, - "avgLatency": 883, - "avgSuccessRate": 68, - "popularityScore": 9, - "__typename": "Score" - } - }, - "MESCALC": { - "tool_description": "Calculates Misinformation Exposure Score for Twitter accounts", - "score": { - "avgServiceLevel": 100, - "avgLatency": 649, - "avgSuccessRate": 74, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "IG Private API": { - "tool_description": "IG Private API - get any Instagram stories, Highlights, Posts, Photos and Videos from public profiles by API Test for free 😃 You can get quick help via telegram app: @insta4root", - "score": { - "avgServiceLevel": 74, - "avgLatency": 3487, - "avgSuccessRate": 74, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "Likee Downloader - Download Likee videos": { - "tool_description": "This API allows you to retrieve information about a specific video on Likee. You can use it to retrieve details such as title, description, image, video. With the Likee Downloader API, you can easily access and leverage the wealth of information available on Likee.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2150, - "avgSuccessRate": 100, - "popularityScore": 7.5, - "__typename": "Score" - } - }, - "TikTok Private": { - "tool_description": "Fastest, Highly Maintained TikTok API, Build For Massive TikTok Scraping. Get TikTok User Profile, Post, Feed, Trends, Hashtags, Music and Download Video Without Watermark.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3822, - "avgSuccessRate": 100, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "Instagram Scraper 2023_v2": { - "tool_description": "MEGA Instagram Scraper 2023 - get any Instagram stories, Highlights, Posts, Photos and Videos from public profiles by API Test for free :) You can get quick help via telegram app: @insta4root", - "score": { - "avgServiceLevel": 47, - "avgLatency": 1069, - "avgSuccessRate": 47, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "TikTok Downloader - Download TikTok Videos without watermark": { - "tool_description": "TikTok Downloader API - Download TikTok Videos without watermark mp4 and mp3", - "score": { - "avgServiceLevel": 96, - "avgLatency": 4323, - "avgSuccessRate": 96, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "gwyo-twitch": { - "tool_description": "This API gives access to informations about a User / Channel, and Streams on Twitch.", - "score": { - "avgServiceLevel": 98, - "avgLatency": 976, - "avgSuccessRate": 97, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "Hajana One Free SMS For Websites": { - "tool_description": "Get Free SMS API for Your website, and Any application. currently we have daily limit on free API, we are offering 20 SMS/day. If you need more SMs, contact us. http://www.hajanaone.com/contact-us.php\r\n\r\nOnly registered members can get his Service. if you are not registered at our website you need to be registered first. Register Here and get free account fron this link. http://www.hajanaone.com/signup.php\r\n\r\nIf you are already registered you can login here http://www.hajanaone.com/login.php", - "score": { - "avgServiceLevel": 100, - "avgLatency": 536, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "PeerReach": { - "tool_description": "The PeerReach API allows you to give context to the content produced by any Twitter profile.\r\n\r\nPeerReach has analysed over a 100 million accounts and can return information like, expertise area's. interests, gender, age and location.\r\n\r\nThis free version of our API allows you to make 2400 daily calls.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1088, - "avgSuccessRate": 100, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "Flirty words": { - "tool_description": "Get flirty word to attract others", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1171, - "avgSuccessRate": 100, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "IDD": { - "tool_description": "this is instagram user api to get json data about user by username", - "score": null - }, - "Marryme": { - "tool_description": "Social", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2740, - "avgSuccessRate": 33, - "popularityScore": 7.8, - "__typename": "Score" - } - }, - "Pinterest Downloader - Download image video and pinterest ideapin": { - "tool_description": "This APi comes with pinterest image downloader, pinterest video downloader and pinterest idea pin downloader | Fast. Download without Watermark.", - "score": { - "avgServiceLevel": 0, - "avgLatency": 596, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "Instagram Downloader - Reels and Videos Downloader": { - "tool_description": "Powerful Api fetch Instagram Download Links.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 6527, - "avgSuccessRate": 100, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "Instagram Profile Picture Viewer": { - "tool_description": "Fetch Full HD Profile Picture and Some Basic Details of anyone on Instagram.\n\n\n\n\n\n\n\n\nTags: Instagram Insta Profile Info DP Details Insta DP Insta Profile Photo", - "score": { - "avgServiceLevel": 85, - "avgLatency": 31868, - "avgSuccessRate": 85, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - " Quotes API": { - "tool_description": "The Quotes API is a powerful and comprehensive resource, providing access to over 190,000 unique quotes spanning a wide range of topics and sources. Designed with user experience and versatility in mind, the API offers a variety of endpoints to cater to different use cases and requirements, making it an ideal choice for developers, content creators, and enthusiasts alike.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3588, - "avgSuccessRate": 80, - "popularityScore": 7.1, - "__typename": "Score" - } - }, - "Whatsapp Scraper": { - "tool_description": "A scraper of the Whatsapp network.", - "score": { - "avgServiceLevel": 99, - "avgLatency": 1555, - "avgSuccessRate": 87, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Twitter RSS": { - "tool_description": "RSS Generator for Twitter", - "score": null - }, - "Conversation Starters API": { - "tool_description": "Get a random conversation starter", - "score": { - "avgServiceLevel": 100, - "avgLatency": 454, - "avgSuccessRate": 100, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "TikTok Data": { - "tool_description": "Social Media Data API in Real-Time. -Get very useful and unique information. -I'm on Telegram https://t.me/logicBuilder News and announcements Telegram Channel https://t.me/logicApi", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1632, - "avgSuccessRate": 84, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "Greet Generator": { - "tool_description": "Greet Generator", - "score": { - "avgServiceLevel": 100, - "avgLatency": 328, - "avgSuccessRate": 100, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "Top Instagram Hashtag": { - "tool_description": "Find the best instagram hashtag", - "score": { - "avgServiceLevel": 99, - "avgLatency": 2760, - "avgSuccessRate": 99, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "Yotpo": { - "tool_description": "Yotpo is taking reviews social being a fun, social way for your e-commerce customers to read and write reviews!\r\n\r\nBEFORE YOU BEGIN, you must sign for a free account at Yotpo: https://www.yotpo.com/register , and you are more than welcome to further read on us at: http://www.yotpo.com . \r\n\r\nWe also encourage first time users to checkout our example sites where Yotpo is installed: \r\n\r\nhttp://magento.yotpo.com/\r\nhttp://shop.yotpo.com \r\n\r\nfor list of existing customers please refer to our website. \r\n\r\n\r\nYotpo API, works above the Yotpo Social Reviews service. It is designed to create more customised solutions for Yotpo customers, and to let them smartly integrate with Yotpo's system.\r\n\r\nStayed tuned, the Yotpo API is a work in progress.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 776, - "avgSuccessRate": 100, - "popularityScore": 5.8, - "__typename": "Score" - } - }, - "Youtube V2": { - "tool_description": "Youtube API for search, videos, channels, trending, recommendation", - "score": { - "avgServiceLevel": 100, - "avgLatency": 737, - "avgSuccessRate": 100, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "TikTok APIs": { - "tool_description": "TikTok API search users, get posts", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1675, - "avgSuccessRate": 100, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "Instagram Downloader - Download Videos, Reels, Stories 2023": { - "tool_description": "Downlaod All Instagram Media Including Stories , Reels, Videos and many more, Using Single URL.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1776, - "avgSuccessRate": 100, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "Reddit": { - "tool_description": "Please join our telegram channel to get notified about updates. https://t.me/social_miner_news", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1065, - "avgSuccessRate": 100, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "Twitter Scraper": { - "tool_description": "Search and extract Twitter data at scale 🚀 Extract up to 2,000 tweets per search query", - "score": { - "avgServiceLevel": 98, - "avgLatency": 34418, - "avgSuccessRate": 92, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "Fdown - Facebook Video Downloader": { - "tool_description": "Fdown allows you to extract Facbook video download links in HD and SD format. It is simple, lightweight and Easy to use.", - "score": { - "avgServiceLevel": 99, - "avgLatency": 2539, - "avgSuccessRate": 82, - "popularityScore": 9, - "__typename": "Score" - } - }, - "Twitter v2_v2": { - "tool_description": "Twitter public and private data API for search, Tweets, users, followers, images, media and more.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1229, - "avgSuccessRate": 98, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "TikTok Info": { - "tool_description": "Get TikTok Video data along with detailed information about Author, User Feed, Music .", - "score": { - "avgServiceLevel": 72, - "avgLatency": 3434, - "avgSuccessRate": 71, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "Instagram_v6": { - "tool_description": "instagram api", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3646, - "avgSuccessRate": 100, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "Genderify3": { - "tool_description": "Detect gender API, predict Male or Female by Name or Email Address with high accuracy. Determine the gender of a name. New Update Version 3.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 175, - "avgSuccessRate": 100, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "Tiktok Video Feature Summary": { - "tool_description": "Contains TikTok HD videos without watermark and user, post, music, search, feeds, comments, followers, and trends.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 446, - "avgSuccessRate": 100, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "Instagram API_v2": { - "tool_description": "instagram scraping, all endpoints", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1888, - "avgSuccessRate": 100, - "popularityScore": 7.8, - "__typename": "Score" - } - }, - "Instagram API": { - "tool_description": "Get any information from Instagram.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2725, - "avgSuccessRate": 51, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "TikTok Video No Watermark_v2": { - "tool_description": "The API helps you to download and get the video download link without the Tiktok logo quickly, completely and in detail. Contact me: phamvandienofficial@gmail.com if you are interested in the source code\n***\nIf you encounter any errors, please contact me so I can fix it quickly.\n***\nContact me: phamvandienofficial@gmail.com", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1423, - "avgSuccessRate": 100, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "OnlyFans": { - "tool_description": "apis for onlyfans", - "score": { - "avgServiceLevel": 74, - "avgLatency": 1511, - "avgSuccessRate": 74, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "👋 Demo Project": { - "tool_description": "Custom packaging no minimum is excellent to build brand awareness. Learn why businesses should include custom box no minimum in branding in this post!", - "score": { - "avgServiceLevel": 92, - "avgLatency": 509, - "avgSuccessRate": 70, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "Terabox Downloader": { - "tool_description": "Terabox Downloader", - "score": { - "avgServiceLevel": 98, - "avgLatency": 4081, - "avgSuccessRate": 97, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "ScrapTik": { - "tool_description": "ScrapTik is the #1 TikTok scraping API solution and allows you to unlock TikTok data effortlessly. As the most stable and always-maintained option available, ScrapTik empowers you to seamlessly access data from the TikTok mobile app, including user, post, music, search, feeds, comments, followers, and trends.\n\nOur comprehensive toolkit also includes advanced features like X-Argus, X-Ladon, X-Gorgon generation, challenge resolution, and device registration.\n\nWith frequent updates and a commitm...", - "score": { - "avgServiceLevel": 99, - "avgLatency": 6445, - "avgSuccessRate": 99, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "Twitter V2": { - "tool_description": "Twitter public data API for Tweets and users", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1079, - "avgSuccessRate": 100, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "Snapchat": { - "tool_description": "Snapchat API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 406, - "avgSuccessRate": 100, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "Chuck Norris": { - "tool_description": "chucknorris.io is a free JSON API for hand curated Chuck Norris facts.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 467, - "avgSuccessRate": 100, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "TikTok Full Video Info": { - "tool_description": "A fast and stable API that uses a request directly to the TikTok server.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 271, - "avgSuccessRate": 100, - "popularityScore": 8.2, - "__typename": "Score" - } - }, - "Initials Avatar": { - "tool_description": "Generates initials avatar image from given name", - "score": { - "avgServiceLevel": 100, - "avgLatency": 279, - "avgSuccessRate": 100, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "YouTooSound": { - "tool_description": "YouTooSound", - "score": { - "avgServiceLevel": 80, - "avgLatency": 1554, - "avgSuccessRate": 80, - "popularityScore": 6.8, - "__typename": "Score" - } - }, - "Ocoya": { - "tool_description": "End-to-end social media marketing.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 114, - "avgSuccessRate": 100, - "popularityScore": 6.8, - "__typename": "Score" - } - }, - "YouTube Video Details": { - "tool_description": "YouTube Video Details API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2146, - "avgSuccessRate": 71, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "Instagram Hashtags": { - "tool_description": "Hashtag Generator API - Generate up to 35 times free hashtags everyday.\nFor private plans, custom plans, custom billing contact : info@getecz.com\n\n\n", - "score": { - "avgServiceLevel": 100, - "avgLatency": 852, - "avgSuccessRate": 100, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "Instagram Fast": { - "tool_description": "Instagram API. Get all instagram information, no proxy need. \nScrap up to 200k Instagram profile per day. It’s capable to handle high volume.\nSimple, secure and fast. Need some quick help? https://t.me/omarcosr", - "score": { - "avgServiceLevel": 98, - "avgLatency": 5649, - "avgSuccessRate": 76, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Geeklist": { - "tool_description": "The first social network for developers and the tech community.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 57, - "avgSuccessRate": 100, - "popularityScore": 6.9, - "__typename": "Score" - } - }, - "FaceGen": { - "tool_description": "Generation of faces by AI. (Occasionally, a neural network makes mistakes, which is why artifacts appear: an incorrectly bent pattern, a strange hair color, and so on.)", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1085, - "avgSuccessRate": 100, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "Check Username": { - "tool_description": "Generate/Check if a username is available on various platforms like Facebook, instagram, tiktok, snapchat and other social media platforms! You can also check if a domain is registered or not.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 753, - "avgSuccessRate": 100, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "TikTok Bulletproof": { - "tool_description": "The stable Tiktok API. I intend to keep it simple in terms of amount of endpoints, and make sure it is operational 99.9% of time instead. If you don't like the stability - you can get a refund, no questions asked. Bigger custom plans and crypto payments are available on request - contact https://t.me/neot55", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1890, - "avgSuccessRate": 93, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "youtube": { - "tool_description": "Download YouTube videos", - "score": { - "avgServiceLevel": 75, - "avgLatency": 1667, - "avgSuccessRate": 74, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Facebook Video and Reel Downloader": { - "tool_description": "Simple and light weight api to extract download links of Facebook video or reel.", - "score": { - "avgServiceLevel": 96, - "avgLatency": 5765, - "avgSuccessRate": 46, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Pinterest Downloader - Download Pinterest image Video and reels": { - "tool_description": "This API allows you to retrieve information about a specific pin on Pinterest. You can use it to retrieve details such as the pin’s title, description, image, video, gif, reel. With the Pinterest Downloader API, you can easily access and leverage the wealth of information available on Pinterest.", - "score": { - "avgServiceLevel": 99, - "avgLatency": 1098, - "avgSuccessRate": 93, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "TikTok Videos Without Watermark": { - "tool_description": "Download tiktok videos without a watermark", - "score": { - "avgServiceLevel": 77, - "avgLatency": 1785, - "avgSuccessRate": 75, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "MockTwitter": { - "tool_description": "similar app to twitter", - "score": { - "avgServiceLevel": 100, - "avgLatency": 133, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Instagram Looter": { - "tool_description": "Get information from Instagram accurately and quickly! Smart request filtering for 100% response.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2554, - "avgSuccessRate": 100, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "Zodiac Sign API": { - "tool_description": "Gives data on Zodiac signs, their personality traits and dates", - "score": { - "avgServiceLevel": 73, - "avgLatency": 8967, - "avgSuccessRate": 73, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "TikTok_v4": { - "tool_description": "TikTok API third party service, Stable and 24/7 maintenance. for any Help or Suggestions Contact me on https://t.me/dhmye", - "score": { - "avgServiceLevel": 98, - "avgLatency": 746, - "avgSuccessRate": 98, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "Instagram DP Download": { - "tool_description": "Download Instagram profile dp and basic details", - "score": { - "avgServiceLevel": 62, - "avgLatency": 71040, - "avgSuccessRate": 62, - "popularityScore": 7.3, - "__typename": "Score" - } - }, - "TikTok_v3": { - "tool_description": "TikTok API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2877, - "avgSuccessRate": 100, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "TikTok_Solutions": { - "tool_description": "Best TikTok solutions for scrap info", - "score": { - "avgServiceLevel": 91, - "avgLatency": 8127, - "avgSuccessRate": 87, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "fb-video-reels": { - "tool_description": "download facebook videos and reels in high quality", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2085, - "avgSuccessRate": 100, - "popularityScore": 7.1, - "__typename": "Score" - } - }, - "Twitter_v4": { - "tool_description": "Twitter public and private data API for search, Tweets, users, followers, images, media and more.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1065, - "avgSuccessRate": 97, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "TikTok Scraper_v2": { - "tool_description": "Get basic tiktok user info and medias. Cheap and stable. Telegram https://t.me/JoTucker2022", - "score": { - "avgServiceLevel": 89, - "avgLatency": 3990, - "avgSuccessRate": 89, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "Celebrity Social Media API": { - "tool_description": "Get social media account links of popular personalities", - "score": { - "avgServiceLevel": 100, - "avgLatency": 209, - "avgSuccessRate": 100, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Popular languages": { - "tool_description": "Most popular languages in the world", - "score": { - "avgServiceLevel": 100, - "avgLatency": 470, - "avgSuccessRate": 100, - "popularityScore": 5.7, - "__typename": "Score" - } - }, - "TikTok Video Downloader": { - "tool_description": "Simple and Lightweight Api to Download TikTok Videos Easily.", - "score": null - }, - "Fortune Cookie": { - "tool_description": "đŸ„  This RESTful API returns a json object with aphorisms, almost like what you get in a fortune cookie.", - "score": { - "avgServiceLevel": 99, - "avgLatency": 1053, - "avgSuccessRate": 99, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "Tiktok video no watermark_v3": { - "tool_description": "Fast 
 Stable 
 Without Watermark APi gives you full info about tiktok posts and videos without watermark\n\nFastest Tiktok API with response video without watermark, music, cover, and more!\nready to handle huge amount of requests with error rates below 1%\npowered by strong servers\nAll kinds of TikTok links are supported (:\nThe API does not depend on any external services and it is entirely private", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1755, - "avgSuccessRate": 100, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "Gigopost": { - "tool_description": "The simplest way to involve your teams to share company brand content", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1111, - "avgSuccessRate": 99, - "popularityScore": 9, - "__typename": "Score" - } - }, - "Pinterest Scraper": { - "tool_description": "Stable Pinterest API. I get full information about pins, download links in all qualities. Active work is underway to add new features", - "score": { - "avgServiceLevel": 100, - "avgLatency": 4755, - "avgSuccessRate": 100, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "Instagram media downloader_v2": { - "tool_description": "API for get media info from instagram", - "score": { - "avgServiceLevel": 100, - "avgLatency": 330, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "RobberyData": { - "tool_description": "Get Robbery Sample Data and Use the format in your project", - "score": { - "avgServiceLevel": 100, - "avgLatency": 706, - "avgSuccessRate": 67, - "popularityScore": 6.8, - "__typename": "Score" - } - }, - "Instagram Downloader_v2": { - "tool_description": "Download Video, Photo, Post, Reel, IGTV, Carousel media from Instagram Note: Story video currently not supported!", - "score": { - "avgServiceLevel": 91, - "avgLatency": 3874, - "avgSuccessRate": 73, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "wiMAN - The Social Wi-Fi Network": { - "tool_description": "Get informations about wiman hotspots like name, city, coordinates etc .", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1151, - "avgSuccessRate": 100, - "popularityScore": 7.2, - "__typename": "Score" - } - }, - "Instagram_v5": { - "tool_description": "Fast Live Instagram API.All information from Instagram consistently and quickly! It makes 3 times in the backend request for you to get 100% successful response. Need help or custom plan? https://instagapi.com - https://t.me/instagapi", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1545, - "avgSuccessRate": 100, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "Reddit Fast Search": { - "tool_description": "", - "score": { - "avgServiceLevel": 93, - "avgLatency": 4753, - "avgSuccessRate": 80, - "popularityScore": 7.7, - "__typename": "Score" - } - }, - "Social Media Data TT": { - "tool_description": "Social Media Data API in Real-Time. -Get very useful and unique information. -I'm on Telegram https://t.me/logicBuilder News and announcements Telegram Channel https://t.me/logicApi", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1615, - "avgSuccessRate": 73, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "ABCR": { - "tool_description": "Bloco de Tempo do Site ABCR", - "score": null - }, - "Emoji": { - "tool_description": "Get all emojis at one place. Single API to get any emoji.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 544, - "avgSuccessRate": 100, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "Tiktok_v2": { - "tool_description": "Highly maintain and accurate T-tok API to fetch profiles or feeds in bulk. ", - "score": { - "avgServiceLevel": 98, - "avgLatency": 5313, - "avgSuccessRate": 98, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Memes": { - "tool_description": "Memes api with several genre", - "score": { - "avgServiceLevel": 99, - "avgLatency": 697, - "avgSuccessRate": 99, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Tiktok User": { - "tool_description": "Get profile information from tiktok user", - "score": { - "avgServiceLevel": 88, - "avgLatency": 2676, - "avgSuccessRate": 74, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "Instagram API 2023": { - "tool_description": "Best Instagram Scraper API 2023 \n● Launched in May 2023 \n● 100% real-time data, no cache, no-CORS media, advanced profile, get access to hidden insights & more. ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3143, - "avgSuccessRate": 100, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Shields": { - "tool_description": "A simple and free way to generate shields.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 764, - "avgSuccessRate": 12, - "popularityScore": 1.7, - "__typename": "Score" - } - }, - "twitter_v3": { - "tool_description": "The API allows you to get a link to download a public Twitter video in any available quality. Try it on the free plan", - "score": { - "avgServiceLevel": 33, - "avgLatency": 1404, - "avgSuccessRate": 32, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "instagram_v3": { - "tool_description": "Fetch any data from Instagram: photo and video links, profile info, stories, highlights. Uptime 97%. Best price for 500k requests!", - "score": { - "avgServiceLevel": 97, - "avgLatency": 2122, - "avgSuccessRate": 97, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "QUIZ": { - "tool_description": "The Quiz API is a powerful and versatile tool designed to provide developers with easy access to a wide range of quiz-related functionalities. With this API, you can seamlessly integrate quizzes into your applications, websites, or educational platforms. Whether you're building a learning management system, a trivia game, or a quiz-based assessment platform, the Quiz API has got you covered.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 45224, - "avgSuccessRate": 100, - "popularityScore": 7, - "__typename": "Score" - } - }, - "Twitter Hashtags": { - "tool_description": "An unoffical twitter hashtag api", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2338, - "avgSuccessRate": 100, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "Youtube Videos Downloader": { - "tool_description": "This API is a YouTube video downloader that allows users to download both short and long videos from YouTube.", - "score": { - "avgServiceLevel": 94, - "avgLatency": 11143, - "avgSuccessRate": 47, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "Jobs from remoteok": { - "tool_description": "list of all remote jobs from remoteok.com web-site - not official! ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1141, - "avgSuccessRate": 50, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "Instagram_v10": { - "tool_description": "Please join our telegram channel to get notified about updates. https://t.me/social_miner_news", - "score": { - "avgServiceLevel": 100, - "avgLatency": 761, - "avgSuccessRate": 100, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "TikTok Downloader - Download Videos without watermark": { - "tool_description": "Fast. Download without Watermark. Full videos detail.", - "score": { - "avgServiceLevel": 94, - "avgLatency": 6414, - "avgSuccessRate": 94, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "TikTok Private API": { - "tool_description": "Get and analyze TikTok users and videos data.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 5996, - "avgSuccessRate": 97, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Instagram Downloader - Reel,Video, Post Downloader": { - "tool_description": "", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1340, - "avgSuccessRate": 74, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "Airports Info (α)": { - "tool_description": "All airports around the globe are here.\nTHIS IS A TEST\n\n", - "score": { - "avgServiceLevel": 100, - "avgLatency": 998, - "avgSuccessRate": 100, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "Nomad List Cities": { - "tool_description": "Explore best cities to live for digital nomads! Sort by internet speed, cost of living and more! Filter by continents", - "score": { - "avgServiceLevel": 100, - "avgLatency": 832, - "avgSuccessRate": 100, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "Skyscanner_v2": { - "tool_description": "Skyscanner API allows users to search best flights and hotels with details and best price. This API has all needed by any developer to create a new application with some extended features.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1436, - "avgSuccessRate": 100, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "Flight Fare Search": { - "tool_description": "Elevate your travel game with Flight Fare Search API! Get real-time flight data, fares, and airport info for seamless travel planning. Transform your app into a powerful travel companion with Flight Fare Search.", - "score": { - "avgServiceLevel": 70, - "avgLatency": 4089, - "avgSuccessRate": 70, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "52 In Kicks": { - "tool_description": "Travel blog for the connected generation", - "score": { - "avgServiceLevel": 100, - "avgLatency": 5520, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Airbnb Search": { - "tool_description": "Real-time data, unofficial airbnb API, get airbnb listings data, place to stay at an amazing price.\n\nAirbnb com is a well-known and widely used online marketplace for short-term accommodation rentals around the world.\n\nIt allows individuals to rent out their home, apartments, or spare rooms to travelers seeking temporary accommodation. It connects hosts and guests from various locations, providing a diverse range of lodging options that cater to different preferences and budgets.\n\nIt enables ...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1069, - "avgSuccessRate": 100, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Flixbus_v2": { - "tool_description": "New Flixbus API that provides Flixbus travel search, timetables, stops, cities, routes and autocomplete. ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1395, - "avgSuccessRate": 98, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "Booking": { - "tool_description": "This API helps to query rooms, price, facilities, policities, etc information from many hotels around the world to create a travel site such as : booking.com", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3215, - "avgSuccessRate": 100, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "World Scuba Diving Sites Api": { - "tool_description": "Are you a scuba diver looking for interesting dive sites around the world? You can now easily search for them using a text query to the endpoint based on a location or region. With our list of GPS coordinates for scuba diving sites, you can quickly find the coordinates of the places you want to explore and add them to your diving itinerary. Simply enter the name of the location or region you are interested in, and our system will provide you with a list of relevant coordinates for you to use ...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2485, - "avgSuccessRate": 100, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "Airports Finder": { - "tool_description": "Airport Finder is a robust API designed to locate airports worldwide. It provides accurate and up-to-date information about airports, including names, IATA codes, locations, time zones, and more. With its easy integration and comprehensive data, Airport Finder simplifies the process of incorporating airport information into your application. Deploy it to enhance travel-related services, flight booking platforms, or any application that requires efficient airport search capabilities.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 434, - "avgSuccessRate": 100, - "popularityScore": 7.7, - "__typename": "Score" - } - }, - "world cities by homicide rate": { - "tool_description": "World cities by homicide rate", - "score": { - "avgServiceLevel": 100, - "avgLatency": 705, - "avgSuccessRate": 100, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "thailand": { - "tool_description": "thailand", - "score": { - "avgServiceLevel": 100, - "avgLatency": 7, - "avgSuccessRate": 100, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "KAYAK Flights": { - "tool_description": "Pricing and flight itineraries information on KAYAK.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 662, - "avgSuccessRate": 100, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Tripadvisor": { - "tool_description": "Tripadvisor API helps to query realtime Hotels search, Flights prices, Restaurants, Attracting locations, etc to create a travelling site.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1449, - "avgSuccessRate": 100, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "Airbnb_v2": { - "tool_description": " Airbnb API allows users to search accommodations by location, place name, and GEO coordinates to find a place to rent. This API has all needed by any developer to create a new application with some extended features.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 893, - "avgSuccessRate": 100, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "funtrip": { - "tool_description": "fundtrip", - "score": { - "avgServiceLevel": 100, - "avgLatency": 31, - "avgSuccessRate": 100, - "popularityScore": 7.8, - "__typename": "Score" - } - }, - "AI Trip Planner": { - "tool_description": "The API generates personalized trip plans based on the user's specified number of days and location. Using AI, the system recommends popular tourist attractions, local experiences, and accommodations based on user preferences and past travel behavior. The generated trip plans can be customized and adjusted to suit the user's needs, making it a valuable tool for anyone planning a trip.", - "score": { - "avgServiceLevel": 98, - "avgLatency": 8967, - "avgSuccessRate": 93, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "SEPTA": { - "tool_description": "Provides hackathon-style access to the SEPTA API.\r\n\r\nAllows introspection of the SEPTA locations and routes, and provides basically-realtime data on delays, alerts, vehicles, and routes.", - "score": { - "avgServiceLevel": 92, - "avgLatency": 1990, - "avgSuccessRate": 84, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "Flight Data_v2": { - "tool_description": "Travelpayouts Data API – the way to get travel insights for your site or blog. Get flight price trends and find popular destinations for your customers.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 875, - "avgSuccessRate": 81, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "StreetNarrator": { - "tool_description": "Give us a Street name! Our artificial intelligence will search for information and writes a paragraph according to your options. StreetNarrator API provides a unique history/touristic AI text for any street around the world.\nThe Stories behind Streets API & From a Street name to the behind story", - "score": { - "avgServiceLevel": 60, - "avgLatency": 23833, - "avgSuccessRate": 60, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "Airbnb listings": { - "tool_description": "Get airbnb listings details, prices, availability and more using listing IDs, latitude and longitude or \"market\". \nData analytics endpoints are also available to get detailed info around all airbnb accomodations.\nData are not in realtime but updated as frequently as possible. Each time property prices, details or statuses are requested we prioritize this property to be updated multiple times/day for the next 24 hours. So on your very first request of a property data you may get not updated data.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 284, - "avgSuccessRate": 100, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Skyscanner Flights": { - "tool_description": "Pricing and flight itineraries information on Skyscanner.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1160, - "avgSuccessRate": 100, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "flight | flight aggregator": { - "tool_description": "FlightsLogic provides Flight API, Airline Consolidator, Flight Aggregator to the travel agents, tour operators and travel companies worldwide.", - "score": null - }, - "Ski Resorts and Conditions": { - "tool_description": "Ski Resorts and Conditions", - "score": { - "avgServiceLevel": 100, - "avgLatency": 266, - "avgSuccessRate": 97, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "Visa Requirements": { - "tool_description": "Up-to-date and accurate information on visa requirements for any country, enabling efficient access to visa information for businesses, travel agencies, and individuals", - "score": { - "avgServiceLevel": 100, - "avgLatency": 504, - "avgSuccessRate": 70, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "Skyscanner API": { - "tool_description": "The Skyscanner API offers developers a way to integrate Skyscanner's data into their own applications, allowing users to access and interact with the vast travel data offered by Skyscanner. \n\n![](https://tip.ep-proxy.net/t/ra-ss-main)", - "score": { - "avgServiceLevel": 98, - "avgLatency": 3821, - "avgSuccessRate": 98, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "webcams.travel": { - "tool_description": "The World's Largest Landscape Webcam API ***** Get webcams by categories, country, region or just nearby your location ***** Get timelapse slideshows for every webcam ***** Get an uncluttered webcam layer for your map", - "score": { - "avgServiceLevel": 100, - "avgLatency": 693, - "avgSuccessRate": 100, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "Get_Ticket_Information": { - "tool_description": "Get_Ticket_Information from Fligths", - "score": { - "avgServiceLevel": 0, - "avgLatency": 180074, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "Flight _v2": { - "tool_description": "FlightsLogic provides Flight API, Airline Consolidator, Flight Aggregator to the travel agents, tour operators and travel companies worldwide.", - "score": null - }, - "Tripit": { - "tool_description": "TripIt organizes travel plans into an itinerary that has all of your trip details in one place. Simply forward confirmation emails to plans@tripit.com and TripIt will automatically build an itinerary for your trip that you can access anytime, either online or from a mobile device. With the TripIt API, you can...\r\n\r\nAdd travel information to a TripIt account, enabling:\r\nInstant availability of clean, professional looking itineraries accessible on the web or via mobile device\r\nSeamless calendar integration via TripIt’s iCal feeds feature\r\nAccess to many third party productivity applications that use the TripIt API\r\n\r\nImport travel information from a TripIt traveler’s account, enabling:\r\nSeamless email import technology for your customers to add travel plans to your application\r\nInsight into a traveler’s entire trip (air, hotel, car, restaurants, meetings, etc.)\r\nOutputting travel data to social network applications such as Facebook and LinkedIn", - "score": { - "avgServiceLevel": 100, - "avgLatency": 555, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "SBB Suisse railway": { - "tool_description": "Search stations and trips within Suisse railway network SBB. Find train or a public transport stop, search trains, trams, subway, and buses between two stations. Get journey and fare data, departure and arrival times for any stop in Switzerland.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1269, - "avgSuccessRate": 22, - "popularityScore": 1.9, - "__typename": "Score" - } - }, - "Hotels": { - "tool_description": "This API helps to query rooms, price, facilities, policities, etc information from many hotels around the world to create a travelling site/application, such as : hotels.com", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2055, - "avgSuccessRate": 100, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "Gas Price": { - "tool_description": "Reach gasoline and diesel prices in different fuel stations in different cities.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1300, - "avgSuccessRate": 100, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "Flightera Flight Data": { - "tool_description": "Flight status, on-time performance and statistics by Flightera", - "score": { - "avgServiceLevel": 100, - "avgLatency": 220, - "avgSuccessRate": 76, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "ASR Hub": { - "tool_description": "ASR Hub is a nomalized XML API which integrates airline content from multiple sources like Direct & NDC connect, Multi-GDS and aggregators from various markets and  offers search, ticket, Payments, ancillary sales, and post bookings services through a single API.  ASR Hub 1.0 provides the complete Travel Tech Stack for Airline Retailing​.", - "score": { - "avgServiceLevel": 26, - "avgLatency": 563, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "Travelopro ": { - "tool_description": "Travelopro is a leading travel technology company It provides online travel booking solution and APIs for flights, hotels, cars,etc. can manage own inventory product of travel agency. It eliminates manual processing tasks", - "score": null - }, - "British Airways Flight Info": { - "tool_description": "British Airways is the flag carrier airline of the United Kingdom and its largest airline based on fleet size, international flights and international destinations", - "score": { - "avgServiceLevel": 100, - "avgLatency": 843, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "ChronoVoyages": { - "tool_description": "ChronoVoyages", - "score": null - }, - "World Airports Directory": { - "tool_description": "API returns all matching airpot details based on the most relevant keyword of city, airport code, city code etc. among collection of all airports around the world.", - "score": { - "avgServiceLevel": 99, - "avgLatency": 1510, - "avgSuccessRate": 94, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Booking com": { - "tool_description": "Find all hotels, view prices, photos of the hotels, reviews. Find car rental deals. **Site:** booking.com **Support**: [tipsters@rapi.one](mailto:tipsters@rapi.one) / t.me/api_tipsters", - "score": { - "avgServiceLevel": 100, - "avgLatency": 729, - "avgSuccessRate": 100, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "Vuelos": { - "tool_description": "Busqueda de Vuelos", - "score": null - }, - "Great Circle Math Api": { - "tool_description": "An api to perform mileage calculations by receiving location information.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 792, - "avgSuccessRate": 100, - "popularityScore": 8.2, - "__typename": "Score" - } - }, - "IRCTC": { - "tool_description": "An API with various functionalities for Indian railways IRCTC API. We are not affiliated with Indian railways IRCTC in any form, and this is not an official API, but all the results are real-time and accurate. You can get in touch with us at https://t.me/rapidapisupport. For payment related inquiries, APIs and customised plans.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 905, - "avgSuccessRate": 100, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "Travelo Pro": { - "tool_description": "Travelopro provides online travel booking solution and APIs for flights, hotels, cars , transfers, sightseeing etc. and can manage own inventory products of travel agency. It eliminates manual processing tasks.", - "score": null - }, - "TripVair AI Flight Cancel Predictor": { - "tool_description": "TripVair AI FCP is an API that returns the probability a future flight will be cancelled up to 363 days in the future.", - "score": { - "avgServiceLevel": 95, - "avgLatency": 661, - "avgSuccessRate": 95, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "Biggest Cities": { - "tool_description": "List of top biggest cities", - "score": { - "avgServiceLevel": 100, - "avgLatency": 873, - "avgSuccessRate": 33, - "popularityScore": 8, - "__typename": "Score" - } - }, - "Travel API's": { - "tool_description": "TravelPD offers b2b and b2c booking portals, booking engines, travel API integration services for travel companies such as Travel Agents, Tour Operators, DMC’s, TMC’s and Wholesalers at affordable pricing.", - "score": null - }, - "BiggestCities": { - "tool_description": "A List of Worlds Biggest Cities", - "score": { - "avgServiceLevel": 100, - "avgLatency": 616, - "avgSuccessRate": 50, - "popularityScore": 8.2, - "__typename": "Score" - } - }, - "World Dive Centres Api": { - "tool_description": "An API for diving centres,boats and shops that allow developers to access information about PADI, SSI, and SDI dive operators around the world.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2427, - "avgSuccessRate": 100, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "BART": { - "tool_description": "The BART API gives you access to pretty much all of the BART service and station data available on the BART website.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 92, - "avgSuccessRate": 100, - "popularityScore": 8, - "__typename": "Score" - } - }, - "Real-Time PNR Status API for Indian Railways": { - "tool_description": "It is an unofficial PNR Status API that provides real-time information on the status of Indian Railways train reservations. This API is designed for educational purposes only and is not affiliated with Indian Railways in any way.", - "score": { - "avgServiceLevel": 82, - "avgLatency": 2528, - "avgSuccessRate": 82, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Priceline com Provider": { - "tool_description": "priceline.com | Lets you search hotels, cars for rent, flights. **Support**: [tipsters@rapi.one](mailto:tipsters@rapi.one) / t.me/api_tipsters **Other travel api:** https://rapi.one", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1723, - "avgSuccessRate": 98, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "Cities Cost of Living": { - "tool_description": "Get detailed information about the living expenses of 650+ cities around the world.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1100, - "avgSuccessRate": 82, - "popularityScore": 9, - "__typename": "Score" - } - }, - "Booking.com_v2": { - "tool_description": "Real-time data, unofficial API Booking.com\nThis API helps to query rooms, price, facilities, policities.. from many hotels around the world to create a travel", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2553, - "avgSuccessRate": 100, - "popularityScore": 6.9, - "__typename": "Score" - } - }, - "Ranked Crime Cities": { - "tool_description": "Worlds Ranked Crime Cities", - "score": { - "avgServiceLevel": 100, - "avgLatency": 619, - "avgSuccessRate": 100, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "Flight Integration": { - "tool_description": "FlightsLogic provides Flight API, Airline Consolidator, Flight Aggregator to the travel agents, tour operators and travel companies worldwide.", - "score": null - }, - "Flight , Airline Consolidator, Flight Aggregator": { - "tool_description": "FlightsLogic provides Flight API, Airline Consolidator, Flight Aggregator to the travel agents, tour operators and travel companies worldwide.", - "score": null - }, - "Tsaboin Cams": { - "tool_description": "With our API, you can extend your projects (check terms and conditions for more details) by connecting to our servers for traffic details around bus-stops and for live traffic cams.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 66, - "avgSuccessRate": 100, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "Flixbus": { - "tool_description": "A service that provides flixbus travel search, available cities, stations, timetables and routes. Site: www.flixbus.com **Support**: [tipsters@rapi.one](mailto:tipsters@rapi.one) / t.me/api_tipsters", - "score": { - "avgServiceLevel": 100, - "avgLatency": 522, - "avgSuccessRate": 97, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "FlightsLogic Flight": { - "tool_description": " FlightsLogic integrates Flight API, Flight Search API Integration, Flight Ticket Software, Flight XML API Integration for travel companies worldwide.", - "score": null - }, - "iata_airport_codes": { - "tool_description": "A list of world iata airport codes", - "score": { - "avgServiceLevel": 100, - "avgLatency": 747, - "avgSuccessRate": 100, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "Deutsche Bahn": { - "tool_description": "Search stations and trips within Deutsche Bahn network. Find a train or public transport stop, search trains, trams, subway, and buses between two stations in the german railway network.. Get journey and fare data, departure and arrival times for any stop in Germany", - "score": { - "avgServiceLevel": 97, - "avgLatency": 1792, - "avgSuccessRate": 90, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "borders": { - "tool_description": "USA Cross Border Waiting Times is an API service that provides real-time updates on wait times at various border crossings between the United States/Canada and United States/Mexico. ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 7, - "avgSuccessRate": 100, - "popularityScore": 6.6, - "__typename": "Score" - } - }, - "FlightsLogic's Flight Booking | Flight Booking Software": { - "tool_description": "FlightsLogic provides Flight Booking Software, Flight Booking API to the travel agents, tour operators and travel companies worldwide.", - "score": null - }, - "Traveldax": { - "tool_description": "Boosting revenue on metasearch channels through pricing intelligence.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 535, - "avgSuccessRate": 100, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "Where to Credit": { - "tool_description": "The Where to Credit API provides mileage earning calculations for frequent flyer programs around the world.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1369, - "avgSuccessRate": 92, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "iRail": { - "tool_description": "Search for train trips in Belgium using the iRail API. You can search for train departures in a certain station and search for all the stations in Belgium.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 574, - "avgSuccessRate": 100, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "UKRail": { - "tool_description": "UKRail is an API for UK train times. Sourced from National Rail Enquiries live departure boards SOAP web service (OpenLDBWS) \n\nTheir webservice can be, to put it mildly, tricky to work with so UKRail aims to make things a little easier!\n\nSuited for small businesses who may want to leverage rail data on a website or phone app.\n\nAdditionally, it is Ideal for train enthusiasts who may want to use data from the live departure boards for one of their projects - model railways (including mimic pane...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 214, - "avgSuccessRate": 100, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Zumata": { - "tool_description": "Zumata is a new approach in B2B travel API's. In a few simple steps, you can be getting real-time travel pricing, availability and booking worldwide via simple API calls.", - "score": { - "avgServiceLevel": 0, - "avgLatency": 627, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Vehicle charging stations ": { - "tool_description": "Find EV charging stations for cars\nYou can use this API to retrieve charging location information,", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1469, - "avgSuccessRate": 100, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "VOO": { - "tool_description": "Voos baratos para Madrid", - "score": null - }, - "Hotels com Provider": { - "tool_description": "Search hotels, see prices, photos of the hotels, reviews. **Site:** www.hotels.com **Support**: [tipsters@rapi.one](mailto:tipsters@rapi.one) / t.me/api_tipsters **Other travel api:** https://rapi.one", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1366, - "avgSuccessRate": 96, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "Turkey Public Holidays": { - "tool_description": "Public Holidays Api where you can see the Turkey public holidays of the next 2 years", - "score": { - "avgServiceLevel": 99, - "avgLatency": 1145, - "avgSuccessRate": 99, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "Cryptocurrency News": { - "tool_description": "Get the latest crypto news direct from your preferred sources (fast & reliable). News sources will be continuously added.", - "score": { - "avgServiceLevel": 99, - "avgLatency": 883, - "avgSuccessRate": 99, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "Reddio NFT, Token and IPFS": { - "tool_description": "Reddio APIs provide the layer 2 zkRollup APIs powered by StarkEx from StarkWare, enabling 0 gas fee on layer 2 and 10k TPS. This new zkRollup technology is being widely use by many NFT marketplaces, GameFi , Defi projects etc.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 204, - "avgSuccessRate": 100, - "popularityScore": 7.3, - "__typename": "Score" - } - }, - "secure-text-api": { - "tool_description": "This project created for serve api endpoints to encrypt and decrypt text via http request", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1328, - "avgSuccessRate": 67, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "ExplorArc's Link Finder": { - "tool_description": "ExplorArc's Link Finder API simplifies the process of finding relevant links by returning results based on a given query. With this powerful tool, users can easily access the information they need to streamline their workflow and achieve their goals", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1506, - "avgSuccessRate": 100, - "popularityScore": 7.8, - "__typename": "Score" - } - }, - "AskTheWorld": { - "tool_description": "This API lets you get all the questions beeing asked on search plattforms like google.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1107, - "avgSuccessRate": 100, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "Image Search API": { - "tool_description": "An API that returns the URL and label of images related to a keyword, and also a list of related searches.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1756, - "avgSuccessRate": 100, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "Bing Search APIs": { - "tool_description": "An AI service from Microsoft Azure that enables secure, ad-free location search for your users, displaying relevant information from web results, images, local businesses, news and images Photo.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 131, - "avgSuccessRate": 100, - "popularityScore": 9, - "__typename": "Score" - } - }, - "Les PagesJaunes / Les PagesBlanche France": { - "tool_description": "Extraire les donnĂ©es du Pages Jaunes et Pages Blanches scraping email et tĂ©lĂ©phone ", - "score": { - "avgServiceLevel": 97, - "avgLatency": 667, - "avgSuccessRate": 97, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Google Keyword Scraper": { - "tool_description": "Google Keyword Research", - "score": { - "avgServiceLevel": 100, - "avgLatency": 4759, - "avgSuccessRate": 100, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "Webit Image Search": { - "tool_description": "Powerful web image search with rating, reverse search by image and multi-lingual capabilities.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 7836, - "avgSuccessRate": 100, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "License Plate Lookup": { - "tool_description": "Check VIN by US license plate and state. \nVIN decoder from [VIN decoder](https://rapidapi.com/dominonet-lTpEE6zONeS/api/vin-decoder19).\n[View documents](https://rapidapi.com/dominonet-lTpEE6zONeS/api/vin-decoder19/details)\n", - "score": { - "avgServiceLevel": 100, - "avgLatency": 651, - "avgSuccessRate": 100, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "Subdomains lookup": { - "tool_description": "Return all known subdomains from root domain inquiry", - "score": { - "avgServiceLevel": 99, - "avgLatency": 824, - "avgSuccessRate": 99, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "barcode.monster": { - "tool_description": "Search for barcode information", - "score": { - "avgServiceLevel": 79, - "avgLatency": 21798, - "avgSuccessRate": 79, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "SuperHero Search": { - "tool_description": "An API to get information about superheroes.", - "score": { - "avgServiceLevel": 99, - "avgLatency": 286, - "avgSuccessRate": 99, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "Front Page search engine": { - "tool_description": "Search Front Pages of internet and get title and dessription along with screenshot of Front Page of the website and domain. along with a host of other information, like IAB category, size, language, percentile domain rank.", - "score": { - "avgServiceLevel": 90, - "avgLatency": 1446, - "avgSuccessRate": 90, - "popularityScore": 8, - "__typename": "Score" - } - }, - "DuckDuckGo": { - "tool_description": "DuckDuckGo Search API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1600, - "avgSuccessRate": 100, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Trends keywords in different regions": { - "tool_description": "An API to access trend keywords from listed 50 regions, since 2023-05-18", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1538, - "avgSuccessRate": 100, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "Auto Suggest Queries": { - "tool_description": "This is a Free Query Suggest API which provides suggestions for search queries based on a given keyword", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1121, - "avgSuccessRate": 100, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Google Search JSON": { - "tool_description": "Provides Google search results in JSON format. Its features include web search, image search, autocomplete, and trending search.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 324, - "avgSuccessRate": 100, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "Bing Web Search": { - "tool_description": "Bing web search api return full result of bing serp.", - "score": { - "avgServiceLevel": 57, - "avgLatency": 1328, - "avgSuccessRate": 43, - "popularityScore": 7.4, - "__typename": "Score" - } - }, - "Google Trends": { - "tool_description": "An API used to access data about search trends on Google based on specific keywords, time range, and location.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 800, - "avgSuccessRate": 89, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Question-Answered": { - "tool_description": "Ask a question and get an answer. Example: When did World War two end? answer - September 2, 1945", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3455, - "avgSuccessRate": 100, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "Google Reviews Scraper": { - "tool_description": "Api that scrape all reviews and ratings of any company or any business you searched from google", - "score": { - "avgServiceLevel": 98, - "avgLatency": 1921, - "avgSuccessRate": 98, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Google Search Results": { - "tool_description": "This API is for searching data and images on Google.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1217, - "avgSuccessRate": 100, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "Netlas All-in-One Host": { - "tool_description": "WHOIS, rDNS, fDNS, Privacy, GeoIP, Domain/IP Lookup.\n\nWhat is Netlas? \nNetlas is the useful tool for OSINT and data collecting. Access billions of objects on the Internet: domains and subdomains, IP addresses, certificates, and the WHOIS database with just one request to our API. \nAll the data that you can get with our help is carefully collected by Netlas scanners and not purchased from other vendors, which makes it unique in many ways.\nOne-click is enough for you to find out everything abou...", - "score": { - "avgServiceLevel": 99, - "avgLatency": 480, - "avgSuccessRate": 51, - "popularityScore": 9, - "__typename": "Score" - } - }, - "Postali": { - "tool_description": "Mexico zip codes / CĂłdigos postales de MĂ©xico", - "score": { - "avgServiceLevel": 100, - "avgLatency": 7, - "avgSuccessRate": 100, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "TorrentHunt": { - "tool_description": "API to self host Torrent Hunt Bot", - "score": { - "avgServiceLevel": 100, - "avgLatency": 125, - "avgSuccessRate": 100, - "popularityScore": 8, - "__typename": "Score" - } - }, - "Vehicle Ownership Cost": { - "tool_description": "Estimate the total cost of owning a vehicle for the next five years based on the license plate number or vehicle identification number. By analyzing millions of records in the vehicle database, the estimator takes into account factors such as depreciation, insurance, fuel costs, maintenance and repairs, and national taxes. The data is updated monthly.\n[View documents](https://rapidapi.com/dominonet-lTpEE6zONeS/api/vehicle-ownership-cost/details)", - "score": { - "avgServiceLevel": 100, - "avgLatency": 934, - "avgSuccessRate": 100, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "Job Search": { - "tool_description": "Search for jobs posts, and post them on your web site", - "score": null - }, - "Fiverr Pro services": { - "tool_description": "API to provide a list of vetted professional sellers for any category.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 246, - "avgSuccessRate": 87, - "popularityScore": 7.7, - "__typename": "Score" - } - }, - "Neo Google Search": { - "tool_description": "API used to retrieve data from Google search results in real time. Support web search and image search", - "score": { - "avgServiceLevel": 100, - "avgLatency": 637, - "avgSuccessRate": 100, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "Bing Entity Search": { - "tool_description": "An AI service from Microsoft Azure that recognizes and classifies named entities, and finds search results based on them.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 582, - "avgSuccessRate": 89, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "License Plate to VIN": { - "tool_description": "Lookup VIN by US license plate and state.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 642, - "avgSuccessRate": 100, - "popularityScore": 9, - "__typename": "Score" - } - }, - "Bing Autosuggest": { - "tool_description": "An AI service from Microsoft Azure that helps users complete queries faster by adding intelligent type-ahead capabilities.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 177, - "avgSuccessRate": 88, - "popularityScore": 8, - "__typename": "Score" - } - }, - "YouTube Keyword Search": { - "tool_description": "YouTube Keyword Search API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 348, - "avgSuccessRate": 100, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Postleitzahl zu Adresse": { - "tool_description": "Ermittlung der Postletzahl in Deutschland fĂŒr eine Anschrift oder einen StĂ€dtenamen.", - "score": { - "avgServiceLevel": 4, - "avgLatency": 635, - "avgSuccessRate": 4, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "NFT Explorer": { - "tool_description": "Gets all NFT collections that match a given metadata search in +20 networks and including testnets.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 475, - "avgSuccessRate": 32, - "popularityScore": 8, - "__typename": "Score" - } - }, - "Google Search API": { - "tool_description": "Get Google Search results in JSON format. Several parameters to set country, language, number of results. Get all SERP data through this API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 9165, - "avgSuccessRate": 92, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "Place Autocomplete": { - "tool_description": "Autocomplete is a feature within Google Search that makes it faster to complete searches that you start to type.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 215, - "avgSuccessRate": 100, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Google Jobs": { - "tool_description": "Google Jobs Scraper", - "score": { - "avgServiceLevel": 100, - "avgLatency": 394, - "avgSuccessRate": 100, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "OPT-NC public docker images": { - "tool_description": "RĂ©cupĂ©rer les images dockers publiques publiĂ©es par OPT-NC", - "score": { - "avgServiceLevel": 90, - "avgLatency": 652, - "avgSuccessRate": 90, - "popularityScore": 7.8, - "__typename": "Score" - } - }, - "HotelApi": { - "tool_description": "Booking Hotel Api", - "score": null - }, - "SERP API": { - "tool_description": "Simple SERP API to perform web search and get results in JSON.", - "score": { - "avgServiceLevel": 88, - "avgLatency": 3230, - "avgSuccessRate": 88, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "YouTube Search Results": { - "tool_description": "Fetch the YouTube Search Results and the information for each item for a specific search term, without any limits!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1441, - "avgSuccessRate": 100, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "Wiki Briefs": { - "tool_description": "Briefs about anything you search. No need to read lengthy articles, we summarize.", - "score": { - "avgServiceLevel": 99, - "avgLatency": 1101, - "avgSuccessRate": 85, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "City and State Search API": { - "tool_description": "A easy-to-use API for search cities, states, and countries from around the world.", - "score": { - "avgServiceLevel": 84, - "avgLatency": 18610, - "avgSuccessRate": 84, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "Youtube Search_v3": { - "tool_description": "Welcome to the YouTube Search API documentation! This comprehensive guide provides developers with the necessary information and resources to integrate our powerful search functionality into their applications and services. With this API, you can easily retrieve search results from YouTube, including videos, channels, playlists, and more, based on specific search queries and parameters. Whether you're building a video discovery platform, content aggregator, or personalized recommendation syst...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 426, - "avgSuccessRate": 83, - "popularityScore": 7.2, - "__typename": "Score" - } - }, - "DBU_API": { - "tool_description": "Đ”Đ»Ń ĐżĐŸĐžŃĐșа Đ°ĐœĐžĐŒĐ” Đž ĐŒĐ°ĐœĐłĐž", - "score": { - "avgServiceLevel": 100, - "avgLatency": 635, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "Google Search_v3": { - "tool_description": "API used to retrieve data from Google search results in real time. Support web search and image search", - "score": { - "avgServiceLevel": 100, - "avgLatency": 708, - "avgSuccessRate": 99, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "Vehicle Market Value": { - "tool_description": "Query millions of historical vehicle sales in all 50 states of the United States based on license plate number or VIN to obtain market value assessments of new and used vehicles. Data is updated monthly.\n[View documents](https://rapidapi.com/dominonet-lTpEE6zONeS/api/vehicle-market-value/details)", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1077, - "avgSuccessRate": 100, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "UfU": { - "tool_description": "Search engine for website", - "score": { - "avgServiceLevel": 100, - "avgLatency": 34, - "avgSuccessRate": 100, - "popularityScore": 7.2, - "__typename": "Score" - } - }, - "Google Search_v2": { - "tool_description": "Google Search API. Search the world’s information, including webpages, related keywords and more.", - "score": { - "avgServiceLevel": 99, - "avgLatency": 1877, - "avgSuccessRate": 99, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "searchhook": { - "tool_description": "Websearch (SearX) with Webhooks on new results. Allows to automate brand, product, topic monitoring using tools like n8n or node-red.", - "score": { - "avgServiceLevel": 40, - "avgLatency": 719, - "avgSuccessRate": 40, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "Google Web Search": { - "tool_description": "Google Web Search API. Search the world’s information, including webpages, related keywords and more.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1257, - "avgSuccessRate": 100, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "Emplois OPT-NC": { - "tool_description": "Les offres d'emplois Ă  l'OPT-NC", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1292, - "avgSuccessRate": 100, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "VIN decoder": { - "tool_description": "This VIN decoder covers up to 168 fields for the USA and Canada. It also includes VIN lookup by US license plate and state. The database is updated regularly. \n[View documents](https://rapidapi.com/dominonet-lTpEE6zONeS/api/vin-decoder19/details)", - "score": { - "avgServiceLevel": 99, - "avgLatency": 1601, - "avgSuccessRate": 99, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "Web Search_v2": { - "tool_description": "Web Search API. Search the web pages from billions of results. Related keywords, knowledge panel and more.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1199, - "avgSuccessRate": 100, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "Bing Web Search_v2": { - "tool_description": "An AI service from Microsoft Azure that enables safe, ad-free, location-aware search for your users, surfacing relevant information from web results, images, local businesses, news, videos, and visuals.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 321, - "avgSuccessRate": 100, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Keyword Autosuggest": { - "tool_description": "autosuggest and find related keywords for a given keyword. SEO-friendly", - "score": { - "avgServiceLevel": 100, - "avgLatency": 841, - "avgSuccessRate": 100, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "MailValid": { - "tool_description": "A REST API that checks for disposable and invalid emails", - "score": { - "avgServiceLevel": 100, - "avgLatency": 476, - "avgSuccessRate": 97, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "31Events - Send Native Calendar Invites": { - "tool_description": "31Events is a simple, yet powerful calendaring event management service that allows for the sending of calendaring events directly to your customer’s calendar. It could be used for Webinars, Seminars, Training, etc. If the customer accepts the calendar invite they are automatically signed up for the event.\r\n\r\nStandards based iCal compliant that works with Exchange calendars, Google Calendars, mobile phones. \r\n\r\nNo more \"Click to download to calendar\" Send directly to a email account for accept or reject.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 611, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "QR Code by API-Ninjas": { - "tool_description": "Generate custom QR codes for any data. See more info at https://api-ninjas.com/api/qrcode.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 481, - "avgSuccessRate": 100, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Checky - Verify Phone Number": { - "tool_description": "Determine in realtime if a given phone number is valid and the type of phone line it is connected to. Works for all countries!", - "score": { - "avgServiceLevel": 98, - "avgLatency": 1949, - "avgSuccessRate": 98, - "popularityScore": 9, - "__typename": "Score" - } - }, - "PubNub Network": { - "tool_description": "The PubNub Network makes Real-time Communications Simple with an easy API. Two Functions: Send/Receive (Publish/Subscribe). We provide a web-scale API for businesses to build scalable Data Push communication apps on Mobile, Tablet and Web. Bidirectional JSON. Ask for commit access - via Twitter: @pubnub - via IRC: #pubnub on FreeNode", - "score": { - "avgServiceLevel": 100, - "avgLatency": 4320, - "avgSuccessRate": 71, - "popularityScore": 6.4, - "__typename": "Score" - } - }, - "test apideno": { - "tool_description": "test api deno", - "score": { - "avgServiceLevel": 94, - "avgLatency": 482, - "avgSuccessRate": 94, - "popularityScore": 7.5, - "__typename": "Score" - } - }, - "Punto 61": { - "tool_description": ".61 API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1302, - "avgSuccessRate": 100, - "popularityScore": 6.9, - "__typename": "Score" - } - }, - "QuieroChat": { - "tool_description": "Sistema de chat de QuieroChat para el Terra Chat.", - "score": null - }, - "Free Phone Carrier Lookup": { - "tool_description": "FREEEEE !!! , Phone carrier lookups are a great way to obtain more information about leads and user data. If a number is not associated with a phone carrier, then it's likely that phone number is not currently active. The phone number carrier provides useful information about location, user type (personal or business number), line type, and much more. Some carriers are frequently associated with fraudulent behavior, ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 928, - "avgSuccessRate": 100, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Wavecell SMS": { - "tool_description": "Wavecell SMS API allows registered users to send SMS worldwide using a simple , fast and reliable HTTP API.\r\n\r\nSend messages in minutes - Get your free trial at : http://www.wavecell.com", - "score": { - "avgServiceLevel": 0, - "avgLatency": 300, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "https://i.imgur.com/JM9TESV.jpg/": { - "tool_description": "https://i.imgur.com/JM9TESV.jpg/", - "score": { - "avgServiceLevel": 100, - "avgLatency": 967, - "avgSuccessRate": 100, - "popularityScore": 5.9, - "__typename": "Score" - } - }, - "Flowplayer Drive": { - "tool_description": "Encode videos in the cloud and host them with Flowplayer. Manage your video library, and access your videos' analytics data.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 875, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "Truecaller_v2": { - "tool_description": "", - "score": { - "avgServiceLevel": 100, - "avgLatency": 578, - "avgSuccessRate": 100, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "TrumpetBox Cloud": { - "tool_description": "Thousands of businesses rely on TrumpetBox Cloud to communicate with their audience via text message. With our API, developers can access many of our platform’s features and integrate them with other websites or applications.", - "score": { - "avgServiceLevel": 94, - "avgLatency": 1084, - "avgSuccessRate": 94, - "popularityScore": 8.2, - "__typename": "Score" - } - }, - "HQSMS": { - "tool_description": "HQSMS is a global SMS provider offering SMS gateway and specializing in SMS text messaging solutions : SMS notices, bulk SMS and HLR lookup service. HTTPS API interface allows you to inegrate most of on-line applications.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1268, - "avgSuccessRate": 100, - "popularityScore": 5.9, - "__typename": "Score" - } - }, - "Email Checker and Validator": { - "tool_description": "Use this API to validate the email addresses for your business. This endpoint will check syntax and will validate deliverability.\n\nWhen an email address is valid, an object is returned containing a normalized form of the email address (which you should use!) and other information.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 6659, - "avgSuccessRate": 100, - "popularityScore": 6.6, - "__typename": "Score" - } - }, - "Grup Terbuka": { - "tool_description": "open api group chat", - "score": { - "avgServiceLevel": 100, - "avgLatency": 147, - "avgSuccessRate": 100, - "popularityScore": 7.7, - "__typename": "Score" - } - }, - "Sim based Location Tracking": { - "tool_description": "This API provides location tracking for any phone number using the cellular network. Tracking does not require the internet or the presence of a Smartphone.\nVisit https://www.traqo.io for API KEYS.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1587, - "avgSuccessRate": 2, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "LINE Messaging": { - "tool_description": "LINE Messaging API lets you develop two-way communication between your service and LINE users. Push and reply messages Push messages are messages that your bot can send to users at any time. Reply messages are messages that your bot sends in response to users' messages. 1-on-1 and group chats Send messages not only to users who have added your bot as a friend but also in group chats that your bot has been added to.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 139, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Dudu": { - "tool_description": "Dudu.com – multilingual social network with a unique translation technology allowing Internet users that speak different languages to communicate freely without language barriers.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1086, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "Retrieve DNS Entries": { - "tool_description": "The API enables you to make fast DNS and WHOIS lookups.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 135, - "avgSuccessRate": 93, - "popularityScore": 7.5, - "__typename": "Score" - } - }, - "D7 Viber": { - "tool_description": "Experience boundless connectivity with the D7API Gateway, connecting you to a vast messaging network. Now with Viber integration, enjoy seamless communication and stay connected like never before.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 717, - "avgSuccessRate": 81, - "popularityScore": 7.8, - "__typename": "Score" - } - }, - "SMSLink": { - "tool_description": "With more than 245 million SMS/year, SMSLink is a leading SMS provider in Romania, covering more than 190 countries/territories.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1430, - "avgSuccessRate": 100, - "popularityScore": 6.1, - "__typename": "Score" - } - }, - "Veriphone": { - "tool_description": "Global phone number verification in a free, fast, reliable JSON API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 501, - "avgSuccessRate": 98, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Validate Phone": { - "tool_description": "“Validate Phone” API validates national and international phone numbers, get location information about phone number.", - "score": null - }, - "On hold audio messages": { - "tool_description": "Messages for voicemails and switchboards using professional voice talents", - "score": null - }, - "Zipwhip": { - "tool_description": "Cloud texting for toll free,\r\nlandline,\r\nand mobile numbers\r\nSend and receive text messages\r\nfrom your laptop, desktop, or\r\ntablet computer using your\r\nexisting mobile or landline\r\nphone number.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1259, - "avgSuccessRate": 6, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "bitikas1": { - "tool_description": "niisama", - "score": null - }, - "Melrose Labs Voice API": { - "tool_description": "The Voice API is used for text-to-speech, speech-to-text and inbound/outbound voice routing. The Voice API is part of the Voice Gateway from Melrose Labs.", - "score": { - "avgServiceLevel": 20, - "avgLatency": 1511, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "Free Phone Number Lookup and Validation API": { - "tool_description": "Free Lookup and Validation API Phone Numbers and receive additional information like Geo Location, Timezone and Currency. No Signup required. ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1266, - "avgSuccessRate": 100, - "popularityScore": 7.5, - "__typename": "Score" - } - }, - "Weather_dataSet": { - "tool_description": "Weather_data Set on Django Project", - "score": { - "avgServiceLevel": 100, - "avgLatency": 7, - "avgSuccessRate": 100, - "popularityScore": 7.5, - "__typename": "Score" - } - }, - "Web Push Notifications Server": { - "tool_description": "Simple server which provides Web Push Notifications service to frontend applications.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1176, - "avgSuccessRate": 100, - "popularityScore": 7.5, - "__typename": "Score" - } - }, - "CakeMail": { - "tool_description": "CakeMail is an email marketing application that simplifies the way small businesses engage with customers, allowing them to manage contacts, create personalized email campaigns from templates and simply... send. It’s an affordable, easy-to-use solution, created to help small businesses begin, or pursue, their email marketing efforts - regardless of the marketing resources, design background or technical expertise they have.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 24, - "avgSuccessRate": 100, - "popularityScore": 6.7, - "__typename": "Score" - } - }, - "SawyerTest": { - "tool_description": "Test version for Sawyer Corp.", - "score": null - }, - "ISS Location": { - "tool_description": "Sends geographical location of NASA", - "score": { - "avgServiceLevel": 100, - "avgLatency": 364, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "Whatsapp Private API": { - "tool_description": "WhatsApp Private API is an unofficial API that allows developers to access WhatsApp's messaging platform outside of the official WhatsApp application. This API is not supported or endorsed by WhatsApp and its use violates WhatsApp's terms of service. The WhatsApp Private API provides developers with a way to interact with WhatsApp's messaging platform, allowing them to automate tasks, send and receive messages, and manage contacts. However, due to the unofficial nature of the API, there is a...", - "score": { - "avgServiceLevel": 95, - "avgLatency": 742, - "avgSuccessRate": 2, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "2Factor Authentication - India": { - "tool_description": "2Factor.in provides extremely simple to use APIs for implementing 2Factor Authentication ( Phone verification ) with just 1 API Call.\r\nBest Part of 2Factor.in solution is its Fast, Reliable & Economical too.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 334, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "BOTlibre": { - "tool_description": "BOT libre's goal is to foster an open, safe community of artificial intelligent chat bots and their developers.\r\n\r\nBOT libre allows you to create your own artificial intelligent chat bot, train them, and share them with others. You are free to use this website, and create your own bots for personal, commercial, or recreation usages.\r\n\r\nYou can give your bot its own avatar images, connect it to Twitter, or IRC chat.\r\nYou can train your bot through interacting with it, or using chat logs.\r\nYou can program your bot using a 4th generational state machine scripting language \"Self\".\r\nYou can import data from the web into your bot's memory, such as words from Wiktionary, or information from Freebase.\r\nYou can create a bot to act as your own website avatar.\r\nYou can create a bot to provide customer service or technical support for your products or services.\r\n\r\nBOT libre is a website produced and hosted by Paphus Solutions Inc.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1252, - "avgSuccessRate": 22, - "popularityScore": 2.3, - "__typename": "Score" - } - }, - "Phone and Email Validator_v2": { - "tool_description": "Extremely Useful tool for Phone, Email, IP Address and Postal Code Validation", - "score": { - "avgServiceLevel": 97, - "avgLatency": 7516, - "avgSuccessRate": 97, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "QuickBlox": { - "tool_description": "QuickBlox is a cloud­hosted Communications backend service. We help developers and publishers add advanced communication features to their apps while reducing development time & cost.\r\n\r\nAll our modules are available through SDKs for all major platforms - Android, iOS, WP7, Blackberry and Web.\r\n\r\nCommunication:\r\n○ Video Calling\r\n○ Voice Chat\r\n○ Instant Messaging\r\n○ Push Notifications\r\n○ Presence\r\n\r\nData:\r\n○ Location\r\n○ Users\r\n○ Content\r\n○ Custom Objects\r\n○ Ratings", - "score": { - "avgServiceLevel": 100, - "avgLatency": 619, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "caller-id": { - "tool_description": "Retrieve personal data (including Name, Gender, Job, Company Name, Email, Telco carrier name, etc) with mobile number", - "score": { - "avgServiceLevel": 61, - "avgLatency": 4648, - "avgSuccessRate": 61, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "Another Rapid Test": { - "tool_description": "Is it my name?", - "score": null - }, - "Flask": { - "tool_description": "Transtate for flask app", - "score": null - }, - "Revista Verde": { - "tool_description": "A Revista Verde (RV) Ă© periĂłdico cientĂ­fico internacional semestral do Programa Escola Verde e do Grupo de Pesquisa em Educação Ambiental Interdisciplinar (CNPq) sobre problemĂĄticas socioambientais e sustentabilidade.\n\nWebsite: https://revistaverde.escolaverde.org", - "score": { - "avgServiceLevel": 100, - "avgLatency": 907, - "avgSuccessRate": 100, - "popularityScore": 6.3, - "__typename": "Score" - } - }, - "Compras Net Api": { - "tool_description": "Compras Net Api", - "score": { - "avgServiceLevel": 100, - "avgLatency": 4681, - "avgSuccessRate": 100, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "Validate Phone by API-Ninjas": { - "tool_description": "Check whether a phone number is valid and get its metadata. See more info at https://api-ninjas.com/api/validatephone.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3131, - "avgSuccessRate": 99, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "Maytapi WhatsApp": { - "tool_description": "Send and receive messages from WhatsApp via Maytapi. It is a stable and reliable solution. See more: https://maytapi.com/", - "score": { - "avgServiceLevel": 99, - "avgLatency": 1006, - "avgSuccessRate": 99, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "SendSMS": { - "tool_description": "SMS Service Provider", - "score": { - "avgServiceLevel": 100, - "avgLatency": 852, - "avgSuccessRate": 100, - "popularityScore": 7.1, - "__typename": "Score" - } - }, - "Hesab": { - "tool_description": "Hesab", - "score": { - "avgServiceLevel": 0, - "avgLatency": 0, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "HelloSalut": { - "tool_description": "Say hello to your visitors in their native language!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 82, - "avgSuccessRate": 100, - "popularityScore": 6.7, - "__typename": "Score" - } - }, - "LanguageTool": { - "tool_description": "Style and grammar checking / proofreading for more than 25 languages, including English, French, Polish, Spanish and German. Based on languagetool.org.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 389, - "avgSuccessRate": 12, - "popularityScore": 2.5, - "__typename": "Score" - } - }, - "Upcall": { - "tool_description": "Upcall provides phone callers through an API and web interface. Simply send us your phone numbers and our professional callers will call them for you within minutes. We are the next generation call center. Contact us for more info!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 815, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "mobile-recharge-plans-api-tariff-Plans-free": { - "tool_description": "well-tried tariff plan API,tri telecom data tested, recharge plans API tried free come to know api,Developer or Company host detect all about expected latest plans info of variegated in telecom functioning operators around pan India. data Keywords: Recharge Plans API, freshest Mobile Recharge API, up-to-date Mobile recharge info, tariff plan of jio Prime, recharge plans, telecom data, online recharge API, tariff plan of bsnl, tariff plans of airtel, tariff plan of aircel, tariff plan of vodafone, tariff plans of mtnl, tariff plans of tata docomo, tariff plan of Jio, tariff plans of reliance, tariff plan of reliance gsm, tariff plan bsnl up east, tariff plan app,tariff plan comparison india, tariff plan comparison, tariff plan comparison delhi-NCR, tariff plans of flex, tariff plans of Postpaid, tariff plans gsm,", - "score": null - }, - "Hotspot Social 1": { - "tool_description": "Uma api para data", - "score": { - "avgServiceLevel": 0, - "avgLatency": 48, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "Skype Graph": { - "tool_description": "Skype Graph is an Unofficial Skype API that allows you search for Skype users by name or email address", - "score": { - "avgServiceLevel": 100, - "avgLatency": 498, - "avgSuccessRate": 94, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "bcolimited": { - "tool_description": "translate", - "score": { - "avgServiceLevel": 0, - "avgLatency": 0, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "GREEN-API": { - "tool_description": "Send and receive messages throue your own WhtasApp number for free.\nUse for CRM, Chat-Bots and etc.....", - "score": { - "avgServiceLevel": 100, - "avgLatency": 260, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "Phone Number Validator": { - "tool_description": "Feed this API a phone number in international format and have it validate it and verified. Results delivered to your results in seconds.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1247, - "avgSuccessRate": 100, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "Serverless blogging": { - "tool_description": "Serverless blogging enables you to integrate a blogging system within seconds, whilst giving clients a full WYISWYG interface to create and sort content as they please.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 74, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "eazita.com": { - "tool_description": "Eazita's application programming interface (API) provides the communication link between your application and Eazita's SMS Gateway, allowing you to send and receive text messages and to check the delivery status of text messages you've already sent.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 652, - "avgSuccessRate": 50, - "popularityScore": 6.2, - "__typename": "Score" - } - }, - "Networking": { - "tool_description": "This API will help you with several networking-related utilities.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1975, - "avgSuccessRate": 100, - "popularityScore": 7.6, - "__typename": "Score" - } - }, - "SIGNL4 – Critical Mobile Alerting": { - "tool_description": "When critical systems fail or major incidents happen, SIGNL4 is the fastest way to alert your staff, engineers, IT admins and workers ‘in the field’. SIGNL4 helps to keep your mission-critical infrastructure and services running – from anywhere and anytime. Integrates with 100+ IT, business and IoT tools.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 964, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "getBs": { - "tool_description": "DuLieuBs63Tinh", - "score": { - "avgServiceLevel": 100, - "avgLatency": 10, - "avgSuccessRate": 100, - "popularityScore": 7.5, - "__typename": "Score" - } - }, - "Phone Formatter": { - "tool_description": "With this API you will be able to get the entered phone number in international, national and several standard formats with additional information about the country for the correct phone numbers. The formatting method can use probabilistic algorithms and try to get all the necessary information if it was not passed in the input parameters", - "score": null - }, - "whin": { - "tool_description": "Send and receive any message type to your WhatsApp or owned groups with our gateway.", - "score": { - "avgServiceLevel": 99, - "avgLatency": 577, - "avgSuccessRate": 98, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "Barbaraaa": { - "tool_description": "Hi", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1298, - "avgSuccessRate": 100, - "popularityScore": 7.4, - "__typename": "Score" - } - }, - "Scout": { - "tool_description": "Telephone Number Insight including Validity, Robocall/SPAM, Reputation, LNP, Carrier, Timezone, and Geographic Information", - "score": { - "avgServiceLevel": 100, - "avgLatency": 397, - "avgSuccessRate": 100, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "GeneralTalker": { - "tool_description": "ăŸă‚‹ă§äșș間ぼようăȘè‡Ș然ăȘäŒšè©±ă‚’ćźŸçŸă™ă‚‹API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 5410, - "avgSuccessRate": 100, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "Stampr": { - "tool_description": "Postal mail has finally moved to the cloud. Mail letters online; Free Account; Fast & Secure; Support from Humans.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 303, - "avgSuccessRate": 25, - "popularityScore": 1.5, - "__typename": "Score" - } - }, - "English Talking": { - "tool_description": "This API aims to provide users with the possibility of conducting dialogues in English where the conversations and answers are registered and evaluated by the users themselves.\nđŸ‘œ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 7, - "avgSuccessRate": 100, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "Clickatell": { - "tool_description": "Use Clickatell's global SMS Gateway to send bulk SMS to:\r\nover 5.2 billion people on 960+ networks in 220+ countries & territories. This product provides an interface between your existing systems and Clickatell's Messaging Gateway.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 433, - "avgSuccessRate": 100, - "popularityScore": 7.4, - "__typename": "Score" - } - }, - "Quick Email Verification": { - "tool_description": "Improve your mail deliverability rates and protect your IP reputation by using our Free Email Verification Service. Need further help? You can contact us at https://quickemailverification.com/contact-us", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2311, - "avgSuccessRate": 71, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "BulkSMSAPI": { - "tool_description": "You may find many players in Indian market who offers you this kind of Transactional SMS Service with HTTP Bulk SMS API. KAPSYSTEM is one of the major premium Bulk SMS Service Providers with extensive range of API keys to meet your business needs in a flexible module.\r\n\r\nOur API allows integrating our Bulk SMS Gateway into your application for better control and functionality. Our API's are fast, simple and reliable, and built in such a way that they are easily manipulated to fit with any system. We ensure that any developer who wants to interface an application, site or system with our messaging Gateway can do so reliably and simply with freedom and flexibility. \r\n\r\nKAPSYSTEM BULK SMS SERVICE PROVIDER:\r\nIf you are looking to get best Transactional Route from direct provider, you are at right place, where our team will assist you to track how well this works for you and your customers before using with a free demo service option.\r\nKey features of our SMS Gateway:\r\n\r\n Scheduling of SMS as per your requirement.\r\n Creation and management of SMS templates for regular use.\r\n Detailed reporting of all sent and received SMS messages.\r\n Bulk SMS Web Interface is very intuitive and easy-to-use.\r\n Easy to customize and run your mass SMS campaigns.\r\n Multiple carrier option to be connected always.\r\n Robust and secure functionality with reliable deliverability.\r\n Admin panel to control all your campaigns.\r\n Full API documentation and well versed technical support team to assist you in integration of API with your application.", - "score": null - }, - "BombsAway": { - "tool_description": "Shock and Awe", - "score": { - "avgServiceLevel": 100, - "avgLatency": 353, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "HoG": { - "tool_description": "è«–ćŁ‡ć°ˆç”š", - "score": { - "avgServiceLevel": 100, - "avgLatency": 204, - "avgSuccessRate": 100, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "Automatic-custom-response-creator": { - "tool_description": "send a customer review, you will receive a personalized response proposal automatically", - "score": { - "avgServiceLevel": 100, - "avgLatency": 6868, - "avgSuccessRate": 100, - "popularityScore": 7.5, - "__typename": "Score" - } - }, - "Sagenda Free Booking System": { - "tool_description": "Sagenda is a booking, reservation, scheduling or appointment online software that increases the productivity of your business free of cost.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 515, - "avgSuccessRate": 100, - "popularityScore": 6.3, - "__typename": "Score" - } - }, - "Mojitok Sticker Store SDK": { - "tool_description": "Mojitok Sticker Store API/SDK is a curated store of licensed animated stickers, emojis, and GIFs. ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 7, - "avgSuccessRate": 100, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "Simple Interest Payment Calculator": { - "tool_description": "Calulates the monthly payment based on inital principal, interest, down payment, and term.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2037, - "avgSuccessRate": 55, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "Crypto Arbitrage": { - "tool_description": "Find cryptocurrency arbitrage opportunities in real-time across over 120 exchanges and 1400 pairs.", - "score": { - "avgServiceLevel": 96, - "avgLatency": 6206, - "avgSuccessRate": 91, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Credit Card Number Validator": { - "tool_description": "Enter the first few all numbers of a Credit Card to determine if it is valid and its details. By simply providing the first few numbers or a complete credit card number, this API will validate what card type it is and if it is likely valid using algorithms.", - "score": { - "avgServiceLevel": 70, - "avgLatency": 1227, - "avgSuccessRate": 70, - "popularityScore": 8.2, - "__typename": "Score" - } - }, - "G - Finance": { - "tool_description": "This API helps to query financial summary, stocks, quotes, movers, news, etc
", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1444, - "avgSuccessRate": 97, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Fear and greed index": { - "tool_description": "Index calculated by https://money.cnn.com/data/fear-and-greed/ ![](https://tip.ep-proxy.net/t/ra-fgi)", - "score": { - "avgServiceLevel": 98, - "avgLatency": 436, - "avgSuccessRate": 98, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "Kiann_Options_Project": { - "tool_description": "Testing project to allow users on options pricing and risk analytics. ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 498, - "avgSuccessRate": 89, - "popularityScore": 7.7, - "__typename": "Score" - } - }, - "Merchant credit card reward": { - "tool_description": "Merchant enrichment API with the detailed consumer credit card reward info for any global credit card merchant and credit card. Test data available for Singapore credit card. Concact us for use in other regions.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2502, - "avgSuccessRate": 100, - "popularityScore": 8.2, - "__typename": "Score" - } - }, - "Loan Amortization Calculator": { - "tool_description": "This API calculates Amortized loan repayment with details.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 8386, - "avgSuccessRate": 100, - "popularityScore": 7.7, - "__typename": "Score" - } - }, - "Twelve Data": { - "tool_description": "Financial data provided for developers, to enter the world markets. Instant access for real-time and historical data of stocks, forex, crypto, ETFs, indices, and more. Read more in [documentation](https://twelvedata.com/docs) and start [here](https://twelvedata.com/apikey).", - "score": { - "avgServiceLevel": 100, - "avgLatency": 436, - "avgSuccessRate": 100, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "sundayfinance": { - "tool_description": "Feed it a ticker and return next payout date or yield in response.\n\n/payout example: \nhttps://sundayfinance.p.rapidapi.com/stock/agnc\noutput:\n{\"result\":[\"agnc,14.56%\"]}\n\n/yield example: \nhttps://sundayfinance.p.rapidapi.com/yield/aapl\noutput:\n{\"result\":[\"aapl,16 Feb 2023 (Thu)\"]}\n", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2057, - "avgSuccessRate": 100, - "popularityScore": 7.8, - "__typename": "Score" - } - }, - "Involve Thailand FX Rates": { - "tool_description": "Involve Thailand FX Rates", - "score": { - "avgServiceLevel": 100, - "avgLatency": 475, - "avgSuccessRate": 100, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "EarningsData": { - "tool_description": "Get upcoming and historic earnings data for stocks! Contains historical data from 2020-05.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 15069, - "avgSuccessRate": 100, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "stocks_archive": { - "tool_description": "Archive data of some blue chip's tickers\n\n\n", - "score": { - "avgServiceLevel": 100, - "avgLatency": 276, - "avgSuccessRate": 100, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "Stock Sentiment API": { - "tool_description": "Real-time social sentiment API to track news activity related to a certain stock", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1672, - "avgSuccessRate": 98, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "The Sandbox - SAND": { - "tool_description": "An API dedicated to The Sandbox metaverse. Get the latest news and price data.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 891, - "avgSuccessRate": 100, - "popularityScore": 8, - "__typename": "Score" - } - }, - "GaiaLens ESG News": { - "tool_description": "Real-time ESG news API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 4962, - "avgSuccessRate": 83, - "popularityScore": 8.2, - "__typename": "Score" - } - }, - "Get Live Stock Price By Symbol": { - "tool_description": "Get Live Stock Price By Symbol", - "score": { - "avgServiceLevel": 78, - "avgLatency": 54186, - "avgSuccessRate": 78, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Binance Futures Leaderboard": { - "tool_description": "Binance Futures Leaderboard API is an API for querying the leaderboard of the Binance Futures Exchange.\n\nAny questions or issues please contact me on Telegram: [@DevNullZer0](https://t.me/devnullzer0) or via [devnullzer0@proton.me](mailto:devnullzer0@proton.me)", - "score": { - "avgServiceLevel": 100, - "avgLatency": 942, - "avgSuccessRate": 100, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "SentiTrade": { - "tool_description": "JSON web API that performs NLP sentiment analysis on news headlines for stocks and cryptocurrencies, grading daily collective news sentiment. DISCLAIMER: this prototype version currently only supports Bitcoin (BTC) and Ethereum (ETH). Consider donating to support full development at main site: https://www.sentitrade.net/", - "score": { - "avgServiceLevel": 71, - "avgLatency": 520, - "avgSuccessRate": 47, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "Morning Star": { - "tool_description": "", - "score": { - "avgServiceLevel": 98, - "avgLatency": 1564, - "avgSuccessRate": 98, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Armatic": { - "tool_description": "Armatic gives automation insights, increases efficiencies & more revenue.", - "score": null - }, - "Direct Debit Managed Service": { - "tool_description": "Customised and bespoke reports and exports for easy reconciliation API for a two-way data flow Full database integrations, including Salesforce, Access thankQ CRM and Gateway Ticketing.", - "score": null - }, - "Alpaca Trading": { - "tool_description": "API for commission-free US stock trading", - "score": { - "avgServiceLevel": 100, - "avgLatency": 612, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "Cryptocurrency Data": { - "tool_description": "Catalog", - "score": { - "avgServiceLevel": 100, - "avgLatency": 590, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "Financial Statements": { - "tool_description": "Get standardized balance sheet, income statement, and cash flow statement for global companies going back 5 years. ", - "score": { - "avgServiceLevel": 99, - "avgLatency": 1415, - "avgSuccessRate": 99, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "COVID-19 Economic Impact": { - "tool_description": "Get a real-time picture of economic indicators such as employment rates, consumer spending, mobility data, small business data, and COVID-19 health information.", - "score": { - "avgServiceLevel": 97, - "avgLatency": 2792, - "avgSuccessRate": 97, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "Crypto Swap": { - "tool_description": "Exchange the crypto of your choice into anyother crypto with an easy to use API", - "score": { - "avgServiceLevel": 83, - "avgLatency": 1383, - "avgSuccessRate": 70, - "popularityScore": 8, - "__typename": "Score" - } - }, - "Synthetic Financial Data": { - "tool_description": "Provides synthetic financial datasets that can be used in the development of algorithmic trading models.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1608, - "avgSuccessRate": 100, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "SCipherCrypto": { - "tool_description": "SCipherCrypto a cryptocurrency market data API. It returns the conversion rates of over 2000 cryptocurrencies, allowing developers to easily obtain real-time cryptocurrency exchange rates for their applications.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 21538, - "avgSuccessRate": 100, - "popularityScore": 7, - "__typename": "Score" - } - }, - "Stock And Options": { - "tool_description": "No. 1 rated U.S listed stock and options data provider with the lowest cost. The cloud based API has a simple interface and return easy to consume data in JSON format for options prices.", - "score": { - "avgServiceLevel": 50, - "avgLatency": 1082, - "avgSuccessRate": 50, - "popularityScore": 7.3, - "__typename": "Score" - } - }, - "CA Lottery": { - "tool_description": "California Lottery history. Powerball, Megamillions, SuperLottoPlus, Fantasy5, Daily3, Daily4, and DailyDerby.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1425, - "avgSuccessRate": 100, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "Webull": { - "tool_description": "Query public data for investment products including stocks, fractional shares, options, ETFs, and ADRs as on webull.com", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1845, - "avgSuccessRate": 99, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Coinbase": { - "tool_description": "Bitcoin, made simple. Coinbase is an international digital wallet that allows you to securely buy, use and accept bitcoin currency", - "score": { - "avgServiceLevel": 100, - "avgLatency": 341, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "Stock and Options Trading Data Provider": { - "tool_description": "No. 1 rated U.S listed stock and options data provider with the lowest cost. The cloud based API has a simple interface and return easy to consume data in JSON format for options prices.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 483, - "avgSuccessRate": 100, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "Litecoin Wallet": { - "tool_description": "litecoin blockchain wallet that support creating wallets & addresses, sending and receiving Litecoins and many more!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 314, - "avgSuccessRate": 62, - "popularityScore": 8.2, - "__typename": "Score" - } - }, - "Mortgage Calculator by API-Ninjas": { - "tool_description": "Simple-yet-powerful mortgage calculator for home financing. See more info at https://api-ninjas.com/api/mortgagecalculator.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 321, - "avgSuccessRate": 100, - "popularityScore": 6.6, - "__typename": "Score" - } - }, - "Kalshi Trading API": { - "tool_description": "An API for trading on Kalshi, a CFTC regulated exchange.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 621, - "avgSuccessRate": 14, - "popularityScore": 2, - "__typename": "Score" - } - }, - "YH Finance_v2": { - "tool_description": "", - "score": { - "avgServiceLevel": 91, - "avgLatency": 5307, - "avgSuccessRate": 91, - "popularityScore": 9, - "__typename": "Score" - } - }, - "Fake Credit Card Generator ": { - "tool_description": "Select the kind of card you want to generate and let the API generate a new Test Card for you. Using industry standard algorithms, the cards generated will be unique and tied to real instututions, providing a close to real testing number", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1655, - "avgSuccessRate": 100, - "popularityScore": 9, - "__typename": "Score" - } - }, - "ISLAMICOIN": { - "tool_description": "Circulation Supply", - "score": { - "avgServiceLevel": 100, - "avgLatency": 349, - "avgSuccessRate": 100, - "popularityScore": 6.6, - "__typename": "Score" - } - }, - "Exchange rates live": { - "tool_description": "An API showing all the latest currencies from official banks.", - "score": { - "avgServiceLevel": 95, - "avgLatency": 2219, - "avgSuccessRate": 93, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Business Credit Scores": { - "tool_description": "Long term credit scores for 8 million companies", - "score": { - "avgServiceLevel": 88, - "avgLatency": 1660, - "avgSuccessRate": 88, - "popularityScore": 7.7, - "__typename": "Score" - } - }, - "Crowdsense": { - "tool_description": "The most comprehensive real-time alpha-generating data feed API for cryptocurrencies, that analyzes social media sentiment, weighted sentiment, mentions, reach, top coins, spikes, influencer posts, and other chatter updates. Based on 100,000,000s of feeds per day from billions of unique sources across Twitter, Telegram, and Reddit for 1000+ cryptocurrencies. Start now for free...", - "score": { - "avgServiceLevel": 99, - "avgLatency": 6414, - "avgSuccessRate": 98, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "Sales Tax by API-Ninjas": { - "tool_description": "Calculate US sales tax by city or zip code. See more info at https://api-ninjas.com/api/salestax", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1355, - "avgSuccessRate": 79, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "Binance RSI indicator": { - "tool_description": "Allows you to get the current RSI indicator of a trading pair(s) on timeframes of 15 minutes, 1 hour, 4 hours and 1 day. Best suitable for trading robots.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1169, - "avgSuccessRate": 100, - "popularityScore": 6.7, - "__typename": "Score" - } - }, - "BB Finance": { - "tool_description": "This API helps to query for all information about finance summary, stocks, quotes, movers, etc
 to create a financial site/application such as bloomberg.com", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1789, - "avgSuccessRate": 100, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "Fake Credit Card Number Generator API": { - "tool_description": "This is an API that generates fake credit card numbers that will pass Luhn's algorithm.\n\nDifferent than most services that generate credit card numbers - our service allows you to specify what card network (Visa, Mastercard, American Express, etc) you want to use.\n\nOur API will generate trillions of random credit card numbers!\n", - "score": { - "avgServiceLevel": 100, - "avgLatency": 857, - "avgSuccessRate": 100, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "Investing": { - "tool_description": "This API provides complete data from Investing.com. Including Stocks, Indices, Commodities, News and many more.", - "score": { - "avgServiceLevel": 98, - "avgLatency": 301, - "avgSuccessRate": 98, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "Funds": { - "tool_description": "Get daily and historical funds prices by ISIN ![](https://tip.ep-proxy.net/t/ra-funds)", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1337, - "avgSuccessRate": 95, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "Hryvna Today": { - "tool_description": "Exchange rates from Hryvna Today", - "score": { - "avgServiceLevel": 100, - "avgLatency": 733, - "avgSuccessRate": 100, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "Exchange Rates API ": { - "tool_description": "This API retrieves all exchange rates between all currencies based on BCE.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 269, - "avgSuccessRate": 64, - "popularityScore": 8, - "__typename": "Score" - } - }, - "Inflation by API-Ninjas": { - "tool_description": "Get current inflation data for the dozens of countries. See more info at https://api-ninjas.com/api/inflation.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 663, - "avgSuccessRate": 99, - "popularityScore": 9, - "__typename": "Score" - } - }, - "tokenlist": { - "tool_description": "Collection of tokens and their contract addresses.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 988, - "avgSuccessRate": 100, - "popularityScore": 6.9, - "__typename": "Score" - } - }, - "BitcoinAverage crypto ticker and historical price": { - "tool_description": "BitcoinAverage is one of the leading providers of bitcoin price data, both ticker and historical.", - "score": { - "avgServiceLevel": 47, - "avgLatency": 801, - "avgSuccessRate": 32, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "Tradingview TA API (Technical Analysis)": { - "tool_description": "Tradingview API for technical analysis. With indicators, ocillicators, summaries etc.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 204, - "avgSuccessRate": 100, - "popularityScore": 7.2, - "__typename": "Score" - } - }, - "spacHero - SPAC Database": { - "tool_description": "Official spacHero SPAC API with live rankings, SPAC target names, merger meetings, warrant redemption deadlines, price targets, SEC filings, investor presentations and more.", - "score": { - "avgServiceLevel": 81, - "avgLatency": 338, - "avgSuccessRate": 81, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "StockyAPIExchange": { - "tool_description": "Based on the request parameters, StockyAPIExchange can provide relevant information to the user, such as stock details, summary, charts, history, daily, or latest data. The API can also use autocomplete to suggest stock names or ticker symbols as the user types the keyword, making it easier for the front end develepor to create the perfect Tool", - "score": { - "avgServiceLevel": 100, - "avgLatency": 11944, - "avgSuccessRate": 100, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "Wealth Reader API": { - "tool_description": "API providing standardised, real-time access to any entity's financial assets.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 602, - "avgSuccessRate": 100, - "popularityScore": 7.1, - "__typename": "Score" - } - }, - "360MiQ": { - "tool_description": "Stock Market Breadth API for the US and Global Stock Markets", - "score": { - "avgServiceLevel": 100, - "avgLatency": 273, - "avgSuccessRate": 96, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "Evictions Suits Liens and Judgments": { - "tool_description": "This API returns filed evictions, suits, liens and judgments against an individual within the past 7 years.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 732, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "Forecast crypto and fiat currency exchange rates": { - "tool_description": "Exchange rates forecast for fiat and crypto. Currency converter with forecast and historical data", - "score": { - "avgServiceLevel": 33, - "avgLatency": 394, - "avgSuccessRate": 33, - "popularityScore": 8, - "__typename": "Score" - } - }, - "Oil Thai Price": { - "tool_description": "Price of Oil in Thailand", - "score": { - "avgServiceLevel": 50, - "avgLatency": 7217, - "avgSuccessRate": 50, - "popularityScore": 7.1, - "__typename": "Score" - } - }, - "TotalSupply": { - "tool_description": "Retrieves TotalSupply of LEAF token", - "score": { - "avgServiceLevel": 100, - "avgLatency": 601, - "avgSuccessRate": 100, - "popularityScore": 7.1, - "__typename": "Score" - } - }, - "Supportnresistance": { - "tool_description": "API for obtaining support and resistance stock prices. Please visit our website at https://supportnresistance.com/ for more details", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1046, - "avgSuccessRate": 40, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "Prague Stock Exchange": { - "tool_description": "REST API for Prague Stock Exchange https://www.pse.cz", - "score": { - "avgServiceLevel": 100, - "avgLatency": 107704, - "avgSuccessRate": 62, - "popularityScore": 8, - "__typename": "Score" - } - }, - "Stock Prices": { - "tool_description": "Returns the adjusted open, high, low, and close price for a given symbol. Volume, dividend, and stock split information is also included for each symbol.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 824, - "avgSuccessRate": 100, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "Seeking Alpha Finance": { - "tool_description": "Seeking Alpha is the world’s largest investing community. Seeking Alpha’s content has unparalleled breadth and depth: from stocks, ETFs and mutual funds to commodities and cryptocurrency. **Support**: [tipsters@rapi.one](mailto:tipsters@rapi.one) / t.me/api_tipsters", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1004, - "avgSuccessRate": 83, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "👋 Demo Project_v3": { - "tool_description": "This Project is created by the onboarding process", - "score": { - "avgServiceLevel": 100, - "avgLatency": 215, - "avgSuccessRate": 100, - "popularityScore": 5.2, - "__typename": "Score" - } - }, - "Crypto Asset Cold Wallet Create": { - "tool_description": "A free service that allows you to create cold wallets for various crypto assets such as BTC, ADA, ALGO, ATOM, AVAX, CHZ, DOT, EOS, LINK, MANA, MATIC, SHIB, SOL, TRX, ETH, LTC, XTZ, DOGE, XLM, and XRP. It can be a software or a website that you can use to create a cold wallet for the supported crypto assets. You can store the private key in a safe place and use the public key to receive the crypto assets. Some of these services also allow you to print out the private key on a physical paper an...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 523, - "avgSuccessRate": 20, - "popularityScore": 1.8, - "__typename": "Score" - } - }, - "Currencygenie": { - "tool_description": "CurrencyGenie is a powerful API that generates a comprehensive list of currencies from around the world. With easy integration and real-time updates, CurrencyGenie simplifies currency conversion for businesses and individuals alike.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1425, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "Investing - Cryptocurrency Markets": { - "tool_description": "These APIs provide data of all cryptocurrencies, markets, ideal for tracking prices and exchange rates.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1728, - "avgSuccessRate": 100, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Finance Data": { - "tool_description": "Get stocks up-to-date financial data", - "score": { - "avgServiceLevel": 100, - "avgLatency": 842, - "avgSuccessRate": 100, - "popularityScore": 7.4, - "__typename": "Score" - } - }, - "Finance Social Sentiment For Twitter and StockTwits": { - "tool_description": "Utradea's Social Sentiment APIs to track social media activity in relation to stocks and cryptocurrencies. Start with /get-social-list endpoint to determine what stocks/cryptocurrencies you can search for across various endpoints.", - "score": { - "avgServiceLevel": 59, - "avgLatency": 2588, - "avgSuccessRate": 59, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Holistic Finance - Stock Data": { - "tool_description": "Provides stock data based on multiple sources such as Yahoo Finance.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 572, - "avgSuccessRate": 99, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "Exchange Rate Provider": { - "tool_description": "Simple provider of foreign exchange rates for major currencies.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 625, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "Cryptocurrency Markets": { - "tool_description": "Official cryptocurrency market API provides a comprehensive list of coins, profiles, stats, trends, most watch, top gainers/losers, newly created, and more! This API is ideal for web and APP developers.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 950, - "avgSuccessRate": 100, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "RetrieveUSTaxRate": { - "tool_description": "Retrieve the US sales tax rate by zip code", - "score": { - "avgServiceLevel": 100, - "avgLatency": 101, - "avgSuccessRate": 100, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "StockTwits": { - "tool_description": "StockTwits provides a social communications platform and social graph for anyone interested in the markets and investing.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 717, - "avgSuccessRate": 12, - "popularityScore": 2, - "__typename": "Score" - } - }, - "Pancakeswap API": { - "tool_description": "A pancakeswap API to get token price and other information with token address. Token price, token name, token decimals, balance of an address, token supply, token symbol.", - "score": { - "avgServiceLevel": 97, - "avgLatency": 315, - "avgSuccessRate": 97, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "Loan Amortization Schedule Calculator": { - "tool_description": "Amortized loan repayment schedule calculator", - "score": { - "avgServiceLevel": 100, - "avgLatency": 558, - "avgSuccessRate": 99, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Test_v3": { - "tool_description": "for test purpose", - "score": null - }, - "Circulating Supply": { - "tool_description": "This API returns the value of given coin.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 976, - "avgSuccessRate": 100, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "Yahoo Finance_v2": { - "tool_description": "Yahoo Finance API for stocks, options, ETFs, mutual funds and news. Moved to: https://rapidapi.com/sparior/api/mboum-finance", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1455, - "avgSuccessRate": 100, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "Webit Blockchain": { - "tool_description": "Get blockchain data from Ethereum, Polygon, Binance, Solana mainnets, including Ropsten, Rinkey, Goerly, Kovan, Mumbai testnets.", - "score": { - "avgServiceLevel": 97, - "avgLatency": 3531, - "avgSuccessRate": 97, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "Crypto Whale Transactions": { - "tool_description": "Get latest huge crypto transactions for most popular blockchains", - "score": { - "avgServiceLevel": 100, - "avgLatency": 283, - "avgSuccessRate": 87, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "Real-Time Finance Data": { - "tool_description": "Get stocks / market quotes and trends, ETF, international exchanges / forex, crypto, related news and analytics in real-time.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 893, - "avgSuccessRate": 100, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "RealStonks": { - "tool_description": "An API that gets you the real-time stock price of any NASDAQ-listed stock, along with some other parameters.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 6197, - "avgSuccessRate": 98, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "ByBit Leaderboard": { - "tool_description": "🏆 Experience the power of ByBit Exchange with our ByBit API. Analyze, follow top crypto traders, dominate the market!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 690, - "avgSuccessRate": 100, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Currency Converter Pro": { - "tool_description": "Accurate and Reliable Data for 170 World Currencies. Exchange rates are updated every hour..", - "score": { - "avgServiceLevel": 100, - "avgLatency": 99, - "avgSuccessRate": 100, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "Qvantana": { - "tool_description": "Our free API provides real-time and historical crypto trading data from 4 major exchanges, enriched with over 30 customizable trading indicators. It offers up to 5000 rows of data in a single request, ensuring comprehensive market analysis. The API is user-friendly and offers improved data fetching capabilities compared to standard exchange documentation, making it an essential tool for traders and developers alike.", - "score": { - "avgServiceLevel": 77, - "avgLatency": 950, - "avgSuccessRate": 77, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "CoinLore Cryptocurrency": { - "tool_description": "Provides cryptocurrency prices,exchanges,markets api", - "score": { - "avgServiceLevel": 98, - "avgLatency": 2563, - "avgSuccessRate": 98, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "Crypto Markets": { - "tool_description": "Get all crypto markets data live", - "score": { - "avgServiceLevel": 100, - "avgLatency": 23, - "avgSuccessRate": 70, - "popularityScore": 7.4, - "__typename": "Score" - } - }, - "Nordigen": { - "tool_description": "Nordigen API allows you to POST bank statement files and GET back categorized transactions. The API contains other endpoints that allow you to receive an income and liability overview, identify risk behaviors and other cool stuff.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 968, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Stoxx": { - "tool_description": "Retrieve live and historical information for publicly traded companies", - "score": { - "avgServiceLevel": 100, - "avgLatency": 633, - "avgSuccessRate": 100, - "popularityScore": 7.2, - "__typename": "Score" - } - }, - "Greenlight": { - "tool_description": "BUY/SELL signals and trends from a range of popular technical indicators (24 total)", - "score": { - "avgServiceLevel": 88, - "avgLatency": 608, - "avgSuccessRate": 88, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "Ethereum random address generator. ETH key pairs generator": { - "tool_description": "This API generates a random ethereum public address with its private key", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1141, - "avgSuccessRate": 100, - "popularityScore": 6.7, - "__typename": "Score" - } - }, - "Crypto Arbitrage Trading": { - "tool_description": "Introducing our new API, designed to provide you with real-time price differences between Binance and KuCoin for a specific coin. The API also calculates the percentage difference and profitability of each coin, making it easy to identify arbitrage opportunities. With our API, you can stay ahead of the market and make informed trading decisions, maximizing your profits through arbitrage trading. Additionally, our API provides you with the current ETH gas price, which is vital information for ...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 817, - "avgSuccessRate": 100, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Trading View": { - "tool_description": "This API helps you to query for data which is obtained by professional providers who have direct and extensive access to stock quotes, futures, popular indices, Forex, Bitcoin and CFDs to create a financial community site/application, such as : tradingview.com", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2226, - "avgSuccessRate": 100, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "BraveNewCoin": { - "tool_description": "Latest and historic cryptocurrency market data", - "score": { - "avgServiceLevel": 100, - "avgLatency": 182, - "avgSuccessRate": 100, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "Crypto Fear & Greed Index": { - "tool_description": "Index calculated by https://alternative.me/crypto/", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1142, - "avgSuccessRate": 100, - "popularityScore": 7.7, - "__typename": "Score" - } - }, - "Live Metal Prices": { - "tool_description": "Live prices for Gold, Silver, Palladium and Platinum in 160+ currencies including USD, GBP and EUR.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 162, - "avgSuccessRate": 100, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "Kiann_Options_SABR": { - "tool_description": "Options Volatility Model SABR (z-shift). This is an implementation of the 2002 Hagan SABR model, that was originally published in Jan 2002. \n\nThere has been various adaptations over the decades, notably the addition of a z-shift to account for extreme low-rates affecting the lower zero-bound condition post-GFC.\n\nThere is currently, the closed-form implementation of the lognormal, and normal case. There is also a sabr calibration-fit function, though enabled *** without *** beta fit. \nExperien...", - "score": { - "avgServiceLevel": 0, - "avgLatency": 523, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "StockExchangeAPI": { - "tool_description": "Financial data from stock exchanges", - "score": { - "avgServiceLevel": 100, - "avgLatency": 748, - "avgSuccessRate": 100, - "popularityScore": 9, - "__typename": "Score" - } - }, - "Mboum Finance": { - "tool_description": "Mboum Finance Official API for stocks, options, ETFs, mutual funds, SEC Data, news, screeners and more! ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1344, - "avgSuccessRate": 100, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "UK Mortgage Search": { - "tool_description": "Real Time Mortgage Data from over 90 UK Lenders", - "score": { - "avgServiceLevel": 0, - "avgLatency": 1268, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "investing financial stocks": { - "tool_description": "get all investing.com stocks realtime data in multi language and filters", - "score": { - "avgServiceLevel": 99, - "avgLatency": 1687, - "avgSuccessRate": 99, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "Schwab": { - "tool_description": "Research investments, and follow market news", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2221, - "avgSuccessRate": 100, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "Bybit": { - "tool_description": "Public Data Bybit. Cryptocurrency prices and charts. Derivatives, Futures, Spot, USDC Contract", - "score": { - "avgServiceLevel": 100, - "avgLatency": 176, - "avgSuccessRate": 100, - "popularityScore": 9, - "__typename": "Score" - } - }, - "Finanzoo API_Fundamentals": { - "tool_description": "Contains fundamental stock data from the annual reports:\n\n- Diluted earnings per share\n- total capital\n- equity\n- net operating cash flow\n- capital expenditure\n- free cash flow\n- Profit loss\n- Shares outstanding\n- Net sales", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1545, - "avgSuccessRate": 100, - "popularityScore": 7.1, - "__typename": "Score" - } - }, - "Rankiteo Climate Risk Assessment": { - "tool_description": "We provide an API to give a climate risk assessment score for any locations in the world.\n", - "score": { - "avgServiceLevel": 82, - "avgLatency": 5898, - "avgSuccessRate": 61, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "Crypto Market Data from Token Metrics": { - "tool_description": "Build cryptocurrency trading strategies based on tested data that actually matters with the Token Metrics Data API.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 735, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Form 5500 Data": { - "tool_description": "Get information from all US Corporate Retirement plans from the Form 5500.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 7, - "avgSuccessRate": 100, - "popularityScore": 7.6, - "__typename": "Score" - } - }, - "Fund Transfer": { - "tool_description": "This document details out the technical integration approach of FUND TRANSFER and merchants. This document refers to the server APIs.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 734, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Currency_v2": { - "tool_description": "Find currency and bitcoin prices.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1119, - "avgSuccessRate": 100, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "Experian Credit Report Score": { - "tool_description": "Delivers a consumer’s standard Experian credit score and report.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 848, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Top NFT Sales": { - "tool_description": "Top NFTs and collections sold today, this week, or this month.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 806, - "avgSuccessRate": 100, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "US Stock Prices | Live!!": { - "tool_description": "API for US Stock Exchange. Get the live prices and all the data.\nContact me at: vuesdata@gmail.com or visit https://www.vuesdata.com for building custom spiders or custom requests.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3499, - "avgSuccessRate": 100, - "popularityScore": 6.1, - "__typename": "Score" - } - }, - "Currencies And Countries": { - "tool_description": "Convert currencies, get country informations.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1179, - "avgSuccessRate": 100, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "Latest Mutual Fund NAV": { - "tool_description": "API provides latest NAV information of all mutual funds in India from Association of Mutual Funds of India (AMFI). The database will update as soon as data is updated on AMFI.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 836, - "avgSuccessRate": 100, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "European Central Bank - Reference Rates": { - "tool_description": "Get the 30 Euro foreign exchange reference rates in JSON-format. Updated every day at around 16:00 CET by the ECB (European Central Bank).", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1223, - "avgSuccessRate": 100, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "Crypto grana": { - "tool_description": "API to manage your position on crypto currency", - "score": { - "avgServiceLevel": 100, - "avgLatency": 738, - "avgSuccessRate": 14, - "popularityScore": 1.8, - "__typename": "Score" - } - }, - "Currency Exchange Fx": { - "tool_description": "Get the latest Currency rates for 100+ currencies. Updated every 60 Minutes.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 973, - "avgSuccessRate": 100, - "popularityScore": 6.7, - "__typename": "Score" - } - }, - "Realtime Crypto Prices": { - "tool_description": "Get the Fastest and Realtime Crypto Rates and more...", - "score": { - "avgServiceLevel": 80, - "avgLatency": 1059, - "avgSuccessRate": 80, - "popularityScore": 7.3, - "__typename": "Score" - } - }, - "Currency Ex": { - "tool_description": "Provide full range of currency exchange rate.", - "score": { - "avgServiceLevel": 40, - "avgLatency": 2599, - "avgSuccessRate": 40, - "popularityScore": 7.2, - "__typename": "Score" - } - }, - "Webchain": { - "tool_description": "Webchain codebase is fully compatible with Ethereum Classic interface. Although WEB is not just a fork of ETC, we changed whole hashing algorithm to a customized Lyra2-Webchain version.", - "score": null - }, - "Real-Time Quotes": { - "tool_description": "Real-time and historical data of stocks, cryptocurrencies and forex based on multiple data sources such as Yahoo Finance", - "score": { - "avgServiceLevel": 100, - "avgLatency": 494, - "avgSuccessRate": 95, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "Metals Prices Rates API": { - "tool_description": "The Metals Prices Rates API provides real-time and historical metal prices and exchange rates for gold, silver, platinum, and other metals. It allows developers to access and integrate the data into their own applications and systems. The API can be used for financial and commodity market analysis, currency conversion, and more.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 659, - "avgSuccessRate": 86, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "Currency Converter_v2": { - "tool_description": "Convert between 160+ Currencies", - "score": { - "avgServiceLevel": 100, - "avgLatency": 190, - "avgSuccessRate": 100, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "Finispia USA with company details": { - "tool_description": "[ aaoifi ]Finispia based on one methodology", - "score": { - "avgServiceLevel": 86, - "avgLatency": 705, - "avgSuccessRate": 86, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "ForexGo": { - "tool_description": "Introducing ForexGo API - the powerful currency exchange solution for developers. Effortlessly integrate real-time forex rates and conversion capabilities into your applications with our easy-to-use API. Enhance your projects with accurate and up-to-date exchange data, empowering users across the globe to make informed financial decisions. Get started with ForexGo API today!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 835, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "Stock News": { - "tool_description": "Get the latest financial stock news from the best news sources. Use our API to get relevant video content from companies in the stock market.", - "score": null - }, - "YH Finance Complete": { - "tool_description": "This API helps you to query stocks, quotes, movers and other financial summary.", - "score": { - "avgServiceLevel": 98, - "avgLatency": 2023, - "avgSuccessRate": 98, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "Free Currency Converter by Hajana One": { - "tool_description": "Hajana One API will help developers to convert strings to other currency which is required. Its totally free no any charges will be charged.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 415, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "Mineable coins": { - "tool_description": "Access coin rewards, mining difficulty, algorithms, and other useful data for hundreds of coins and multi pools.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 74, - "avgSuccessRate": 100, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "GaiaLens ESG Scores": { - "tool_description": "Real-time, data-driven and transparent ESG scores for over 17,500 companies", - "score": { - "avgServiceLevel": 94, - "avgLatency": 2285, - "avgSuccessRate": 77, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "ChangeNOW crypto exchange": { - "tool_description": "Empower your business by letting your customers buy, sell, and exchange crypto. You will earn % on every transaction. 400+ cryptocurrencies and 75+ fiats are available. IMPORTANT: You should get your API key by creating a partner's account here: changenow.io/affiliate. Or email us: partners@changenow.io. ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1015, - "avgSuccessRate": 26, - "popularityScore": 2, - "__typename": "Score" - } - }, - "Piotrosky F-Score": { - "tool_description": "The Piotroski score is a discrete score between zero and nine that reflects nine criteria used to determine the strength of a firm's financial position. The Piotroski score is used to determine the best value stocks, with nine being the best and zero being the worst.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 7625, - "avgSuccessRate": 100, - "popularityScore": 6.9, - "__typename": "Score" - } - }, - "Indian Stock Exchange API": { - "tool_description": "API for Indian Stock Exchange BSE/NSE.\nContact me at: vuesdata@gmail.com or visit https://www.vuesdata.com for building custom spiders or custom requests.", - "score": { - "avgServiceLevel": 99, - "avgLatency": 1565, - "avgSuccessRate": 98, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Financial Modeling Prep": { - "tool_description": "Financial Modeling Prep API is a Financial statements API, a Free stock API and a historical quotes API. More docs on : https://financialmodelingprep.com/developer/docs", - "score": { - "avgServiceLevel": 100, - "avgLatency": 398, - "avgSuccessRate": 37, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "Optimism": { - "tool_description": "All-In-One access to the Optimism blockchain data!\n\nMore features are coming soon!\n\nFeedback and feature requests should be sent to:\nangleitnerchristoph123@gmail.com", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1040, - "avgSuccessRate": 100, - "popularityScore": 7.2, - "__typename": "Score" - } - }, - "Bank Card Bin Num Check": { - "tool_description": "A bank card bin number verification service is a system that can help verify the authenticity of a bank card by validating the first six digits, known as the Bank Identification Number (BIN) of the card. The BIN number, also known as the issuer identification number (IIN), is used to identify the institution that issued the card and can provide important information such as the card type, country of issuance, and card network.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 214, - "avgSuccessRate": 100, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "Sales Tax Calculator": { - "tool_description": "Enter your city and zip code below to find the combined sales tax rate for a location. If you’d like to calculate sales tax with product exemptions, sourcing logic, and shipping taxability, use our sales tax API.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 920, - "avgSuccessRate": 83, - "popularityScore": 6.8, - "__typename": "Score" - } - }, - "Corporate Supply Chain": { - "tool_description": "Finding a company's actual suppliers and customers is often very difficult. Many companies do not want to reveal this information to their competitors. Leveraging hybrid data sources to deliver a complete picture of company supply chain ecosystems, this Corporate Supply Chain API enables investors to construct hedges and build statistical arbitrage strategies for a given corporate supply chain.", - "score": { - "avgServiceLevel": 79, - "avgLatency": 1405, - "avgSuccessRate": 79, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "AwesomeAPI Exchange": { - "tool_description": "Cotação de Moedas", - "score": { - "avgServiceLevel": 100, - "avgLatency": 268, - "avgSuccessRate": 94, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "JP Funda": { - "tool_description": "JP Funda API is an API that provides fundamental information based on the securities report data of Japanese companies in Json format.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1266, - "avgSuccessRate": 100, - "popularityScore": 7.4, - "__typename": "Score" - } - }, - "IP2Currency": { - "tool_description": "IP2Currency Exchange Rate Web Service provides the user with an easy way to get a localized & latest Currency Exchange Rate based on the visitor's IP address.\r\n\r\nSign up for free license key at http://www.fraudlabs.com/freelicense.aspx?PackageID=10 which allows up to 90 queries a month.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 320, - "avgSuccessRate": 100, - "popularityScore": 7, - "__typename": "Score" - } - }, - "NFTs by address": { - "tool_description": "Get all NFTs owned by an address at scale", - "score": { - "avgServiceLevel": 100, - "avgLatency": 800, - "avgSuccessRate": 100, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "Global Stock Market API Data": { - "tool_description": "This API is your gateway for information on world financial markets with respect to country wise. Included are World Stock Markets, Indices Futures, Commodities and much more in future.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1735, - "avgSuccessRate": 100, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Stock Analysis": { - "tool_description": "Get company basic financials such as earnings, margin, P/E ratio, 52-week high/low, dividend information, etc. This API also returns analysts' earnings estimates, upgrades, and downgrades. ", - "score": { - "avgServiceLevel": 99, - "avgLatency": 1593, - "avgSuccessRate": 99, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Just CURRENCIES": { - "tool_description": "The currency converter of your life. Fastest access. ECB data. Total satisfaction included. https://myv.at/api/currency-converter/", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1373, - "avgSuccessRate": 100, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "Currency Quake": { - "tool_description": "Provides Access to the statistical strength of all 8 major currencies, across 28 Forex pairs and on 4 different time frames.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 587, - "avgSuccessRate": 96, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "MathAAS": { - "tool_description": "Basic mathematic operations served through a Restful API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 968, - "avgSuccessRate": 58, - "popularityScore": 8, - "__typename": "Score" - } - }, - "Transaction": { - "tool_description": "Get transaction details", - "score": { - "avgServiceLevel": 62, - "avgLatency": 767, - "avgSuccessRate": 46, - "popularityScore": 7.6, - "__typename": "Score" - } - }, - "DeFi Watch": { - "tool_description": "DeFi Watch's API opens access to up-to-date data for thousands of cryptocurrencies. The API code is clear, developer-friendly, and provides daily and historical cryptocurrency information for each API request", - "score": { - "avgServiceLevel": 100, - "avgLatency": 618, - "avgSuccessRate": 19, - "popularityScore": 1.9, - "__typename": "Score" - } - }, - "Currency Converter by API-Ninjas": { - "tool_description": "Convert currencies using the latest exchange rates. See more info at https://api-ninjas.com/api/convertcurrency.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 317, - "avgSuccessRate": 52, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "Crypto Exchanges": { - "tool_description": "Useful tool for real-time pricing and market activity for over 1,000 cryptocurrencies. By collecting exchange data from thousands of markets, we are able to offer transparent and accurate data on asset price and availability.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 393, - "avgSuccessRate": 100, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "Mortgage Monthly Payment Calculator": { - "tool_description": "Calculate monthly payment (principal + interest) based on the loan amount, interest rate and terms", - "score": { - "avgServiceLevel": 100, - "avgLatency": 974, - "avgSuccessRate": 100, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "JoJ Finance": { - "tool_description": "JoJ Finance API provides real-time market quotes, international exchanges, up-to-date financial news, analytics and more.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1750, - "avgSuccessRate": 100, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Afterbanks PSD2 payments and bank reader": { - "tool_description": "API standardization for a real-time connection to bank accounts.\nConnection with all banks in Europe: United Kingdom, Austria, Italy, Belgium, Latvia, Bulgaria, Lithuania, Croatia, Luxembourg, Cyprus, Malta, Czechia, Netherlands, Denmark, Poland, Estonia, Portugal, Finland, Romania, France, Slovakia, Germany, Slovenia, Greece, Spain, Hungary, Sweden, Ireland.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 457, - "avgSuccessRate": 18, - "popularityScore": 1.9, - "__typename": "Score" - } - }, - "Bitcoin News": { - "tool_description": "An API showing all the latest news of Bitcoin around the world from all the major websites", - "score": { - "avgServiceLevel": 94, - "avgLatency": 1533, - "avgSuccessRate": 94, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "Exchanger Currency Rates Provider": { - "tool_description": "Get hourly updated rates for more than 150 currencies since 1999", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2582, - "avgSuccessRate": 100, - "popularityScore": 7.3, - "__typename": "Score" - } - }, - "SEC Filings": { - "tool_description": "A collection of methods that returns various financial data for a requested company including SEC Filings, balance sheets, financial ratios , company look-up utilities and more.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1544, - "avgSuccessRate": 92, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "Palmy Investing API": { - "tool_description": "The best fit for quantitative stock research. It's free and without data restrictions. 35+ endpoints.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 807, - "avgSuccessRate": 100, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "Cryptocurrency Financial Data": { - "tool_description": "Cryptocurrency financial data API for major exchanges. Candlesticks (OHLCV, VWAP, and Trade Count), Trades (tick-level). Spot and futures markets. Robust data catalog and documentation.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 870, - "avgSuccessRate": 100, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "Risk Free Rate API": { - "tool_description": "Returns the risk-free rate for a given date. Geography and proxy (duration) are customizable. Treasury Bonds and Bills are used as source.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 7, - "avgSuccessRate": 100, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "FancyOptions": { - "tool_description": "Find your edge with the stock options strategy scanner. Monitor stock options with your options chain endpoints.", - "score": { - "avgServiceLevel": 14, - "avgLatency": 1400, - "avgSuccessRate": 14, - "popularityScore": 1.9, - "__typename": "Score" - } - }, - "Credit Card BIN Checker/Validator": { - "tool_description": "Credit Card BIN Checker/Validator consists of 900,000 BINs worldwide that allows you to quickly and easily check the Bank Identification Number (BIN) of a credit or debit card. With just 6, 8 or 9 BIN length (depending on the bank), you can integrate the API into your website or application to verify card information and prevent fraudulent transactions.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 422, - "avgSuccessRate": 100, - "popularityScore": 7.5, - "__typename": "Score" - } - }, - "Wallet": { - "tool_description": "This is your digital wallet, you can create, share, update values...", - "score": { - "avgServiceLevel": 48, - "avgLatency": 1052, - "avgSuccessRate": 45, - "popularityScore": 7.7, - "__typename": "Score" - } - }, - "Date Calculator": { - "tool_description": "This API helps to perform some computations on dates: accrual factors, maturity dates, contract dates, and other due dates, datetime delta, time zones conversion, recurring dates, and much more. ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 984, - "avgSuccessRate": 100, - "popularityScore": 9, - "__typename": "Score" - } - }, - "ExchangeRatesPro": { - "tool_description": "Exchange rates for 185+ currencies updated every minute. Historical data back to 1999. Low latency with our global infrastructure.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1771, - "avgSuccessRate": 100, - "popularityScore": 7, - "__typename": "Score" - } - }, - "walletapi.cloud": { - "tool_description": "Integrate a ledger layer enabling asset accounting or closed-loop payments between your users or IoT devices.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1143, - "avgSuccessRate": 3, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "MacroTrends Finance": { - "tool_description": "Stocks API helps to query for the Financials Statement/Sheet that has over 10 years of finacial data.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 433, - "avgSuccessRate": 73, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "Is This Coin A Scam": { - "tool_description": "Get access to real-time data on all major cryptocurrencies, including ratings, red flags, trending analytics, community metrics and more.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 408, - "avgSuccessRate": 52, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Seeking Alpha": { - "tool_description": "Query for news, market moving, price quotes, chart, indices, analysis from investors and experts, etc...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1957, - "avgSuccessRate": 100, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "Global Ethereum Price Index - GEX": { - "tool_description": "Ethereum Price Index supplied by BitcoinAverage\r\n\r\nThe GEX data accessed via the BitcoinAverage API features:\r\n\r\nUp to 1 second refresh rate\r\nRates for 165+ currencies\r\nDaily rates at preferred lock in time or live rates\r\nHistoric daily rates dating back to 2010\r\nJSON or CSV formats\r\n\r\n-------\r\n\r\nAbout BitcoinAverage\r\n\r\nBitcoinAverage.com is proud of the fact that we were the first global price index in the cryptocurrency and blockchain industry, and have proven over the years to also be one of the most reliable. It is considered by most as the de facto standard bitcoin price index.\r\n\r\nIt is trusted by thousands of users across hundreds the world’s leading websites, apps, services and businesses. With our historical bitcoin price data stretching back to 2010, this index is perfect for a multitude of uses from reporting, invoicing, payment processing, analysis and accounting, as well as a plethora of integrations with different types of software.\r\n\r\nUsers receive a weighted price calculated by our algorithms that factor in exchange activity, liquidity and different fee methodologies.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 438, - "avgSuccessRate": 100, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "Routing Number Bank Lookup": { - "tool_description": "Lookup a bank's information based on a routing number input. Choose either ACH or wire transfer bank information. Supports XML and JSON responses.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 85, - "avgSuccessRate": 100, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Gold Price - Live_v2": { - "tool_description": "Get the current latest price of gold and silver in US dollars per ounce.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3137, - "avgSuccessRate": 100, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "Currency_v3": { - "tool_description": "Get current and historical currency exchange rates with ease. Rates from the European Central Bank, updated every 15 minutes.", - "score": { - "avgServiceLevel": 0, - "avgLatency": 48, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "Quandl": { - "tool_description": "The premier source for financial, economic, and alternative datasets, serving investment professionals. Quandl’s platform is used by over 400,000 people, including analysts from the world’s top hedge funds, asset managers and investment banks, see https://docs.quandl.com/docs/in-depth-usage", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1820, - "avgSuccessRate": 88, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "Credit card prediction": { - "tool_description": "At Credit Card, we know that your time is valuable. That’s why we offer a fast and easy way to get the information you need. With our new API, you can get the data you need in seconds", - "score": { - "avgServiceLevel": 100, - "avgLatency": 326, - "avgSuccessRate": 100, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "Defi Data": { - "tool_description": "Free to use API to retrieve data about TVL and coins", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1349, - "avgSuccessRate": 100, - "popularityScore": 8, - "__typename": "Score" - } - }, - "Card Validator": { - "tool_description": "Credit card number validator or generator", - "score": { - "avgServiceLevel": 100, - "avgLatency": 583, - "avgSuccessRate": 90, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "Trader Wagon": { - "tool_description": "Trader Wagon API is specially designed to obtain traders' positions (portfolio).", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1024, - "avgSuccessRate": 100, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "Stock Data": { - "tool_description": "Get the actual stock details of a symbol.Take a look at the long description for the detailed field list.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1510, - "avgSuccessRate": 100, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "Stock Cryptocurrency Forex Market Data": { - "tool_description": "Real-time Stock, Cryptocurrency, and Forex market data from NASDAQ, NYSE, LSE, MYX, IDX, Binance, FTX, PancakeSwap, Uniswap, FRED etc.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 666, - "avgSuccessRate": 100, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "Bankruptcy Search": { - "tool_description": "This API returns bankruptcy filings on an individual or business including debtor name, address, filing information, liability amount, and more.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 602, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "Crypto and Forex Rates": { - "tool_description": "Get rates for forex USD base and crypto USDT base", - "score": { - "avgServiceLevel": 100, - "avgLatency": 807, - "avgSuccessRate": 100, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "Tradier": { - "tool_description": "Tradier is a brokerage platform for equity and options trading. It is designed to provide simple, intuitive, and inexpensive ways for users to place trades, check their balances, and transfer money. Tradier provides a RESTful API for accessing the platform's trading functions, account services, and real-time and historical market data.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 659, - "avgSuccessRate": 7, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "Finshorts": { - "tool_description": "Finshorts is a platform where you can access companies Stock Quote, Company Info, Historical Prices Chart, Historical Dividends, Cash flow statement in realtime", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1470, - "avgSuccessRate": 100, - "popularityScore": 7.8, - "__typename": "Score" - } - }, - "ExchangeRate-API": { - "tool_description": "Free currency conversion API for all 160 world currencies. Tens of thousands of developers have picked ExchangeRate-API.com over the last 10 years for its reliable data & exceptional uptime - give it a try!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 79, - "avgSuccessRate": 100, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "Ethereum-large-buy/sell-orders": { - "tool_description": "A Flask API that scrapes large buy and sell orders of Ethereum ERC20 tokens could be a useful tool for cryptocurrency traders and investors. The API would use web scraping techniques to gather data on the largest buy and sell orders for a specific ERC20 token on a decentralized exchange. This information could then be accessed by users through the API's endpoint, allowing them to make informed trading decisions based on real-time market data. Additionally, the API could be set up to automatic...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 8426, - "avgSuccessRate": 100, - "popularityScore": 7.8, - "__typename": "Score" - } - }, - "Quotient": { - "tool_description": "Market data API for intraday (1-minutes) data, end-of-day data, options data, crypto, forex, live prices, fundamental data, trading signal, and much more, on various assets (Stocks, ETFs, Funds, Indices, Forex, Cryptocurrencies, etc), on worldwide stock exchanges (us, canada, australia, uk and europe).", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2058, - "avgSuccessRate": 100, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "MS Finance": { - "tool_description": "This API helps to query financial summary, stocks, quotes, movers, news, etc... to create a site/application such as morningstar.com", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1622, - "avgSuccessRate": 100, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "Chaingateway.io": { - "tool_description": "Blockchain API to connect Web 2.0 with Web 3.0 in an easy way. We provide all tools you need to manage non custody wallets, send and receive transactions, use web hooks to receive notifications on deposits or check balances of tokens in an automatic way. All major blockchains are supported, as well as the tokens on them. Our API is secure and made in Germany.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 936, - "avgSuccessRate": 100, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "WalnutTradingDash": { - "tool_description": "Algo trading dashboard to backtest strategies with over 170 digital assets (crypto, forex, stocks) and 30 technical analysis strategies. Performance metrics, charts, and interactive visualizations available in real-time.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 985, - "avgSuccessRate": 100, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "Global Market Indices Data": { - "tool_description": "Get statistical data for the major global indices (SP500, DJI,FTSE100, DAX, IBEX35, ASX200)", - "score": { - "avgServiceLevel": 78, - "avgLatency": 1157, - "avgSuccessRate": 78, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "Investors Exchange (IEX) Trading": { - "tool_description": "The IEX API is a is a free, web-based API supplying IEX quoting and trading data.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 619, - "avgSuccessRate": 0, - "popularityScore": 0.4, - "__typename": "Score" - } - }, - "Latest Stock Price": { - "tool_description": "Latest Stock Price from NSE", - "score": { - "avgServiceLevel": 100, - "avgLatency": 593, - "avgSuccessRate": 100, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "ID Verify": { - "tool_description": "This API references multiple data sources to confirm an individual’s identity across over 60 data points of personally identifiable information (PII) and appends a fraud risk score.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 865, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Interest Rate by API-Ninjas": { - "tool_description": "Get current interest rates from all central banks and benchmarks. See more info at https://api-ninjas.com/api/interestrate.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 490, - "avgSuccessRate": 100, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "Global Flight Data": { - "tool_description": "Get scheduled departing flights data by country and by week.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3511, - "avgSuccessRate": 100, - "popularityScore": 7.1, - "__typename": "Score" - } - }, - "GaiaLens Historical ESG Scores": { - "tool_description": "Data-driven and transparent historical ESG scores for over 17,000 companies", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2439, - "avgSuccessRate": 20, - "popularityScore": 2, - "__typename": "Score" - } - }, - "TrustedCoin": { - "tool_description": "Trusted Coin is a Bitcoin transaction cosigning service. Users of this API can create M-of-N multisignature P2SH addresses (where Trusted Coin acts as one of the cosigners). The policy logic Trusted Coin should apply when deciding if to cosign (and thus approve) individual transactions is user configurable. Via this mechanism higher-level services can be built including wallet protection schemes and escrow.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 585, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "Freedom Finance": { - "tool_description": "Financial data for over 75,000 stocks on over 75 exchanges. Download conveniently formatted financial statements, dividends, end of day prices and more. Need higher usage, custom integration or additional features? Contact us for custom pricing.", - "score": { - "avgServiceLevel": 96, - "avgLatency": 670, - "avgSuccessRate": 86, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Currency Conversion and Exchange Rates": { - "tool_description": "Simple reliable API for current and historical foreign exchange (forex) currency rates.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 570, - "avgSuccessRate": 100, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "vatlayer": { - "tool_description": "Vatlayer is a simple REST-based JSON API offering instant EU VAT number validation, VAT compliant price calculations and VAT rates for all 28 current member states of the European Union. Its system is secured by HTTPS and focused on ease of use & integration, delivering all VAT data in lightweight and highly portable JSON format.\r\n\r\nThis level of compatibility, paired with startup- and developer-friendly pricing and a full stack of features makes the vatlayer API a perfect VAT rate automation and number validation tool for individuals, businesses and merchants selling and buying goods in and around the European Union.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 307, - "avgSuccessRate": 100, - "popularityScore": 7.6, - "__typename": "Score" - } - }, - "Daily-Sec-Financial-Statement-Dataset": { - "tool_description": "While the \"SEC Financial Statement Dataset\" https://www.sec.gov/dera/data/financial-statement-data-sets.html is only provided after each quarter, this API provides the data in the same structure daily.\n\n**Have a look at the tutorials on how to use the API**\n\n**BETA**\nThis API is in beta, as I try to find out if there is demand for that data. During the beta phase, I will only update the data once or twice a week.\n\nIf you want to stay informed about the project or give me some feedback, please...", - "score": { - "avgServiceLevel": 96, - "avgLatency": 1145, - "avgSuccessRate": 96, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "Crypto Currency Scraper API": { - "tool_description": "A crypto currency API scraper to get the necessary data to build you application.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 14231, - "avgSuccessRate": 100, - "popularityScore": 7.6, - "__typename": "Score" - } - }, - "CNBC": { - "tool_description": "This API helps to query for business news and live market data to create a financial site such as cnbc.com", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1598, - "avgSuccessRate": 100, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "ESG Risk Ratings for Stocks": { - "tool_description": "ESG Risk Ratings assess the degree to which a company's enterprise business value is at risk driven by environmental, social and governance issues. Rating companies along ESG dimensions allows socially conscious investors to screen potential investments to fit with their investment goals and values.", - "score": { - "avgServiceLevel": 91, - "avgLatency": 1593, - "avgSuccessRate": 91, - "popularityScore": 8.2, - "__typename": "Score" - } - }, - "Exchange Rate": { - "tool_description": "An API for current and historical foreign exchange rates published by the European Central Bank.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 351, - "avgSuccessRate": 100, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "Binance Smart Chain": { - "tool_description": "All-In-One access to the BSC blockchain data!\n\nMore features are coming soon!\n\nFeedback and feature requests should be sent to:\nangleitnerchristoph123@gmail.com", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1286, - "avgSuccessRate": 100, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "U.S. Economic Indicators": { - "tool_description": "Get key economic indicators for the United States.", - "score": { - "avgServiceLevel": 95, - "avgLatency": 2274, - "avgSuccessRate": 95, - "popularityScore": 9, - "__typename": "Score" - } - }, - "GaiaLens Company Names": { - "tool_description": "Get all company names within the GaiaLens Dataset", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2525, - "avgSuccessRate": 100, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "Trend and Strength API for Forex ( GOLD/XAUUSD )": { - "tool_description": "Returns data of current trend direction and trend strength for Forex Currency", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1192, - "avgSuccessRate": 100, - "popularityScore": 7.4, - "__typename": "Score" - } - }, - "Yahoo Finance Historical Stock Prices": { - "tool_description": "Download historical stock prices found as found on Yahoo Finance quickly and efficiently.\n\nA list of avaliable stock prices can be found here: https://filedn.com/lLxy9lfpvrpRqRrS9ftjPcF/lookupOverview.csv", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2146, - "avgSuccessRate": 86, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "Stock Info": { - "tool_description": "Get NSE, BSE stock prices", - "score": { - "avgServiceLevel": 0, - "avgLatency": 703, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "Pancakeswap API Freemium": { - "tool_description": "All Pancakeswap API ( Feel Free To Ask For More Endpoints )", - "score": { - "avgServiceLevel": 100, - "avgLatency": 381, - "avgSuccessRate": 100, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Coinmill Currency": { - "tool_description": "JavaScript API for powering currency exchange rates on websites.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 299, - "avgSuccessRate": 100, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Coinranking": { - "tool_description": "A simple API for Cryptocurrency Prices - 28k+ users - Real-Time & Historical - Crypto Market Data - Coins - Exchanges - Free & Paid", - "score": { - "avgServiceLevel": 100, - "avgLatency": 358, - "avgSuccessRate": 98, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "NumbersToLetters": { - "tool_description": "Convierte cantidad a letras peso Mexicano, Español e Ingles", - "score": { - "avgServiceLevel": 100, - "avgLatency": 52, - "avgSuccessRate": 100, - "popularityScore": 8, - "__typename": "Score" - } - }, - "Fidelity Investments": { - "tool_description": "Query for quote data, market movers, international markets, sector performance, orders, chart, and news", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1502, - "avgSuccessRate": 100, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Marktdaten Deutschland": { - "tool_description": "Prognose des regionalen Strompreises", - "score": { - "avgServiceLevel": 96, - "avgLatency": 1031, - "avgSuccessRate": 94, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "Electricity Carbon Footprint Germany": { - "tool_description": "CO2 Footprint of current electricity in Germany.", - "score": { - "avgServiceLevel": 87, - "avgLatency": 791, - "avgSuccessRate": 87, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "proclima": { - "tool_description": "proclima", - "score": { - "avgServiceLevel": 100, - "avgLatency": 382, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Regionalkonzept Strom Herkunft": { - "tool_description": "Access to quality items and classifiers in regional energy markets (Regionale Herkunftsnachweise) in Germany.", - "score": { - "avgServiceLevel": 0, - "avgLatency": 691, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "INDIAN FUEL": { - "tool_description": "This API contains the fuel rate of every city in India. The fuel price of a particular city can also be viewed.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1400, - "avgSuccessRate": 100, - "popularityScore": 7.6, - "__typename": "Score" - } - }, - "CO2 Offset": { - "tool_description": "GreenHouseGas/CO2 compensation as a service. Get 1kg/month for free to see how easy it is to implement.", - "score": { - "avgServiceLevel": 79, - "avgLatency": 1535, - "avgSuccessRate": 76, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "CAISO": { - "tool_description": "API for California Independent System Operator data provided from caiso.com. It includes data on energy emissions, demand, supply, and prices. Updated daily.", - "score": { - "avgServiceLevel": 88, - "avgLatency": 4361, - "avgSuccessRate": 88, - "popularityScore": 8.2, - "__typename": "Score" - } - }, - "ecoweather": { - "tool_description": "Economically relevant meteorological data like heat degree days, average temperature. ", - "score": { - "avgServiceLevel": 97, - "avgLatency": 656, - "avgSuccessRate": 97, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "Europe Fuel Prices": { - "tool_description": "Fuel prices from European Commision website", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1828, - "avgSuccessRate": 57, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "Indeed Jobs API - Finland": { - "tool_description": "Indeed Jobs Search API - Finland\nGet the Jobs List as JSON by giving Keyword, Location (Finland Only) and offset value.\nContact me at: vuesdata@gmail.com or visit https://www.vuesdata.com for building custom spiders or custom requests.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3538, - "avgSuccessRate": 100, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "Indeed Jobs API": { - "tool_description": "Indeed Jobs Search API - USA\nGet the Jobs List as JSON by giving Keyword, Location (USA Only) and offset value.\nContact me at: vuesdata@gmail.com or visit https://www.vuesdata.com for building custom spiders or custom requests.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3393, - "avgSuccessRate": 98, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "Open To Work Remote API": { - "tool_description": "Open To Work Remote API:\n\nI build a powerful Job Search API for developers.\n\nHere you'll find a great list of remote jobs.\n\nIt contains accurate sources and allows different filters.\n\nFor more info:\nhttps://api.opentoworkremote.com/\n\nAnd if you have any doubt, contact me:\nhttps://linktr.ee/maurobonfietti\n", - "score": { - "avgServiceLevel": 100, - "avgLatency": 517, - "avgSuccessRate": 98, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "AI Resume Generator": { - "tool_description": "Document Generation API that uses OpenAI to create an example resume when provided the following data: University Name, Degree, and a list of Skills", - "score": { - "avgServiceLevel": 100, - "avgLatency": 8873, - "avgSuccessRate": 29, - "popularityScore": 1.7, - "__typename": "Score" - } - }, - "JobSearch": { - "tool_description": "An Easy To Use Job Search API with jobs from all around the world.", - "score": { - "avgServiceLevel": 89, - "avgLatency": 501, - "avgSuccessRate": 84, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "Remote Jobs API": { - "tool_description": "Get a list of remote jobs from different resources: weworkremotely, remoteok, GitHub, StackOverflow, Twitch, Mailchimp, Figma...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 528, - "avgSuccessRate": 100, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "Indeed Jobs API - Sweden": { - "tool_description": "Indeed Jobs API - Sweden\nGet the Jobs List as JSON by giving Keyword, Location (Sweden Only) and offset value.\nContact me at: vuesdata@gmail.com or visit https://www.vuesdata.com for building custom spiders or custom requests.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 5518, - "avgSuccessRate": 100, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "Be Zips": { - "tool_description": "Zip code data for north america.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2089, - "avgSuccessRate": 100, - "popularityScore": 6.9, - "__typename": "Score" - } - }, - "Compare Route Names": { - "tool_description": "Calculates the coefficient of how similar are 2 strings containing the name (and type) of the route. With a value of 0.9 and higher, it is possible to do auto-matching,\nat 0.2-0.9 - visual matching.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 632, - "avgSuccessRate": 100, - "popularityScore": 7.3, - "__typename": "Score" - } - }, - "MapFanAPI - Map": { - "tool_description": "MapFan API ぼ朰曳APIです。ă‚čă‚Żăƒ­ăƒŒăƒ«ćœ°ć›łă«ćż…èŠăȘWMTSćœąćŒăźćœ°ć›łç”»ćƒă‚„ă€æŒ‡ćźšă•ă‚ŒăŸç·ŻćșŠç”ŒćșŠăƒ»ă‚”ă‚€ă‚ș・瞟ć°șăźé™æ­ąç”»ćœ°ć›łç”»ćƒă‚’æäŸ›ă—ăŸă™ă€‚", - "score": { - "avgServiceLevel": 100, - "avgLatency": 153, - "avgSuccessRate": 100, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "Weather Forecast Map Tiles": { - "tool_description": "Generate weather forecast map tiles to overlay on any web map.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 180, - "avgSuccessRate": 100, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Magical Taske": { - "tool_description": "Fetch sceneries and getaways in Kenya.", - "score": { - "avgServiceLevel": 98, - "avgLatency": 1088, - "avgSuccessRate": 98, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "MapTiles": { - "tool_description": "Map Tiles for interactive online maps based on data by OpenStreetMap contributors with labels in English, French or Spanish. ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 156, - "avgSuccessRate": 100, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "Verify PAN Aadhaar link_v2": { - "tool_description": "Reduce the risk of fraud on your platform by onboarding only those individuals whose PAN is linked with their Aadhaar, in accordance with the laws of India.\n\nReduce manual efforts by calling a single API which tells you if an individual’s PAN Aadhaar link exists or not.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 140, - "avgSuccessRate": 98, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "smart locations": { - "tool_description": "smart locations", - "score": { - "avgServiceLevel": 0, - "avgLatency": 968, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "Walk Score": { - "tool_description": "This API returns the Walk Score, Transit Score and Bike Score for any location.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 358, - "avgSuccessRate": 100, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "TrueWay Geocoding": { - "tool_description": "Forward and Reverse Geocoding", - "score": { - "avgServiceLevel": 100, - "avgLatency": 326, - "avgSuccessRate": 100, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "peta": { - "tool_description": "make a peta", - "score": null - }, - "Mapilion - Vector and Raster Map Tiles": { - "tool_description": "Mapilion provides you with vector and raster map tiles at scale. Based on OpenStreetMap and OpenMapTiles.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 152, - "avgSuccessRate": 100, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "City List": { - "tool_description": "List of all countries and cities", - "score": { - "avgServiceLevel": 100, - "avgLatency": 872, - "avgSuccessRate": 100, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "Forward & Reverse Geocoding": { - "tool_description": "", - "score": { - "avgServiceLevel": 100, - "avgLatency": 108, - "avgSuccessRate": 100, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "uk.boundaries.io": { - "tool_description": "UK Postal Code(ex. ZE1 0AE), Sector, District, Boundaries API:\r\n\r\nA simple & very fast API that will allow you to integrate multiple GeoJson UK Unit and sector level boundaries result into your apps and systems.\r\nThis API is designed to be used programatically for optimal performance. When using the MashApe UI for queries expect significant latency issues on large result sets!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 181, - "avgSuccessRate": 100, - "popularityScore": 9, - "__typename": "Score" - } - }, - "Places": { - "tool_description": "Over 10 million tourist attractions and facilities around the world", - "score": { - "avgServiceLevel": 100, - "avgLatency": 145, - "avgSuccessRate": 100, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "Places Nearby a Coordinates": { - "tool_description": "Find places nearby a given coordinates.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1111, - "avgSuccessRate": 75, - "popularityScore": 7.4, - "__typename": "Score" - } - }, - "Address Normalization and Geocoding": { - "tool_description": "Takes free text address input, standardizes and outputs rooftop latitude/longitude geocode coordinates.", - "score": { - "avgServiceLevel": 95, - "avgLatency": 474, - "avgSuccessRate": 94, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "Fast Routing": { - "tool_description": "Fast Routing API including turn-by-turn directions with worldwide coverage and high availability. Online demo: https://fast-routing-api.demo.routingapi.net/", - "score": { - "avgServiceLevel": 100, - "avgLatency": 170, - "avgSuccessRate": 100, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "Mexico ZIP Codes": { - "tool_description": "", - "score": { - "avgServiceLevel": 100, - "avgLatency": 87, - "avgSuccessRate": 100, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "NAVITIME Maps": { - "tool_description": "Get a JavaScript file or map as an image on web pages.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 464, - "avgSuccessRate": 91, - "popularityScore": 9, - "__typename": "Score" - } - }, - "Dargan": { - "tool_description": "Limitless radial search from UK postcodes with distance and coordinate information returned", - "score": { - "avgServiceLevel": 28, - "avgLatency": 4566, - "avgSuccessRate": 28, - "popularityScore": 2.1, - "__typename": "Score" - } - }, - "MapToolkit": { - "tool_description": "A toolkit for maps: Map tiles, address search (geocoding), routing, static maps & elevation", - "score": { - "avgServiceLevel": 100, - "avgLatency": 217, - "avgSuccessRate": 100, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "ArcGIS Platform Geocoding": { - "tool_description": "The Geocoding service finds addresses, businesses, and places around the world. You can convert an address to a location (forward geocoding) or a location to an address (reverse geocoding). The service provides suggested address names for partial address and place names. You can also geocode many addresses at one time with batch geocoding.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 333, - "avgSuccessRate": 100, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "Zip Code to State Converter": { - "tool_description": "A very simple API that accepts a US ZIP code as an input, and returns the state that it is in.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 560, - "avgSuccessRate": 100, - "popularityScore": 7.7, - "__typename": "Score" - } - }, - "Geocode - Forward and Reverse": { - "tool_description": "Forward and reverse geocoding using Google Geocoding API.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 799, - "avgSuccessRate": 100, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "MapFanAPI - Route": { - "tool_description": "MapFan API ăźăƒ«ăƒŒăƒˆæ€œçŽąïŒˆç”Œè·ŻæŽąçŽąïŒ‰APIă§ă™ă€‚ă‚«ăƒŒăƒŠăƒ“ă§ćźŸçžŸăźă‚ă‚‹æœŹæ Œçš„ăȘăƒ«ăƒŒăƒˆæ€œçŽąă€ć€§ćž‹è»ŠèŠćˆ¶ă‚„æ­©èĄŒè€…ć‘ă‘ăȘどç‰čæźŠăȘçŠ¶æłă‚’è€ƒæ…źă—ăŸăƒ«ăƒŒăƒˆæ€œçŽąă«ćŠ ăˆă€æŒ‡ćźšäœçœźä»˜èż‘ăźé“è·Żăźé“è·Żćăƒ»äș€ć·źç‚čćăƒ»äżĄć·æœ‰ç„Ąç­‰ăźé“è·Żæƒ…ć ±ă‚’ć–ćŸ—ă™ă‚‹ă“ăšă‚‚ă§ăăŸă™ă€‚", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1288, - "avgSuccessRate": 100, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "Reverse Geocoding and Geolocation Service": { - "tool_description": "Find nearest or largest city information or timezone for any given point location (latitude/longitude). The reverse geocode API back \"reverse\" codes any GPS location point into nearest or largest readable places with county, city, distance and population.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 740, - "avgSuccessRate": 100, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "de-boundaries-io": { - "tool_description": "A Germany PostalCode Boundaries API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 478, - "avgSuccessRate": 60, - "popularityScore": 7, - "__typename": "Score" - } - }, - "Heightmap from Latitude and Longitude": { - "tool_description": "You provide coordinates(latitude, longitude) and api returns height map.\nHeightmap is black & white png image where the brightest pixel has the most elevation.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2496, - "avgSuccessRate": 100, - "popularityScore": 7, - "__typename": "Score" - } - }, - "OrganizaciĂłn territorial de España": { - "tool_description": "Es una API completa que proporciona informaciĂłn detallada sobre municipios, provincias y comunidades autĂłnomas en España. Con mĂșltiples mĂ©todos disponibles, los usuarios pueden obtener listas de municipios por provincia, provincias por comunidad autĂłnoma, una lista completa de comunidades autĂłnomas y una lista de todas las provincias españolas. GeoSpain es perfecta para desarrolladores y aplicaciones que necesitan informaciĂłn geogrĂĄfica y administrativa actualizada y precisa de España.\"", - "score": { - "avgServiceLevel": 100, - "avgLatency": 267, - "avgSuccessRate": 100, - "popularityScore": 6.9, - "__typename": "Score" - } - }, - "Geocoding by API-Ninjas": { - "tool_description": "Convert city locations to latitude/longitude coordinates and vice versa. See more info at https://api-ninjas.com/api/geocoding and https://api-ninjas.com/api/reversegeocoding.", - "score": { - "avgServiceLevel": 93, - "avgLatency": 1859, - "avgSuccessRate": 81, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Offline MapTiles": { - "tool_description": "Download map tiles for offline use (intranet, offline devices). You can store those downloaded tiles as long as you want.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 681, - "avgSuccessRate": 100, - "popularityScore": 7.4, - "__typename": "Score" - } - }, - "LocationIQ": { - "tool_description": "Affordable geocoding, routing and map tile APIs. Provides accurate and scalable APIs.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 324, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "TrueWay Places": { - "tool_description": "Search for places. Provides detailed information for over 100 million places and points of interest.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 241, - "avgSuccessRate": 100, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "SpatialScale Route Engine": { - "tool_description": "The SpatialScale Route Engine provides turn by turn route directions, isochrone/travel time area generation, and map matching web services covering Noth America.", - "score": { - "avgServiceLevel": 33, - "avgLatency": 510, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "Reverse Geocode Locator (U.S)": { - "tool_description": "Enter coordinates (latitude, longitude) to look up the location info within the US. From our vast database, simply provide the desired coordinates and we will send back the city info you need", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3094, - "avgSuccessRate": 100, - "popularityScore": 5.5, - "__typename": "Score" - } - }, - "ca.boundaries.io": { - "tool_description": "CA Postal Code(ex. T6H, or A0A0A1 ), FSA and LDU, Boundaries API: A simple & very fast API that will allow you to integrate multiple GeoJson CA FSA and LDU level boundaries result into your apps and systems. This API is designed to be used programatically for optimal performance. When using the MashApe UI for queries expect significant latency issues on large result sets!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 211, - "avgSuccessRate": 100, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "Movies Tv Shows Database": { - "tool_description": "Get Movies and TV Series and shows data. our API have concrete & big database. \nAll Movies , Films & TV Series and Shows metadata, images, posters, background images, TV Series Schedules, actors, cast, directors, trailers, ratings, IMDB ID, Boxoffice movies, Production company and more. Results are in JSON format. we are continuously updating our database records to deliver good service quality.\nIt will help you build a movie, series, streaming, reviews content site or application easily.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 950, - "avgSuccessRate": 99, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Star Wars Characters": { - "tool_description": "list of star wars characters + details", - "score": { - "avgServiceLevel": 100, - "avgLatency": 836, - "avgSuccessRate": 100, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "DAILY OVRLL 0822202143542": { - "tool_description": "DAILY OVRLL cb0c4x5d20210822133542872", - "score": { - "avgServiceLevel": 100, - "avgLatency": 9406, - "avgSuccessRate": 100, - "popularityScore": 6.9, - "__typename": "Score" - } - }, - "MoviesDatabase": { - "tool_description": "MoviesDatabase provides complete and updated data for over 9 million titles ( movies, series and episodes) and 11 million actors / crew and cast members", - "score": { - "avgServiceLevel": 100, - "avgLatency": 512, - "avgSuccessRate": 100, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "Movie and TV shows Quotes": { - "tool_description": "This API helps query for Famous Movies and TV shows quotes.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 951, - "avgSuccessRate": 81, - "popularityScore": 9, - "__typename": "Score" - } - }, - "Films": { - "tool_description": "Films", - "score": { - "avgServiceLevel": 100, - "avgLatency": 444, - "avgSuccessRate": 100, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "Advanced Movie Search": { - "tool_description": "Search for movies via advanced queries like genre, name, etc. And get all their details", - "score": { - "avgServiceLevel": 100, - "avgLatency": 415, - "avgSuccessRate": 100, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "IMDB_API": { - "tool_description": "This API is a powerful tool that provides access to the top 250 movies as rated by IMDB users. With this API, you can search for movies by title, year, directors, and cast. Retrieve detailed information about each movie, including ratings, genres, and more. By integrating our API into your applications or services, you can offer users an enhanced movie search and discovery experience, opening up exciting possibilities for building movie-related platforms.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1076, - "avgSuccessRate": 100, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "DAILY OVRLL 0822202130837": { - "tool_description": "DAILY OVRLL 2ud21f0720210822120837645", - "score": { - "avgServiceLevel": 100, - "avgLatency": 15023, - "avgSuccessRate": 100, - "popularityScore": 7.1, - "__typename": "Score" - } - }, - "DAILY OVRLL 0822202141203": { - "tool_description": "DAILY OVRLL 6rwoz0vf20210822131203959", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3462, - "avgSuccessRate": 100, - "popularityScore": 6.8, - "__typename": "Score" - } - }, - "Similar Movies": { - "tool_description": "Find similar movies and series", - "score": { - "avgServiceLevel": 83, - "avgLatency": 2213, - "avgSuccessRate": 83, - "popularityScore": 7.1, - "__typename": "Score" - } - }, - "Netflix_v2": { - "tool_description": "Netflix data API provides details, stats and information of TV shows, movies, series, documentaries and more.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1446, - "avgSuccessRate": 99, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "IMDb top 100 movies": { - "tool_description": "This is a simple API for IMDb top 100 movies", - "score": { - "avgServiceLevel": 100, - "avgLatency": 505, - "avgSuccessRate": 100, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "Streaming Availability": { - "tool_description": "Netflix, Prime, Disney, HBO, Hulu and many others. Lookup which shows are available on streaming services across 60 countries", - "score": { - "avgServiceLevel": 100, - "avgLatency": 555, - "avgSuccessRate": 96, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "Movies NEWS": { - "tool_description": "Curated movies news from top sources", - "score": { - "avgServiceLevel": 100, - "avgLatency": 317, - "avgSuccessRate": 100, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "Latest Anime API": { - "tool_description": "Now you can get data of all latest anime and episodes.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1821, - "avgSuccessRate": 100, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "Playphrase.me": { - "tool_description": "Playphrase.me API is a powerful tool that allows developers to integrate an extensive database of movie and TV show quotes into their applications. With a simple REST API interface, developers can access thousands of popular quotes and phrases from movies and TV shows, making it easy to add humor, context, or references to their applications. Playphrase.me API is perfect for developers looking to add a touch of pop culture to their applications.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1037, - "avgSuccessRate": 100, - "popularityScore": 7, - "__typename": "Score" - } - }, - "OTT details": { - "tool_description": "Get Streaming details of Movie and TV Shows. We support 150+ Streaming platforms in US and India such as HBO, YouTube, Netflix , Primve Video, Hotstar, Hulu, etc . (use our OTT Providers endpoint to get the full list OTT providers we support) . In additon to streaming info we also provide basic details on any given movie title. ", - "score": { - "avgServiceLevel": 99, - "avgLatency": 415, - "avgSuccessRate": 99, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "Movie, TV, music search and download": { - "tool_description": "Get multiple downloadable torrent links by keyword search of movie, TV, and music titles with a rate value of 10 being the best.Download via uTorrent, BitTorrent and other clients", - "score": { - "avgServiceLevel": 100, - "avgLatency": 472, - "avgSuccessRate": 100, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "DAILY OVRLL 0822202130418": { - "tool_description": "DAILY OVRLL fn7209k620210822120418391", - "score": { - "avgServiceLevel": 67, - "avgLatency": 20427, - "avgSuccessRate": 67, - "popularityScore": 6.9, - "__typename": "Score" - } - }, - "DAILY OVRLL 0822202124848": { - "tool_description": "DAILY OVRLL 9hlhjjvr20210822114848856", - "score": { - "avgServiceLevel": 90, - "avgLatency": 11670, - "avgSuccessRate": 90, - "popularityScore": 7.6, - "__typename": "Score" - } - }, - "DAILY OVRLL 0822202130334": { - "tool_description": "DAILY OVRLL 2ihh778l20210822120334476", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2720, - "avgSuccessRate": 100, - "popularityScore": 6.9, - "__typename": "Score" - } - }, - "Anime DB": { - "tool_description": "Complete anime data. Ranking, synopsis, genre, search by title. Over 20k data updated everyday", - "score": { - "avgServiceLevel": 100, - "avgLatency": 494, - "avgSuccessRate": 94, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "DAILY OVRLL 0822202140642": { - "tool_description": "DAILY OVRLL 5r3xrdnx20210822130642667", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2331, - "avgSuccessRate": 100, - "popularityScore": 6.8, - "__typename": "Score" - } - }, - "Abir82 Bollywood Recommendations": { - "tool_description": "This API recommends a list of Bollywood movies from 2000 to 2019 based on the genre and year selected by the user", - "score": { - "avgServiceLevel": 100, - "avgLatency": 228, - "avgSuccessRate": 96, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "HM - Hennes Mauritz": { - "tool_description": "H&M API helps to query for all information about regions, categories, products, etc... as on official websites", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2240, - "avgSuccessRate": 100, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "sellytics": { - "tool_description": "Amazon marketplace data REST API providing real time product, seller, review and ranking data.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 664, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "Target.Com(Store) Product/Reviews/Locations Data": { - "tool_description": "Real-time **Target.Com** data API. Get product, reviews and location details. Easy to use and reliable\nI'm on Telegram https://t.me/logicBuilder\n News and announcements Telegram Channel https://t.me/logicApi", - "score": { - "avgServiceLevel": 99, - "avgLatency": 2487, - "avgSuccessRate": 0, - "popularityScore": 0.4, - "__typename": "Score" - } - }, - "Amazon Turkey Data Scrapeer": { - "tool_description": "Amazon Tr data scraper is easiest way to get access product prices with Turkish Liras, sales rank and reviews data from Amazon Turkey in JSON format", - "score": { - "avgServiceLevel": 100, - "avgLatency": 5835, - "avgSuccessRate": 100, - "popularityScore": 8, - "__typename": "Score" - } - }, - "Axesso - Kaufland Data Service": { - "tool_description": "Our Kaufland Data Service API provides real-time data about product details and keyword search result from the online shop Kaufland.de.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3259, - "avgSuccessRate": 95, - "popularityScore": 7.3, - "__typename": "Score" - } - }, - "Basic Amazon Scraper": { - "tool_description": "Free API to get Amazon product metadata. Product details, Reviews, Offers, and Search Queries.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2608, - "avgSuccessRate": 100, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "BestBuy Product Data": { - "tool_description": "BestBuy Product Data API\nContact me at: muktheeswaran.m@gmail.com for builing custom spiders or custom requests.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3431, - "avgSuccessRate": 98, - "popularityScore": 9, - "__typename": "Score" - } - }, - "Temu.com Shopping API (Realtime api scrapper from temu.com)": { - "tool_description": " (FREE TRIAL)\nRealtime shopping api scrapper of temu.com. \nSupports product searching and product details.", - "score": { - "avgServiceLevel": 99, - "avgLatency": 3637, - "avgSuccessRate": 99, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "Product": { - "tool_description": "For Training", - "score": { - "avgServiceLevel": 100, - "avgLatency": 9, - "avgSuccessRate": 100, - "popularityScore": 7.4, - "__typename": "Score" - } - }, - "Shopee_v2": { - "tool_description": "Shopee API", - "score": { - "avgServiceLevel": 0, - "avgLatency": 221, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Facebook Marketplace": { - "tool_description": "Get complete Facebook Marketplace data to include number sold, number saved, title, description, location and category of current and past listings on FBMP. \n\nWe are the ONLY provider of Facebook Marketplace data anywhere!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 290, - "avgSuccessRate": 100, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "rttrt": { - "tool_description": "juts build and connect", - "score": { - "avgServiceLevel": 100, - "avgLatency": 6, - "avgSuccessRate": 100, - "popularityScore": 7.4, - "__typename": "Score" - } - }, - "DigiXpress": { - "tool_description": "DigiXpress is a solution for shipping and delivering parcels and letters through a vast network of relay points and door-to-door; based on a parcel rating algorithm knowing only the name of the parcel.", - "score": null - }, - "Ikea API": { - "tool_description": "This [unofficial] Ikea API is a great solution for developers looking for a comprehensive and up-to-date access to Ikea's products and search. An Ikea Scraper REST API solution.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 542, - "avgSuccessRate": 99, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "Unofficial SHEIN": { - "tool_description": "This API helps to query for almost everything that you see PUBLICLY on SHEIN's sites", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1931, - "avgSuccessRate": 100, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Weee grocery API (sayweee.com) - browsing/searching/details": { - "tool_description": "(FREE TRIAL)\nReal time scraping API from sayweee.com supports the entire pre-purchase flow.\nGrocery browsing and searching api based on location.\nProvides product details, reviews and shipment information given specific product id.\n", - "score": { - "avgServiceLevel": 100, - "avgLatency": 683, - "avgSuccessRate": 100, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "Comany Details Search Online": { - "tool_description": "Comany Details Search Online", - "score": { - "avgServiceLevel": 100, - "avgLatency": 99, - "avgSuccessRate": 100, - "popularityScore": 7.5, - "__typename": "Score" - } - }, - "Ecommerce Product API": { - "tool_description": "The Ecommerce Product API is a comprehensive solution for retrieving and managing product information in ecommerce stores. This API provides access to a wide range of product data, including titles, descriptions, images, and more. ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 4190, - "avgSuccessRate": 100, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "Axesso - Otto Data Service": { - "tool_description": "Our Otto Data Service API provides real-time data about product details, keyword search result and reviews from the german online shop Otto.de.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3451, - "avgSuccessRate": 95, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "Dungy Amazon Data Scraper": { - "tool_description": "Dungy Amazon Data Scraper is the easiest way to get access to price, sales rank, and data reviews from Amazon in JSON Format", - "score": { - "avgServiceLevel": 100, - "avgLatency": 94441, - "avgSuccessRate": 100, - "popularityScore": 6.4, - "__typename": "Score" - } - }, - "Amazon Product Price Data": { - "tool_description": "Cheap and lightweight API to get rich Amazon product metadata", - "score": { - "avgServiceLevel": 100, - "avgLatency": 332, - "avgSuccessRate": 100, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "Magic AliExpress": { - "tool_description": "Increase your e-commerce business with this API, we offer all services that you **need**
1. product detail from product ID
2. shipping information
3. detect the new future nuggets
4. trend and hitoric of sales and price on more than **80000** products (best products)
5. Request the products by categories filter by **brands** and **attributes**
", - "score": { - "avgServiceLevel": 0, - "avgLatency": 127258, - "avgSuccessRate": 0, - "popularityScore": 0.4, - "__typename": "Score" - } - }, - "Swagger PetStore": { - "tool_description": "This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 630, - "avgSuccessRate": 40, - "popularityScore": 7.4, - "__typename": "Score" - } - }, - "Trendyol Data": { - "tool_description": "ARDIC's Trendyol data retrieval service.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1515, - "avgSuccessRate": 86, - "popularityScore": 8.2, - "__typename": "Score" - } - }, - "Amazon Scrapper_v4": { - "tool_description": "This api can be used to scrap amazon products from the Amazon India web site.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 738, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "Kohls": { - "tool_description": "Get online shopping deals, discounts and rewards from fashion to beauty, home furniture, clothing, shoes, electronics and more...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3024, - "avgSuccessRate": 100, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "IHerb Product Data Api": { - "tool_description": "Query for products using many filters! Filter by price, review, discount percentage, if has stock, etc! Or export a .zip file with all updated products!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 710, - "avgSuccessRate": 85, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "yiwugo product data": { - "tool_description": "Get the yiwugo.com(äč‰äčŒèŽ­) products' information", - "score": { - "avgServiceLevel": 100, - "avgLatency": 936, - "avgSuccessRate": 85, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "Walmart_v2": { - "tool_description": "Get Walmart store locations and product reviews data.", - "score": { - "avgServiceLevel": 0, - "avgLatency": 1686, - "avgSuccessRate": 0, - "popularityScore": 0, - "__typename": "Score" - } - }, - "Real-Time Product Search": { - "tool_description": "Fast and Simple search for product offers and reviews from all major sources, in a single API.", - "score": { - "avgServiceLevel": 97, - "avgLatency": 2633, - "avgSuccessRate": 97, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "Redbubble scraper": { - "tool_description": "With this API, you can quickly and easily extract valuable data from Redbubble listings, including the title, price, product link, images, and tags. This data can help you optimize your product listings, track pricing trends, and stay on top of your competitors.\n\nThis API is easy to use, with simple commands that allow you to access the data you need in real-time. Plus, our API is highly customizable, so you can tailor it to your specific needs and preferences.\n\nSome key features of our Redbu...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 994, - "avgSuccessRate": 100, - "popularityScore": 8.2, - "__typename": "Score" - } - }, - "Amazon India Scraper_v3": { - "tool_description": "This Api Gets All Information From \"amazon.in\"", - "score": { - "avgServiceLevel": 100, - "avgLatency": 171, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "ZAPPOS 2022": { - "tool_description": "ZAPPOS NEW ENDPOINTS", - "score": { - "avgServiceLevel": 100, - "avgLatency": 538, - "avgSuccessRate": 93, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "GST Number Search by Name and PAN": { - "tool_description": "Find the GST NUMBER or GSTIN of a registered company just by name or PAN number. ", - "score": { - "avgServiceLevel": 75, - "avgLatency": 1092, - "avgSuccessRate": 75, - "popularityScore": 7.3, - "__typename": "Score" - } - }, - "Leo Github API Scraper": { - "tool_description": "Github Data Scraper is a great way to get access to Github repos", - "score": { - "avgServiceLevel": 100, - "avgLatency": 7820, - "avgSuccessRate": 100, - "popularityScore": 5.4, - "__typename": "Score" - } - }, - "E-commerce Delivery Status": { - "tool_description": "fake API to track the Delivery status including subscription id and delivery address.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 644, - "avgSuccessRate": 100, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "Simple TaxRate Retrieval": { - "tool_description": "Sales tax by zip code made easy and fast.", - "score": null - }, - "N11 Data": { - "tool_description": "ARDIC's N11 data retrieval service.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1698, - "avgSuccessRate": 91, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "BestBuy Product Data API": { - "tool_description": "BestBuy Product Data API\nContact me at: vuesdata@gmail.com or visit https://www.vuesdata.com for building custom spiders or custom requests.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3525, - "avgSuccessRate": 100, - "popularityScore": 7.4, - "__typename": "Score" - } - }, - "Get Promo Codes": { - "tool_description": "We are excited to offer developers access to our coupon data through the RapidAPI interface. Our coupon data includes over 1,000,000 coupon listings from more than 10,000 online merchants across the United States, United Kingdom, Australia, India, and other countries.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 539, - "avgSuccessRate": 100, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Zappos Realtime Data": { - "tool_description": "Zappos Realtime Data", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1390, - "avgSuccessRate": 100, - "popularityScore": 8.2, - "__typename": "Score" - } - }, - "Amazon Product Reviews": { - "tool_description": "Amazon Product Reviews\nContact me at: vuesdata@gmail.com or visit https://www.vuesdata.com for building custom spiders or custom requests.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3486, - "avgSuccessRate": 100, - "popularityScore": 5.7, - "__typename": "Score" - } - }, - "Gearbest": { - "tool_description": "API to access product and shipping information from Gearbest", - "score": { - "avgServiceLevel": 0, - "avgLatency": 1035, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Pricer": { - "tool_description": "real time price comparison api ", - "score": { - "avgServiceLevel": 97, - "avgLatency": 3346, - "avgSuccessRate": 97, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "Shopify Store Scraper": { - "tool_description": "Scrape complete products of any shopify store.", - "score": { - "avgServiceLevel": 53, - "avgLatency": 860, - "avgSuccessRate": 53, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "Target": { - "tool_description": "Query for stores, categories, products, etc ... as on official websites", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1688, - "avgSuccessRate": 100, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Leo Github Data Scraper": { - "tool_description": "Github Data Scraper is the great way to get access to Github repositories details", - "score": { - "avgServiceLevel": 62, - "avgLatency": 5505, - "avgSuccessRate": 62, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "Appibase": { - "tool_description": "Headless Commerce", - "score": { - "avgServiceLevel": 100, - "avgLatency": 832, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "PPOB": { - "tool_description": "Payment Point Online Banking\nIndonesia, China, Philippines, Malaysia, Singapore, Vietnam and Thailand. ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 567, - "avgSuccessRate": 100, - "popularityScore": 6.8, - "__typename": "Score" - } - }, - "Real-Time Amazon Data": { - "tool_description": "Fast and Simple API to search for products, offers and reviews on Amazon in real-time.", - "score": { - "avgServiceLevel": 98, - "avgLatency": 1146, - "avgSuccessRate": 98, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Taobao Tmall Product Detail": { - "tool_description": "", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2665, - "avgSuccessRate": 89, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "Amazon Data_v2": { - "tool_description": "Amazon Data provides you with comprehensive information about products on Amazon, including pricing, customer reviews, product descriptions, and more. With this valuable data, you can make informed decisions about your online retail strategy and stay ahead of the competition", - "score": { - "avgServiceLevel": 88, - "avgLatency": 2275, - "avgSuccessRate": 41, - "popularityScore": 8, - "__typename": "Score" - } - }, - "Amazon Data Scraper _v2": { - "tool_description": "Amazon Data Scraper is the easiest way to get access to products, price, sales and reviews data from amazon in JSON format", - "score": { - "avgServiceLevel": 99, - "avgLatency": 5531, - "avgSuccessRate": 99, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "natural milk": { - "tool_description": "natural milk", - "score": null - }, - "Abiola Amazon Data Scraper": { - "tool_description": "Amazon Data Scrapper makes it easy and fast to access products, price and review data from Amazon in JSON format.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 204, - "avgSuccessRate": 75, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "eBay products search scraper": { - "tool_description": "eBay products search scraper for getting search products data.\nYou can choose the Location: the US Only, North America , Europe , Asia, or Default.\nYou will get 25 products per page .", - "score": { - "avgServiceLevel": 100, - "avgLatency": 4703, - "avgSuccessRate": 100, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "Open": { - "tool_description": "Open API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 247, - "avgSuccessRate": 0, - "popularityScore": 0, - "__typename": "Score" - } - }, - "category-list": { - "tool_description": "Category Listing API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 315, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "AI-Powered WishScraper API": { - "tool_description": "The AI-Powered WishScraper API provides access to the 50 most popular and recent product listings on Wish. Ideal for e-commerce owners, marketers, and data analysts, it aids in understanding market trends for strategic planning. Offering AI-generated SEO-optimized titles and descriptions for paid users, it promises enhanced product visibility. The API stands out for its RESTful architecture ensuring high performance and efficient integration.", - "score": { - "avgServiceLevel": 91, - "avgLatency": 154, - "avgSuccessRate": 91, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "Github API Scraper ": { - "tool_description": "This is a great way to gain access to Github Repo! ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 61301, - "avgSuccessRate": 100, - "popularityScore": 5.2, - "__typename": "Score" - } - }, - "AmazonAPI": { - "tool_description": "ef", - "score": null - }, - "AliExpress Product": { - "tool_description": "AliExpress Product API is an unofficial API to extract JSON product data from aliexpress.com", - "score": { - "avgServiceLevel": 21, - "avgLatency": 10297, - "avgSuccessRate": 21, - "popularityScore": 2.2, - "__typename": "Score" - } - }, - "Zappos": { - "tool_description": "Zappos API helps to query for all information about categories, products, etc... as on official websites", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1996, - "avgSuccessRate": 96, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "AG Amazon Data Web Scraper": { - "tool_description": "AG Amazon Data Web Scraper Is The Easiest Way To Get Access To Any Of The Products Including Prices, Offers, Sales Rank, Reviews And Other Information Regarding The Products On Amazon In JSON Format. ", - "score": { - "avgServiceLevel": 0, - "avgLatency": 603, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Amazon Data_v3": { - "tool_description": "ARDIC's Amazon data retrieval service.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 6563, - "avgSuccessRate": 50, - "popularityScore": 5.6, - "__typename": "Score" - } - }, - "website screenshot": { - "tool_description": "Generate screenshots of websites with simple api, accept various parameters such as width, height, full page", - "score": { - "avgServiceLevel": 100, - "avgLatency": 4669, - "avgSuccessRate": 86, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "Makeup": { - "tool_description": "Search makeup products", - "score": { - "avgServiceLevel": 94, - "avgLatency": 3794, - "avgSuccessRate": 94, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "Ebay de Product Details Page Scraper": { - "tool_description": "Get ALL informations from Detailpage: ebay.de/itm/ITEM_ID", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1086, - "avgSuccessRate": 100, - "popularityScore": 6.9, - "__typename": "Score" - } - }, - "ETSY Products API allows you to scrape the products from etsy": { - "tool_description": "With Etsy Products API, you can easily search for products by name and retrieve newly added items from the last X days, among other features.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1777, - "avgSuccessRate": 100, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "Çiçeksepeti Data": { - "tool_description": "ARDIC's Çiçeksepeti data retrieval service.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1396, - "avgSuccessRate": 33, - "popularityScore": 5.8, - "__typename": "Score" - } - }, - "Price Comparison": { - "tool_description": "Amazon, Ebay, Target, Walmart, Google - price & product data from all marketplaces via one API. The Price Comparison API provides price & product data incl. product title, manufacturer, sellers, reviews, prices, size selection etc.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3570, - "avgSuccessRate": 62, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Get and Compate products allover the web": { - "tool_description": "With our eCommerce products API you can easily search for products by name and retrieve newly added items from the last X days, among other features.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2938, - "avgSuccessRate": 100, - "popularityScore": 7.1, - "__typename": "Score" - } - }, - "Aliexpress DataHub": { - "tool_description": "đŸ„‡#1 Data Provider. Real-Time product data API you've been looking for. No manual rules or web-scraper maintenance is required.", - "score": { - "avgServiceLevel": 99, - "avgLatency": 1580, - "avgSuccessRate": 99, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "Product Categorization": { - "tool_description": "Determine products and organization of products into their respective categories. Predict product price base on name of product or product title.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 504, - "avgSuccessRate": 100, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Forever21": { - "tool_description": "Forever21 API helps to query for all information about categories, products, etc... as on official websites", - "score": { - "avgServiceLevel": 99, - "avgLatency": 2795, - "avgSuccessRate": 99, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "Price Tracker South Africa": { - "tool_description": "Get prices of products at a number of South African retailers by searching the barcodes, product ID's / Product Sku's or product page URL's", - "score": { - "avgServiceLevel": 100, - "avgLatency": 720, - "avgSuccessRate": 100, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "Barcode": { - "tool_description": "RESTful API for barcode image generation", - "score": { - "avgServiceLevel": 100, - "avgLatency": 253, - "avgSuccessRate": 50, - "popularityScore": 6.8, - "__typename": "Score" - } - }, - "Target.com Shopping - API": { - "tool_description": "Realtime APIs support entire shopping flow on Target.com.\n(Free trial enabled)\n", - "score": { - "avgServiceLevel": 100, - "avgLatency": 425, - "avgSuccessRate": 100, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "Wayfair": { - "tool_description": "This API helps to query for all information about categories, products, etc
 as on wayfair.com", - "score": { - "avgServiceLevel": 98, - "avgLatency": 2015, - "avgSuccessRate": 98, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Hepsiburada Data": { - "tool_description": "ARDIC’s Amazon data retrieval service.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1144, - "avgSuccessRate": 33, - "popularityScore": 6.1, - "__typename": "Score" - } - }, - "EcartAPI": { - "tool_description": "Connect with 40 + eCommerce solutions in just one API, and start making requests in under 15 min. Integrations inlcude Wix, Shopify, Amazon, Mercado Libre, Unicommerce, SAP Commerce and more. https://docs.ecartapi.com", - "score": { - "avgServiceLevel": 100, - "avgLatency": 524, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Asos": { - "tool_description": "Asos API helps to query for all information about categories, products, etc... as on the official website", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2094, - "avgSuccessRate": 100, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "Sephora": { - "tool_description": "Help to query for skincare, makeup shopping, hybrid products, hair products, fragrance, etc... as on sephora.com", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1862, - "avgSuccessRate": 100, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Amazon Pricing and Product Info": { - "tool_description": "Fullest product info\nAll Marketplaces\nCustomer support for API users\nBuy box info\nPrime & FBA detection\nFast, scalable & reliable API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2111, - "avgSuccessRate": 100, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "CasinoSearch": { - "tool_description": "CasinoSearch API for calendar tournaments", - "score": { - "avgServiceLevel": 100, - "avgLatency": 6, - "avgSuccessRate": 100, - "popularityScore": 7.5, - "__typename": "Score" - } - }, - "Healthcaremailing": { - "tool_description": "Healthcare mailing, a direct marketing business founded on a rock solid base of many successful years of experience building and managing lists used in direct marketing campaigns. Our primary principle of providing true quality leads with great customer service is never taken lightly - as a full service mailing list broker, and as a friend to our customers, our direct marketing experts are always happy to go the extra mile for you.", - "score": null - }, - "Business Name Generator": { - "tool_description": "Business Name Generator API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 595, - "avgSuccessRate": 100, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "Indeed": { - "tool_description": "Indeed is the #1 job site worldwide, with over 100 million unique visitors per month. Indeed is available in more than 50 countries and 26 languages, covering 94% of global GDP.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 32, - "avgSuccessRate": 100, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "1800 Printing Test": { - "tool_description": "Test", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2516, - "avgSuccessRate": 100, - "popularityScore": 7.1, - "__typename": "Score" - } - }, - "Find Vehicle": { - "tool_description": "Just To find vehicle details", - "score": { - "avgServiceLevel": 100, - "avgLatency": 620, - "avgSuccessRate": 100, - "popularityScore": 8.2, - "__typename": "Score" - } - }, - "Public Holidays": { - "tool_description": "Retrieve religious, non-public and public holidays for 200+ countries worldwide and for any specific year", - "score": { - "avgServiceLevel": 100, - "avgLatency": 661, - "avgSuccessRate": 77, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "Users": { - "tool_description": "Users list", - "score": { - "avgServiceLevel": 100, - "avgLatency": 7, - "avgSuccessRate": 100, - "popularityScore": 7.4, - "__typename": "Score" - } - }, - "Email finder": { - "tool_description": "Find email of anyone from their first name, last name, and domain", - "score": { - "avgServiceLevel": 87, - "avgLatency": 9074, - "avgSuccessRate": 87, - "popularityScore": 7.7, - "__typename": "Score" - } - }, - "AndroidAPI": { - "tool_description": "for testing database storage", - "score": { - "avgServiceLevel": 100, - "avgLatency": 662, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "test": { - "tool_description": "test", - "score": { - "avgServiceLevel": 100, - "avgLatency": 565, - "avgSuccessRate": 100, - "popularityScore": 5.8, - "__typename": "Score" - } - }, - "Finnish License Plate API": { - "tool_description": "Determine vehicle details from a Finnish License Plate", - "score": null - }, - "YC Hacker news official": { - "tool_description": "The official hacker news API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 318, - "avgSuccessRate": 100, - "popularityScore": 9, - "__typename": "Score" - } - }, - "Sertifi eSignature and ePayment": { - "tool_description": "Our agreement platform available as an integratable API\nallows your company to send signatures and payments\ndirectly through your technology.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 468, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "11BET": { - "tool_description": "11BET ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 725, - "avgSuccessRate": 100, - "popularityScore": 6.8, - "__typename": "Score" - } - }, - "Chartbeat": { - "tool_description": "Chartbeat collects various metrics about each visitor on your site. Some of this is reported basically raw (like number of readers on an article), and some data is mashed up and modified before being reported (like understanding that a visitor that c", - "score": { - "avgServiceLevel": 100, - "avgLatency": 297, - "avgSuccessRate": 100, - "popularityScore": 6.7, - "__typename": "Score" - } - }, - "Realty in AU": { - "tool_description": "This API helps to query properties for sale, rent, sold,etc
 in Australia to create a realtor, real estate site/application such as realestate.com.au", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3449, - "avgSuccessRate": 100, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "KUBET-": { - "tool_description": "KUBET-", - "score": { - "avgServiceLevel": 100, - "avgLatency": 88, - "avgSuccessRate": 100, - "popularityScore": 7.1, - "__typename": "Score" - } - }, - "Flight Booking": { - "tool_description": "book flight ", - "score": null - }, - "SEA Games 31": { - "tool_description": "Cổng thĂŽng tin chĂ­nh thức cá»§a SEA Games 31 - Việt Nam 2021. ĐáșĄi hội Thể thao ĐÎng Nam Á 2021. ĐáșĄi hội Thể thao ĐÎng Nam Á - SEA Games 2021, sáșœ diễn ra ở HĂ  Nội, Việt Nam từ ngĂ y 12 thĂĄng 5 đáșżn ngĂ y 23 thĂĄng 5 năm 2022.\nWebsite http://seagames.info/ \nEmail:info@seagames.info\nGoogle map: https://www.google.com/maps?cid=10302187337639672513 \nĐịa chỉ : 36 P. Tráș§n PhĂș, Điện BiĂȘn, Ba ĐÏnh, HĂ  Nội Hanoi, Vietnam 100000\n#vietnamxseagames31 #HĂ _Nội #Việt_Nam #Lịch_thi_đáș„u_SEA Games 31\nhttps://seagames...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1125, - "avgSuccessRate": 100, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "Fraudlabs": { - "tool_description": "The FraudLabs Credit Card Fraud Detection Web Service allows instant detection of fraudulent online credit card order transactions which helps internet retailers to avoid loss of revenue, waste of productivity and increase of operation costs in chargebacks or refunds.\r\n\r\nSign up for free license key at http://www.fraudlabs.com/freelicense.aspx?PackageID=1 which allows up to 90 queries a month.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 298, - "avgSuccessRate": 100, - "popularityScore": 5.8, - "__typename": "Score" - } - }, - "Abuse IP Check": { - "tool_description": "Abuse IP Check is a project dedicated to helping combat the spread of hackers, spammers, and abusive activity on the internet.\n\nOur mission is to help make Web safer by providing a central blacklist for webmasters, system administrators, and other interested parties to report and find IP addresses that have been associated with malicious activity online.\n\nYou can report an IP address associated with malicious activity, or check to see if an IP address has been reported, by using the search bo...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2679, - "avgSuccessRate": 100, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "notevent": { - "tool_description": "ser", - "score": null - }, - "Convert Company Name to Website URL": { - "tool_description": "Convert Company Names to Website URL", - "score": { - "avgServiceLevel": 100, - "avgLatency": 9438, - "avgSuccessRate": 100, - "popularityScore": 7.5, - "__typename": "Score" - } - }, - "VerticalResponse": { - "tool_description": "VerticalResponse helps users create and send great email campaigns. We make contact and list management easy, allowing users to create contacts, group them into meaningful lists, and use these lists to send targeted email campaigns. VerticalResponse provides REST APIs to manage contacts, lists, messages and custom fields. Developers can integrate VerticalResponse's email and social marketing functionality into their applications to provide their customers with new and interesting ways to create and manage marketing campaigns.", - "score": { - "avgServiceLevel": 83, - "avgLatency": 417, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "Petstore": { - "tool_description": "Petstore API Example", - "score": { - "avgServiceLevel": 100, - "avgLatency": 597, - "avgSuccessRate": 0, - "popularityScore": 0, - "__typename": "Score" - } - }, - "firstAPI_v2": { - "tool_description": "TESTING PURPOSE", - "score": { - "avgServiceLevel": 100, - "avgLatency": 692, - "avgSuccessRate": 67, - "popularityScore": 6.5, - "__typename": "Score" - } - }, - "MailBoxValidator": { - "tool_description": "The MailBoxValidator Email Validation Web Service allows instant email address verification by using real time mail server connectivity and syntax checker.\r\n\r\nSign up for free license key at http://www.fraudlabs.com/freelicense.aspx?PackageID=9 which allows up to 90 queries a month.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 311, - "avgSuccessRate": 100, - "popularityScore": 5.9, - "__typename": "Score" - } - }, - "VAT validation and tax rates": { - "tool_description": "Stay compliant with our simple, reliable, and powerful API for all your domestic and cross-border sales.\nThe VAT Validation and Rates API makes it easy to stay compliant with VAT laws\nReliable and up-to-date VAT data", - "score": { - "avgServiceLevel": 100, - "avgLatency": 876, - "avgSuccessRate": 80, - "popularityScore": 7.1, - "__typename": "Score" - } - }, - "Forbes worlds billionaires list": { - "tool_description": "This api can get Forbes worlds billionaires list by year. You can search and filter by country.", - "score": { - "avgServiceLevel": 98, - "avgLatency": 19102, - "avgSuccessRate": 98, - "popularityScore": 9, - "__typename": "Score" - } - }, - "Netherlands Vehicle License Plate lookup": { - "tool_description": "Determine vehicle details from a Dutch license plate. ", - "score": null - }, - "24hkhoedep": { - "tool_description": "24hkhoedep.com lĂ  trang bĂĄn láș» trá»±c tuyáșżn trá»±c thuộc CĂŽng Ty TNHH Chăm SĂłc Khoáș» VĂ  Đáșčp Việt Nam – một cĂŽng ty chuyĂȘn nháș­p kháș©u vĂ  phĂąn phối độc quyền cho cĂĄc hĂŁng dÆ°á»Łc má»č pháș©m vĂ  trang thiáșżt bị y táșż từ ChĂąu u.\n#khoedep #khoedepvietnam #mypham #myphamchauau #duocphamchauau #duocmypham\n#mỄn thịt #rối loáșĄn tiĂȘu hĂła #ngá»±c cháșŁy xệ\nĐịa chỉ : 40/19 BĂ u CĂĄt 2, Phường 14, Quáș­n TĂąn BĂŹnh, TP. HCM, Việt Nam\nHotline 028 - 6296 2262 | 0931320062\nEmail: hbcvn@healthbeautycare.com.vn\nGoogle map https://www....", - "score": { - "avgServiceLevel": 100, - "avgLatency": 770, - "avgSuccessRate": 100, - "popularityScore": 5.6, - "__typename": "Score" - } - }, - "CalAPI": { - "tool_description": "CalAPI", - "score": { - "avgServiceLevel": 100, - "avgLatency": 6, - "avgSuccessRate": 100, - "popularityScore": 7.4, - "__typename": "Score" - } - }, - "LinkedIn Profile Data": { - "tool_description": "Returns LinkedIn profile data from a given username.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 4007, - "avgSuccessRate": 98, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "My public interface": { - "tool_description": "This is description", - "score": { - "avgServiceLevel": 100, - "avgLatency": 765, - "avgSuccessRate": 100, - "popularityScore": 6.7, - "__typename": "Score" - } - }, - "ShopeeApi": { - "tool_description": "Shopee product search api & product details api", - "score": { - "avgServiceLevel": 98, - "avgLatency": 810, - "avgSuccessRate": 98, - "popularityScore": 9, - "__typename": "Score" - } - }, - "testpk": { - "tool_description": "testpk", - "score": null - }, - "news": { - "tool_description": "news", - "score": null - }, - "GST Details & Filing Data": { - "tool_description": "Get company details, Return Status & Filing Data based on GSTIN\n- Monthly Data, Quarterly Data, Yearly Data & hsn codes\n-Update 21 May 2023: I have updated the API & it's even faster with zero errors.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3491, - "avgSuccessRate": 100, - "popularityScore": 9, - "__typename": "Score" - } - }, - "Personas": { - "tool_description": "API provides a single API to read user-level and account-level customer data.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 661, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "Self-help Quotes": { - "tool_description": "Hand-picked quotes from the best self-help books around. Get a random quote every day, filter by tags, books, and more...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1030, - "avgSuccessRate": 94, - "popularityScore": 8.2, - "__typename": "Score" - } - }, - "Company Consultation Reportero Industrial Mexicano API": { - "tool_description": "Consult companies y productos with our more than 15 thousand suppliers", - "score": { - "avgServiceLevel": 100, - "avgLatency": 400, - "avgSuccessRate": 100, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "SOTI Sync": { - "tool_description": "Application to receive SOTI Sync Event Registration", - "score": { - "avgServiceLevel": 100, - "avgLatency": 98, - "avgSuccessRate": 10, - "popularityScore": 1.6, - "__typename": "Score" - } - }, - "hyhryh": { - "tool_description": "gyhryh", - "score": { - "avgServiceLevel": 100, - "avgLatency": 6, - "avgSuccessRate": 100, - "popularityScore": 7, - "__typename": "Score" - } - }, - "test_v3": { - "tool_description": "this is a test api", - "score": { - "avgServiceLevel": 100, - "avgLatency": 465, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "AE6888 Link vao nha cai AE688 2022": { - "tool_description": "AE6888 - Ae6888.net⭐ Trang chá»§ đăng kĂœ, đăng nháș­p AE888 mới nháș„t ⭐ bao gồm: đá gĂ  thomo, tĂ i xỉu, thể thao, lĂŽ đề online ⭐ Link vĂ o ae388 - ae688 - ae88 chĂ­nh thức.\n#đăng_kĂœ_ae6888 #náșĄp_tiền_ae6888 #link_vĂ o_ae6888 #táșŁi app ae6888 #/m/033_l8 /m/033_l8 #Casino #lịnkvaoae68882022 #dangnhap #đăng_nháș­p_ae6888\nĐịa chỉ : 74 NgĂ” 238 TĂąn Mai, TĂąn Mai, Hai BĂ  Trưng, HĂ  Nội, Việt Nam\t\nHotline 0839138910\t\nGmail: ae6888net@gmail.com\t\nWebsite https://ae6888.net/\nhttps://ae6888.net/huong-dan-dang-ky-ae6...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1781, - "avgSuccessRate": 100, - "popularityScore": 5.5, - "__typename": "Score" - } - }, - "CPF Format Validation": { - "tool_description": "Validation of the Brazilian CPF format.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 741, - "avgSuccessRate": 100, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "cvr.dev": { - "tool_description": "Data about companies from the Danish Business Authority", - "score": { - "avgServiceLevel": 100, - "avgLatency": 994, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "UK VRM Lookup": { - "tool_description": "Lookup a UK VRM (License Plate) using this API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2801, - "avgSuccessRate": 100, - "popularityScore": 5.4, - "__typename": "Score" - } - }, - "Business Starter API": { - "tool_description": "API that generates a name, slogan and idea for a business", - "score": { - "avgServiceLevel": 100, - "avgLatency": 6044, - "avgSuccessRate": 100, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "Website Categorization API": { - "tool_description": "Identifies the top 3 categories for any website or text", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2323, - "avgSuccessRate": 100, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "Comparable Companies": { - "tool_description": "Our ML algorithm finds the most similar firms to any company. Find 10x more companies 10x faster!\n\nThe API will return up to 50 similar companies for any company domain that you provide. Data points provided for every company include: Name, # of employees, Revenue in USD, Revenue Growth, Description, Logo image URL, HQ Location, Country, and Linkedin URL.\n\nUse this API to power your web application with \"related companies\" sections, or use it to leverage internal databases with new data points.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3411, - "avgSuccessRate": 96, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "'\"/>>": { - "tool_description": "test", - "score": null - }, - "test_v16": { - "tool_description": "asd", - "score": { - "avgServiceLevel": 0, - "avgLatency": 845, - "avgSuccessRate": 0, - "popularityScore": 0, - "__typename": "Score" - } - }, - "Princier Couture": { - "tool_description": "Api", - "score": null - }, - "567 Live app 2022": { - "tool_description": "567 Live cĂł trang chá»§ 567live.io duy nháș„t chĂ­nh xĂĄc. Cung cáș„p đủ link táșŁi 567 live app an toĂ n cho báșĄn phiĂȘn báșŁn mới nháș„t.\nĐịa chỉ : 99 GiáșŁi PhĂłng, Đồng TĂąm, Hai BĂ  Trưng, HĂ  Nội\nGoogle map https://www.google.com/maps?cid=7118718670140148249 \nHotline 0978720550\nGmail: 567liveapp@gmail.com\nWebsite https://567live.io/ \nhttps://sites.google.com/view/567live-app/\nhttps://567live.io/tai-ve/567live-apk \nhttps://567live.io/tai-ve/567live-ios\nhttps://567live.io/thu-muc/app-live/ \nhttps://folkd.com/u...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1438, - "avgSuccessRate": 100, - "popularityScore": 5.8, - "__typename": "Score" - } - }, - "Fake Brightcove": { - "tool_description": "Fake Brightcove API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 10, - "avgSuccessRate": 100, - "popularityScore": 6, - "__typename": "Score" - } - }, - "Bayut": { - "tool_description": "This API helps to query real estate in UAE to create a real estate site/application", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1961, - "avgSuccessRate": 100, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "CallTrackingMetrics": { - "tool_description": "Track the performance of your advertising with instantly activated tracking numbers in 30 countries. Integrate with Google and track down to keyword level.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 389, - "avgSuccessRate": 4, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Rotating Proxies": { - "tool_description": "Proxy Rotator is the world's first enterprise grade proxy ip rotation service. HTTPS proxies on a combination of over 26 million Residential, Private and Public Exclusive IP's. It's Easy to Use, Reliable and used by 1000's of Businesses daily.\r\n\r\nProxy Rotator's Rotating Proxy API is an RESTful API which can be integrated into any script in any language. Providing a simple jSON or XML response the API is supported in all programming languages by default. Each request to the API returns a fresh new proxy to be used in your script and your request can be fully customized to return a proxy of your exact requirements at any given time.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1110, - "avgSuccessRate": 100, - "popularityScore": 7.8, - "__typename": "Score" - } - }, - "Zoopla": { - "tool_description": "Real-time data, unofficial API zoopla co uk. Users can search for information on flats, houses, villas, serviced apartments, and various other types of properties across the country. Zoopla offers an easy way to view details about each property, including photos, descriptions, information on size, number of rooms, and amenities. Users can also explore parameters such as estimated value, sales history, and the surrounding market.\nThe occurrence rate of the response status code != 200 is < 0...", - "score": { - "avgServiceLevel": 99, - "avgLatency": 2095, - "avgSuccessRate": 98, - "popularityScore": 7.7, - "__typename": "Score" - } - }, - "German Company Data_v2": { - "tool_description": "Enrich your CRM / MAS / ERP system with credible data about all incorporated companies from Germany.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 88, - "avgSuccessRate": 100, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "WRAWS Load Test": { - "tool_description": "WRAWS Load Tester", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1796, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "Deal Catcher": { - "tool_description": "Deal Catcher React Native app", - "score": { - "avgServiceLevel": 100, - "avgLatency": 6, - "avgSuccessRate": 100, - "popularityScore": 7.6, - "__typename": "Score" - } - }, - "ExplorArc's Internel Links Crawler": { - "tool_description": "The Best API t Fetch all the Internel Links from an given URL", - "score": { - "avgServiceLevel": 41, - "avgLatency": 2137, - "avgSuccessRate": 41, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "Matricula API - Espana": { - "tool_description": "Lookup vehicle details from a number plate in Spain", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2418, - "avgSuccessRate": 100, - "popularityScore": 5.7, - "__typename": "Score" - } - }, - "czkjlj": { - "tool_description": "rgrrgerrtyrty", - "score": null - }, - "Business and company name API": { - "tool_description": "Use this Know-Your-Business Process (KYB) API to validate registered companies and business names recognised by the Corporate Affairs Commission (CAC). You have enpoints to search, validate name availability and validate and fetch business and company registration numbers.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1390, - "avgSuccessRate": 93, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "NY Times - Top Stories": { - "tool_description": "Newyork times top stories API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 822, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "Free OFAC Scan": { - "tool_description": "A FREE and simple OFAC scan that returns TRUE (if the target was found) or FALSE (if the target was not found). Use \"Complete OFAC Scan\" by Intelitruth for detailed records response.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 468, - "avgSuccessRate": 100, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "My Bot": { - "tool_description": "For Bot Telegram", - "score": null - }, - "Australian Business Industries API": { - "tool_description": "Welcome to the Australian Business Industries API, a powerful and comprehensive tool designed to cater to the needs of businesses, developers, and data analysts in Australia. Our API aims to provide seamless access to the precise industry codes for Australian businesses, making it an invaluable resource for those who require accurate classification of companies and industries within the Australian market.\n", - "score": { - "avgServiceLevel": 100, - "avgLatency": 867, - "avgSuccessRate": 100, - "popularityScore": 8.2, - "__typename": "Score" - } - }, - "Test Plan": { - "tool_description": "asdf", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1077, - "avgSuccessRate": 100, - "popularityScore": 7.3, - "__typename": "Score" - } - }, - "Docs_v2": { - "tool_description": "Example API for Dosc", - "score": { - "avgServiceLevel": 100, - "avgLatency": 7, - "avgSuccessRate": 100, - "popularityScore": 5.5, - "__typename": "Score" - } - }, - "apfd": { - "tool_description": "apfd", - "score": { - "avgServiceLevel": 100, - "avgLatency": 660, - "avgSuccessRate": 24, - "popularityScore": 1.5, - "__typename": "Score" - } - }, - "Swedish Vehicle license plate lookup": { - "tool_description": "Search for a Swedish vehicle from it's license plate", - "score": null - }, - "PetStoreAPI2.0": { - "tool_description": "This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 707, - "avgSuccessRate": 48, - "popularityScore": 8, - "__typename": "Score" - } - }, - "hfghfgh": { - "tool_description": "gfhfghfg", - "score": { - "avgServiceLevel": 100, - "avgLatency": 356, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Lake B2B": { - "tool_description": "Lake B2B combines research and experience to offer unique email marketing lists & healthcare database for customized b2b marketing across industries and geographies.", - "score": null - }, - "partydiva": { - "tool_description": "partydiva", - "score": null - }, - "French Vehicle License Plate API": { - "tool_description": "Determine vehicle details from a french licese plate", - "score": { - "avgServiceLevel": 100, - "avgLatency": 8363, - "avgSuccessRate": 100, - "popularityScore": 6.3, - "__typename": "Score" - } - }, - "Demo": { - "tool_description": "demo para RH", - "score": { - "avgServiceLevel": 100, - "avgLatency": 339, - "avgSuccessRate": 100, - "popularityScore": 7.8, - "__typename": "Score" - } - }, - "constructioness": { - "tool_description": "adasdasd", - "score": null - }, - "qwe": { - "tool_description": "qwe", - "score": null - }, - "Test_API": { - "tool_description": "For testing purpose", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1010, - "avgSuccessRate": 0, - "popularityScore": 0, - "__typename": "Score" - } - }, - "Florida Realty API": { - "tool_description": "Find condos and townhouses in Florida (USA) and get access to the original listing service MLS with thousands of properties.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3096, - "avgSuccessRate": 100, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "ExplorArc's OpenGraph Crawling API": { - "tool_description": "The Best API to Fetch all the OpenGraph and Meta tags from an given website URL", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1117, - "avgSuccessRate": 100, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "XTREAM": { - "tool_description": "Domain Name Lookup", - "score": null - }, - "ALT Coins": { - "tool_description": "ALT Coins - A Community", - "score": { - "avgServiceLevel": 100, - "avgLatency": 907, - "avgSuccessRate": 100, - "popularityScore": 6.5, - "__typename": "Score" - } - }, - "8prd2T1api1": { - "tool_description": "8prd2T1", - "score": { - "avgServiceLevel": 100, - "avgLatency": 400, - "avgSuccessRate": 100, - "popularityScore": 6.7, - "__typename": "Score" - } - }, - "KarenRecommends": { - "tool_description": "News Site", - "score": null - }, - "Woo-temp": { - "tool_description": "Temp APi", - "score": { - "avgServiceLevel": 85, - "avgLatency": 38234, - "avgSuccessRate": 85, - "popularityScore": 7.5, - "__typename": "Score" - } - }, - "Croatia Company Data": { - "tool_description": "Access to the official Croatian government business register with this API, ideal for KYB purposes", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1635, - "avgSuccessRate": 100, - "popularityScore": 7.4, - "__typename": "Score" - } - }, - "SmartSync": { - "tool_description": "SmartSync", - "score": { - "avgServiceLevel": 100, - "avgLatency": 381, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Email Scraper": { - "tool_description": "AI-powered email scraper for business lead generation. Ideal for marketers and individuals looking for contact emails from thousands of websites", - "score": { - "avgServiceLevel": 100, - "avgLatency": 4953, - "avgSuccessRate": 64, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "789bettnet": { - "tool_description": "789bet lĂ  nhĂ  cĂĄi cĂĄ cÆ°á»Łc trá»±c tuyáșżn uy tĂ­n top đáș§u khu vá»±c chĂąu Á, cung cáș„p cĂĄc dịch vỄ cĂĄ cÆ°á»Łc như casino, cĂĄ cÆ°á»Łc thể thao, nổ hĆ©, báșŻn cĂĄ, tĂ i xỉu.\n#789bettnet #789bet #nhacai789bet #linkvao #dangky789bet #dangnhap789bet\nHotline 0985 433 336\nĐịa chỉ : 89 NgĂ” 15 GiáșŁi PhĂłng, HoĂ ng Liệt, Hai BĂ  Trưng, HĂ  Nội, Việt Nam \nGoogle map https://www.google.com/maps?cid=5871956287660487504 \nGmaiL: 789bett.net@gmail.com\nWebsite https://789bett.net/ \nhttps://789bett.net/dang-ky-789bet/ \nhttps://789bett....", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2207, - "avgSuccessRate": 100, - "popularityScore": 6.6, - "__typename": "Score" - } - }, - "Free Cashback": { - "tool_description": "Free Cashback API is a free to use api which makes it easy for you to provide Cashbacks on more than 100 leading shopping websites in India, to your users.", - "score": null - }, - "denemeapisi": { - "tool_description": "abc", - "score": null - }, - "AcroSuite OAuther": { - "tool_description": "Get OAuth/OpenID Connect authentication information. OpenID ConnectèȘèšŒæƒ…ć ±ć–ćŸ—ă‚”ăƒŒăƒ“ă‚čă‚’æäŸ›ă„ăŸă™ă€‚", - "score": { - "avgServiceLevel": 100, - "avgLatency": 904, - "avgSuccessRate": 100, - "popularityScore": 5.4, - "__typename": "Score" - } - }, - "Project Gutenberg API": { - "tool_description": "This is a stable and reliable unofficial API for Project Gutenberg, allowing you to download ebooks as well as get information about a certain book (title, author, language, copyrights and publish date).", - "score": { - "avgServiceLevel": 100, - "avgLatency": 195, - "avgSuccessRate": 99, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "Uganda Company Data": { - "tool_description": "Access the official Uganda Governmnent company register, ideal for KYB purposes", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2166, - "avgSuccessRate": 100, - "popularityScore": 7.6, - "__typename": "Score" - } - }, - "Seloger": { - "tool_description": "This API helps to query properties for sale or rent in France to create a real estate site/application such as seloger.com", - "score": { - "avgServiceLevel": 100, - "avgLatency": 6395, - "avgSuccessRate": 100, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "anttdev 2": { - "tool_description": "fsdfsd", - "score": { - "avgServiceLevel": 100, - "avgLatency": 245, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "US Address Parser": { - "tool_description": "Parses US Street Addresses and Returns JSON", - "score": { - "avgServiceLevel": 100, - "avgLatency": 704, - "avgSuccessRate": 100, - "popularityScore": 7.4, - "__typename": "Score" - } - }, - "Test New Team": { - "tool_description": "Test", - "score": null - }, - "kassbet": { - "tool_description": "Its a betting site", - "score": { - "avgServiceLevel": 100, - "avgLatency": 443, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "DNS Propagation and Domain Checker": { - "tool_description": "DNS Propagation and Domain Checker . Check Domain propagation Online and find Name Server Propagation . Find AAA Record Propagation across different servers globally", - "score": { - "avgServiceLevel": 90, - "avgLatency": 2042, - "avgSuccessRate": 81, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "Check Mail": { - "tool_description": "Simple Email validator", - "score": null - }, - "Tor detect": { - "tool_description": "A fast and simple API to identify and retrieve information about Tor nodes.", - "score": { - "avgServiceLevel": 0, - "avgLatency": 146, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "LD": { - "tool_description": "Lanka Designer Website", - "score": { - "avgServiceLevel": 100, - "avgLatency": 492, - "avgSuccessRate": 100, - "popularityScore": 5.6, - "__typename": "Score" - } - }, - "New Client": { - "tool_description": "Make sample map for app", - "score": { - "avgServiceLevel": 100, - "avgLatency": 950, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Currency Exchange Rates": { - "tool_description": "Get live and historical data from 60+ fiat and crypto currencies via a modern REST API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 787, - "avgSuccessRate": 73, - "popularityScore": 9, - "__typename": "Score" - } - }, - "Ziff": { - "tool_description": "An API Service that enables you to retrieve Live Exchange Rates which are accurate and up to date. All World Currencies, Precious Metals + More! Free & Paid.", - "score": { - "avgServiceLevel": 95, - "avgLatency": 518, - "avgSuccessRate": 95, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "USPTO Trademark": { - "tool_description": "Instant trademark search. Check if a trademark keyword is available, search trademarks from USPTO, filter on owner/applicant information, expiration date.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1127, - "avgSuccessRate": 100, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Verifica Targhe Italiane - API": { - "tool_description": "Verifica Targhe Italiane ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1108, - "avgSuccessRate": 100, - "popularityScore": 6, - "__typename": "Score" - } - }, - "Ken": { - "tool_description": "Kodi", - "score": { - "avgServiceLevel": 100, - "avgLatency": 118, - "avgSuccessRate": 100, - "popularityScore": 6.7, - "__typename": "Score" - } - }, - "eNotas Gateway": { - "tool_description": "Automatic e-Service Brazilian invoicing platform, the easy way.\r\nNota Fiscal EletrĂŽnica de Serviço AutomĂĄtica, em nĂ­vel nacional, da forma mais fĂĄcil possĂ­vel.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1505, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Job Title Categorization": { - "tool_description": "Accurately classify any job title. Our machine-learning API sorts job titles into two categories:\ndepartment (sales, finance,...) and level (director, manager, intern...) so you can prioritize the ones you're interested in.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2232, - "avgSuccessRate": 100, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "Entity Risk": { - "tool_description": "The Entity Risk API accesses our risk intelligence data.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 664, - "avgSuccessRate": 86, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "pss": { - "tool_description": "pss", - "score": { - "avgServiceLevel": 0, - "avgLatency": 0, - "avgSuccessRate": 0, - "popularityScore": 0, - "__typename": "Score" - } - }, - "b4c6577cb2msh7c15fca215f2c30p1f1717jsn998498c6865e": { - "tool_description": "wffff", - "score": { - "avgServiceLevel": 0, - "avgLatency": 1309, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Interceptor Sample": { - "tool_description": "Interceptor Sample", - "score": { - "avgServiceLevel": 100, - "avgLatency": 886, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "acopaer": { - "tool_description": "acopaer backed api", - "score": { - "avgServiceLevel": 0, - "avgLatency": 0, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "MyMemory - Translation Memory": { - "tool_description": "Get a better translation! MyMemory is the world's largest Translation Memory that contains billions of words translated by professional translators. MyMemory will give you ModernMT machine translation if a human translation is not available.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 618, - "avgSuccessRate": 100, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "Idealista_v2": { - "tool_description": "Query for rent and sale properties in Spain, Italy, Portugal", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2398, - "avgSuccessRate": 100, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Phone Validator API": { - "tool_description": "Validate and verify phone numbers in your apps.", - "score": { - "avgServiceLevel": 89, - "avgLatency": 1030, - "avgSuccessRate": 87, - "popularityScore": 7.2, - "__typename": "Score" - } - }, - "Streak CRM for GMAIL": { - "tool_description": "connects to \"Streak CRM\"\r\nStreak offers a simple CRM extension to use with Gmail. \r\nYou install it in the Chrome browser, then create a set of workflow interfaces in Gmail that allow you to organize related sets of emails. \r\n* Send reminders to yourself in Gmail, \r\n* Queue mails to be sent at certain dates\r\n* create worklows\r\n\r\nSome recent email extensions, like Rapportive, also provide lightweight CRM features, but Streak goes way deeper into the workflow process.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 388, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "CatalogAPI": { - "tool_description": "Catalog API is a service that ties your application to our catalog and order support department. With minimal integration, you can receive data feeds easily scoped to your demographics to provide exciting, up-to-date, and motivating catalogs. Your pa", - "score": { - "avgServiceLevel": 100, - "avgLatency": 426, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "FM_API_RELEASE v0.1": { - "tool_description": " a set of routines, protocols, and tools for building software applications. Basically, an API specifies ", - "score": null - }, - "CalendarEvents": { - "tool_description": "Retrieve Google Calendar Events from a public calendar", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1663, - "avgSuccessRate": 100, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "Domain Authority": { - "tool_description": "Get Domain Authority and Page Authority of any Domain or URL.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 492, - "avgSuccessRate": 100, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "American Company Business Data": { - "tool_description": "Enrich your CRM / MAS / ERP system with data about all companies listed in the United States. The US Company Data API lets you obtain detailed data about US companies currently or previously listed in the United States. You can use this information to enrich your Customer Relationship Management (CRM) system or other B2B systems you have in use. A matching with your own data is possible through the powerful lookup mechanism. In addition, this API allows you to search and filter on the index o...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 930, - "avgSuccessRate": 100, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "000": { - "tool_description": "Kik", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2084, - "avgSuccessRate": 100, - "popularityScore": 6.9, - "__typename": "Score" - } - }, - "prueba": { - "tool_description": "prueba de api", - "score": { - "avgServiceLevel": 100, - "avgLatency": 7, - "avgSuccessRate": 100, - "popularityScore": 7.5, - "__typename": "Score" - } - }, - "Test_v18": { - "tool_description": "Test API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 137, - "avgSuccessRate": 0, - "popularityScore": 0, - "__typename": "Score" - } - }, - "Ticketbud": { - "tool_description": "Events happening globally on ticketbud. Access to ticket sales, event locations, and event attendees.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 628, - "avgSuccessRate": 11, - "popularityScore": 1.6, - "__typename": "Score" - } - }, - "123CACA": { - "tool_description": "123goal.info", - "score": { - "avgServiceLevel": 100, - "avgLatency": 278, - "avgSuccessRate": 100, - "popularityScore": 6.9, - "__typename": "Score" - } - }, - "REMarketLite APIs": { - "tool_description": "The API set powered by PropMix, provides property listings by accepting various filters like Zip code, Street, City and State. It also provide comparable listings within the given radius, returns the count of listings by accepting various filters and more.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 402, - "avgSuccessRate": 25, - "popularityScore": 1.9, - "__typename": "Score" - } - }, - "TestPOCApi": { - "tool_description": "https://dev-is-api.entytle.com", - "score": { - "avgServiceLevel": 100, - "avgLatency": 689, - "avgSuccessRate": 0, - "popularityScore": 0, - "__typename": "Score" - } - }, - "였넘": { - "tool_description": "였넘", - "score": { - "avgServiceLevel": 0, - "avgLatency": 297, - "avgSuccessRate": 0, - "popularityScore": 0, - "__typename": "Score" - } - }, - "Test_v14": { - "tool_description": "testpk", - "score": null - }, - "Realty in US": { - "tool_description": "This API helps to query properties for sale, rent, sold,etc
 to create a real estate site/application such as realtor.com", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1710, - "avgSuccessRate": 100, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "MCA Corporate Verifications": { - "tool_description": "Make your onboarding process safer, faster, and smarter by verifying if your merchants are registered with the Registrar of Companies, and are registered with the same details that you expect.\n\nWith the MCA Verification API, you can now confidently onboard merchants knowing that they are authorized and registered with the RoC.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 144, - "avgSuccessRate": 80, - "popularityScore": 7.4, - "__typename": "Score" - } - }, - "Basic Info vikkon Assets": { - "tool_description": "Get information from vikkon platform.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 595, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "Slovenia Company Data": { - "tool_description": "Access the official Slovenian Government company register, basic search only. ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1535, - "avgSuccessRate": 100, - "popularityScore": 6.5, - "__typename": "Score" - } - }, - "Import Export Verification": { - "tool_description": "Make your onboarding process safer, faster, and smarter by verifying the legitimacy of your merchants by using their import export certification. \n\nWith the Import Export verification API, you can now confidently onboard merchants knowing that they are a genuine entity, registered under the Registrar of Companies, and are authorized to partake in the import and export of products.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 172, - "avgSuccessRate": 95, - "popularityScore": 7.3, - "__typename": "Score" - } - }, - "Property Report": { - "tool_description": "This API searches tax assessment, deed, mortgage and notice of default records filed in over 3,100 counties with Tax Assessors and County Recorder of Deeds offices. Results may include information as available about property owners, physical site and mailing addresses, land and building property details, and financial information. Searches may be conducted using an address only, or a name and address.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 991, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "0MMO": { - "tool_description": "0MMO ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3139, - "avgSuccessRate": 100, - "popularityScore": 5.6, - "__typename": "Score" - } - }, - "DOMAINE nc": { - "tool_description": "API REST pour interagir avec les noms de domaine, de connaitre leur date d'expiration.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1176, - "avgSuccessRate": 100, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Email Verifier": { - "tool_description": "A simple API to verify email addresses in making sure they are valid and real, for ensuring you are sending emails to actual people!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 6, - "avgSuccessRate": 100, - "popularityScore": 7.5, - "__typename": "Score" - } - }, - "InsafEl": { - "tool_description": "To Send Sms", - "score": { - "avgServiceLevel": 100, - "avgLatency": 342, - "avgSuccessRate": 0, - "popularityScore": 0, - "__typename": "Score" - } - }, - "AgroFitData": { - "tool_description": "API com informaçÔes sobre agrotoxicos fitossanitarios aprovados pelo MAPA", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1980, - "avgSuccessRate": 73, - "popularityScore": 8, - "__typename": "Score" - } - }, - "Company Domain Finder": { - "tool_description": "Finds the matching domain given a company name", - "score": { - "avgServiceLevel": 99, - "avgLatency": 2772, - "avgSuccessRate": 99, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "5ka_Porocila": { - "tool_description": "Group books sold by authors to generate a one email report per author.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 759, - "avgSuccessRate": 100, - "popularityScore": 6.3, - "__typename": "Score" - } - }, - "Shwe 2D Live Api": { - "tool_description": "Myanmar 2D ,Thai Stock ,Set", - "score": { - "avgServiceLevel": 90, - "avgLatency": 6631, - "avgSuccessRate": 90, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "test apizzz": { - "tool_description": "qwe", - "score": null - }, - "DL Format Validation": { - "tool_description": "Confirms that the submitted driver’s license formatting is the correct format as stipulated for the submitted state.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 388, - "avgSuccessRate": 0, - "popularityScore": 0, - "__typename": "Score" - } - }, - "French CNIT / Type Mime API": { - "tool_description": "Lookup French CNIT / Mime Type values ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3007, - "avgSuccessRate": 100, - "popularityScore": 6.7, - "__typename": "Score" - } - }, - "Validate VAT": { - "tool_description": "Verifies EU & GB VAT Numbers and gets company information, and address details. Extended documentation can be found here: https://www.apitier.com/api-catalogue/validate-vat-api", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1366, - "avgSuccessRate": 77, - "popularityScore": 7.2, - "__typename": "Score" - } - }, - "Zoopla_v2": { - "tool_description": "This API helps to query for properties for rent, sale in UK to create a real estate site/application such as zoopla.com", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3477, - "avgSuccessRate": 100, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "OFAC Service": { - "tool_description": "Searches an entity from OFAC's Sanctions List with fuzzy logic on its name search field to look for potential matches on the Specially Designated Nationals (SDN) List and on its Non-SDN Consolidated Sanctions List.", - "score": { - "avgServiceLevel": 94, - "avgLatency": 879, - "avgSuccessRate": 19, - "popularityScore": 1.9, - "__typename": "Score" - } - }, - "Web scraping and proxy": { - "tool_description": "Scrape and extract data from any website, with powerful options like proxy / browser customization, CAPTCHA handling, ad blocking, and more.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 503, - "avgSuccessRate": 78, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "Passbook": { - "tool_description": "PassSlot is a free service for developers that aims to make Passbook integration easy – Really easy.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 347, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "print": { - "tool_description": "some print api", - "score": { - "avgServiceLevel": 100, - "avgLatency": 710, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "test_API_v2": { - "tool_description": "test", - "score": { - "avgServiceLevel": 0, - "avgLatency": 127197, - "avgSuccessRate": 0, - "popularityScore": 0, - "__typename": "Score" - } - }, - "dxjewof": { - "tool_description": "fewfwe", - "score": null - }, - "111": { - "tool_description": "fdfd", - "score": { - "avgServiceLevel": 50, - "avgLatency": 2039, - "avgSuccessRate": 50, - "popularityScore": 5.5, - "__typename": "Score" - } - }, - "eSignly": { - "tool_description": "eSignly revolutionary electronic signatures are transforming the way industries which include, but not limited to insurance, healthcare, government , real estate and finance and IT firms sign different documents. Now, it is possible to reduce those everyday hefty tasks of managing piles of papers or documents. With the smartest tool of signing, it is easy to prepare, send, share and produce any document in seconds. Esignly offers the most reliable e-signature solution to diverse industries an...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 370, - "avgSuccessRate": 100, - "popularityScore": 7.5, - "__typename": "Score" - } - }, - "token2go": { - "tool_description": "It is a RESTful API intended to generate unique and verifiable tokens (cryptographic id codes). Use this tokens as an URL parameter in your marketing or customer service campaigns to validate requests that occurs in a timely period previously defined by your system", - "score": { - "avgServiceLevel": 100, - "avgLatency": 409, - "avgSuccessRate": 25, - "popularityScore": 1.3, - "__typename": "Score" - } - }, - "CloudWays_v2": { - "tool_description": "CloudWays", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1083, - "avgSuccessRate": 100, - "popularityScore": 7.4, - "__typename": "Score" - } - }, - "mgs": { - "tool_description": "My local gun shop", - "score": { - "avgServiceLevel": 100, - "avgLatency": 807, - "avgSuccessRate": 100, - "popularityScore": 7.8, - "__typename": "Score" - } - }, - "EU VAT Number Checker": { - "tool_description": "The EU VAT Number Validation API verifies the format and validity of EU VAT numbers and retrieves company information such as name, address, country code and VAT number. It returns a detailed response.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1266, - "avgSuccessRate": 100, - "popularityScore": 8, - "__typename": "Score" - } - }, - "ev": { - "tool_description": "test", - "score": { - "avgServiceLevel": 100, - "avgLatency": 4443, - "avgSuccessRate": 100, - "popularityScore": 7.4, - "__typename": "Score" - } - }, - "Syamsul Bachri": { - "tool_description": "Hallo", - "score": null - }, - "Quickbooks": { - "tool_description": "Quickbooks API", - "score": { - "avgServiceLevel": 0, - "avgLatency": 407, - "avgSuccessRate": 0, - "popularityScore": 0, - "__typename": "Score" - } - }, - "Custom QR Code": { - "tool_description": "Design QR Code with custom colors for Background, Foreground, eyes and eyeballs. Choose QR Code Designs for QR Code body, eyes and eyeballs. Display your logo on QR Code.", - "score": { - "avgServiceLevel": 95, - "avgLatency": 3627, - "avgSuccessRate": 63, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "test_v20": { - "tool_description": "teset", - "score": { - "avgServiceLevel": 0, - "avgLatency": 127306, - "avgSuccessRate": 0, - "popularityScore": 0, - "__typename": "Score" - } - }, - "AppraisalQC": { - "tool_description": "Automated Appraisal Validation process by PropMix using Artificial Intelligence – machine learning and image recognition", - "score": { - "avgServiceLevel": 100, - "avgLatency": 566, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "Norwegian License Plate API": { - "tool_description": "Lookup vehicle details for a Norwegian vehicle from it's number plate. ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2848, - "avgSuccessRate": 100, - "popularityScore": 5.5, - "__typename": "Score" - } - }, - "360 Business Tool": { - "tool_description": "360 Business Tool er et dansk designet og udviklet CRM & virksomhedssystem.\r\n\r\nMĂ„lrettet til smĂ„ og mellemstore virksomheder.\r\n\r\nHostet i skyen med oppetidsgaranti og fuld backup.\r\n\r\nUdviklet for at Ăžge produktiviteten i virksomheden ved at samle alle nĂždvendige funktioner i Ă©t system.\r\n\r\nBusiness in a box\r\n\r\n360 Business Tool er en komplet lĂžsning, der indeholder alle de funktioner, en virksomhed har brug for.\r\n\r\nCRM, tilbudsgivning, budgettering, time/sag, tidsregistrering, fakturering, marketing, nyhedsbreve og meget mere.\r\n\r\n360 Business Tool integrerer til dit eksisterende Ăžkonomisystem, kalender, email, lager, lĂžnsystem, bank og meget mere.\r\n\r\nVi tilbyder et SOAP baseret API som kan bruges du bla:\r\n‱Uploade bilag\r\n‱Checke en kundes saldo \r\n‱UdfĂžre kreditcheck\r\n‱Registrere tid", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1200, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Realtor Data API for Real Estate": { - "tool_description": "Data API for Realtor USA\nYou can use this API to get all the Realtor Property data, Realtor Agents data and Realtor School data.\nCurrently it is from Realtor USA only.\nContact me at: vuesdata@gmail.com or visit https://www.vuesdata.com for building custom spiders or custom requests.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2063, - "avgSuccessRate": 100, - "popularityScore": 7.3, - "__typename": "Score" - } - }, - "Testing out Sharing w/ Rachael": { - "tool_description": "Rachael is awesome!", - "score": { - "avgServiceLevel": 0, - "avgLatency": 0, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "test1": { - "tool_description": "test", - "score": null - }, - "DaysAPI": { - "tool_description": "An API that will count business days including holidays for the US.", - "score": { - "avgServiceLevel": 0, - "avgLatency": 302, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "Google Play": { - "tool_description": "This is an API that retrieves information from Google API. You can search for applications, retrieve the information from developers, get reviews, retrieve permissions any many more different things directly from the API.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3403, - "avgSuccessRate": 54, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "Proxy Detection": { - "tool_description": "Proxy Rotator is the world's first enterprise grade proxy ip rotation service. HTTPS proxies on a combination of over 26 million Residential, Private and Public Exclusive IP's. It's Easy to Use, Reliable and used by 1000's of Businesses daily.\r\n\r\nThe Proxy Detection API can detect if an IP address is, or has ever been, related to a proxy. With a database of over 26,000,000 worldwide proxies our probability of detecting a proxy based upon the ip address is unmatched. This API is useful for many scenario's such as reducing fraud on e-commerece sites, protecting your site from automated hacking attempts (XSS,SQLi,brute force), Prevent promotional offer abuse (multiple signups), limiting access on proxy IPs (prevent password / email changes) and many more uses!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 972, - "avgSuccessRate": 100, - "popularityScore": 5.6, - "__typename": "Score" - } - }, - "TEXTKING Translation": { - "tool_description": "The TEXTKING Translation API is a RESTful web service to access and manage translation projects on https://www.textking.com. You can use the translation API to integrate high quality human translation into your own software and streamline your translation workflow.", - "score": { - "avgServiceLevel": 95, - "avgLatency": 1305, - "avgSuccessRate": 29, - "popularityScore": 1.7, - "__typename": "Score" - } - }, - "Giay tay nam": { - "tool_description": "GiĂ y tĂąy nam", - "score": { - "avgServiceLevel": 100, - "avgLatency": 718, - "avgSuccessRate": 100, - "popularityScore": 6.5, - "__typename": "Score" - } - }, - "Sapling Intelligence": { - "tool_description": "NLP API for Spelling, Grammar, Semantic Search", - "score": { - "avgServiceLevel": 100, - "avgLatency": 373, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "Email Validation and Verification": { - "tool_description": "Improve your delivery rate and clean your email lists with our industry-leading email verification API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 765, - "avgSuccessRate": 85, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "enrich": { - "tool_description": "We are the leading enrichment API for businesses around the world.\n\nEnrich your CRM contacts with up-to-date business information:\nperson name, company, job position, education.\n\nWe charge credits only if necessary results are found.\n\nOur crawlers check in real-time many sources including LinkedIn, Facebook, Twitter, Indeed, Glassdoor, ZipRecruiter, BeBee and other platforms.\n\nWe provide links to the following social networks: Facebook, TikTok, Instagram, Snapchat, Twitter, LinkedIn, Youtube ...", - "score": { - "avgServiceLevel": 92, - "avgLatency": 114798, - "avgSuccessRate": 40, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "Real Estate": { - "tool_description": "Real Estate and commercial property for sale and for rent in the United States", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2331, - "avgSuccessRate": 100, - "popularityScore": 7.7, - "__typename": "Score" - } - }, - "Sigma Scooters": { - "tool_description": "Electric Scooter rental in Athens", - "score": null - }, - "Company Enrichment": { - "tool_description": "Enrich any domain or email with accurate company data, including headcount, location and industry.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 476, - "avgSuccessRate": 79, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "GST Return Status": { - "tool_description": "GST Return Filing Status for India", - "score": { - "avgServiceLevel": 87, - "avgLatency": 437, - "avgSuccessRate": 87, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "SignNow": { - "tool_description": "Deliver a seamless eSignature experience from your website, CRM, or custom app by integrating the signNow REST API. Simplify the signing and management of documents online, make your teams more productive, and delight customers with intuitive and easy-to-use electronic signatures. Create branded eSignature workflows within your application. eSign and send documents for signature, create reusable templates, share documents and templates via signing links, track the signing status, and more. T...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 679, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "NY times - Archive ": { - "tool_description": "Newyork times archive API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 597, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "ROAC": { - "tool_description": "API ROAC", - "score": { - "avgServiceLevel": 100, - "avgLatency": 10, - "avgSuccessRate": 100, - "popularityScore": 6, - "__typename": "Score" - } - }, - "cloudlayer.io": { - "tool_description": "Generate PDFs, Images, and more from HTML and URLs", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3000, - "avgSuccessRate": 66, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Stamping": { - "tool_description": "Blockchain for active or evidence digital register ", - "score": null - }, - "LambdaTest Screenshot": { - "tool_description": "LambdaTest Automated Screenshot API", - "score": null - }, - "MBOX Migrator": { - "tool_description": "MBOX Migrator is an state-of-the-art application used to convert MBOX emails to 20+ file formats & email clients. You can get it from here: https://www.recoverytools.com/mbox/migrator/", - "score": null - }, - "Git Pager": { - "tool_description": "Easility perform CRUD (Create, Read, Update and Delete) operations on any Github repo!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 733, - "avgSuccessRate": 100, - "popularityScore": 7.8, - "__typename": "Score" - } - }, - "Real Estate USA": { - "tool_description": "The API to search properties for sale or rent in USA", - "score": { - "avgServiceLevel": 96, - "avgLatency": 576, - "avgSuccessRate": 59, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "sdfsdf_v2": { - "tool_description": "sdfsdf", - "score": null - }, - "newnew": { - "tool_description": "fds", - "score": { - "avgServiceLevel": 100, - "avgLatency": 623, - "avgSuccessRate": 100, - "popularityScore": 7.6, - "__typename": "Score" - } - }, - "Freeplanhardlimitexternal": { - "tool_description": "Freeplanhardlimitexternal", - "score": { - "avgServiceLevel": 100, - "avgLatency": 587, - "avgSuccessRate": 45, - "popularityScore": 6.3, - "__typename": "Score" - } - }, - "LimouCloud": { - "tool_description": "LimouCloud APIs", - "score": { - "avgServiceLevel": 100, - "avgLatency": 498, - "avgSuccessRate": 8, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "aug13": { - "tool_description": "fdf", - "score": { - "avgServiceLevel": 100, - "avgLatency": 905, - "avgSuccessRate": 100, - "popularityScore": 7, - "__typename": "Score" - } - }, - "NPS-Net Promoter Score": { - "tool_description": " This API allows rapidly implement one of the most well known and accepted KPI to measure customer satisfaction and loyalty: Net Promoter ScoreÂź, or NPSÂź. Create your survey templates and request them from wherever your applications are. Easily get the NPS for an Organization. We also provide a word cloud mechanism and sentiment analysis to analyse your customers feedback! Try it . If you need an additional feature, feel free to consult us, because we are glad to serve if we can!!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 605, - "avgSuccessRate": 13, - "popularityScore": 1.6, - "__typename": "Score" - } - }, - "Codester API": { - "tool_description": "With this API, you can get information about items such as prices, get a specific seller's items and so on", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2304, - "avgSuccessRate": 100, - "popularityScore": 7.7, - "__typename": "Score" - } - }, - "BoldSign": { - "tool_description": "BoldSign offers a wide range of REST APIs that allow you to seamlessly integrate the complete sending and signing process within your applications.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 192, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "test2": { - "tool_description": "test2", - "score": { - "avgServiceLevel": 100, - "avgLatency": 485, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Wordpress Checker": { - "tool_description": "RESTful API that allows you to check if a website is based on WordPress and returns the version of WordPress if it is", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2319, - "avgSuccessRate": 75, - "popularityScore": 6.8, - "__typename": "Score" - } - }, - "dathoang": { - "tool_description": "tiendat", - "score": { - "avgServiceLevel": 0, - "avgLatency": 596, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "demo": { - "tool_description": "demo testing api", - "score": null - }, - "SuperSaaS - Online Bookings and Appointment Scheduling": { - "tool_description": "The SuperSaaS API provides calendar services that can be used to add online booking and scheduling functionality to an existing website or CRM software.", - "score": null - }, - "B2BHint": { - "tool_description": "B2BHint is a business tool that provides access to official registry data on companies and the people associated with them. With B2BHint, everyone can easily search and explore information on companies, making informed decisions and growing their business.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1189, - "avgSuccessRate": 64, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "PTL": { - "tool_description": "receive user", - "score": { - "avgServiceLevel": 100, - "avgLatency": 7, - "avgSuccessRate": 100, - "popularityScore": 7.6, - "__typename": "Score" - } - }, - "ShortLink": { - "tool_description": "The URL Shortener To Create Shortened links With Ease:)", - "score": null - }, - "BogieApis": { - "tool_description": "qqwerty", - "score": { - "avgServiceLevel": 100, - "avgLatency": 170, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "Business Days / Work Days Calculator ": { - "tool_description": "Having trouble counting workdays or converting from business days into calendar days? \nUse our smart calculator API made just for that! Business Days Calculator | Workdays Calculator | Banking Days | Working Days.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 442, - "avgSuccessRate": 100, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "Slot and Betting Games": { - "tool_description": "API games for your online casino. ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 470, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "HRIS": { - "tool_description": "HRIS APIs for Personio, BambooHR and BobHR.", - "score": { - "avgServiceLevel": 83, - "avgLatency": 1700, - "avgSuccessRate": 57, - "popularityScore": 7.4, - "__typename": "Score" - } - }, - "My API 12345": { - "tool_description": "YUI", - "score": null - }, - "IronWifi": { - "tool_description": "IronWifi offers a powerful Application Program Interface (API) that can be used to integrate IronWifi RADIUS authentication services with user and guest management systems.\r\n\r\nThe API framework allows your platform to interact with the network access control platform provided by IronWifi.\r\n\r\nWith the IronWifi API, user management systems can dynamically update the RADIUS server to instantly create or delete users in the IronWifi database, and you can set or modify access rights.\r\n\r\nWhen a user attempts to access the network, IronWifi uses the updated credentials as the basis for permitting activities on the network.\r\n\r\nWhen a user attempts to access a WiFi network, the Access Point can send a RADIUS request to IronWifi RADIUS. IronWifi authenticates the user based on the updated credentials.\r\n\r\nTo receive technical assistance with your IronWifi API project, or to discuss any advanced requirements that you may have, please contact us at support@ironwifi.com, or call +1 (800) 963-6221.", - "score": { - "avgServiceLevel": 94, - "avgLatency": 415, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Beeg": { - "tool_description": "beeg için", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1303, - "avgSuccessRate": 100, - "popularityScore": 6.8, - "__typename": "Score" - } - }, - "Pulsar": { - "tool_description": "Teste Pulsar", - "score": { - "avgServiceLevel": 100, - "avgLatency": 13, - "avgSuccessRate": 100, - "popularityScore": 6.7, - "__typename": "Score" - } - }, - "CLLAX": { - "tool_description": "Cllax - Advice, resources and tools for starting a small business. Information on getting finance, business planning, hiring, IT, marketing and much more. ( https://cllax.com/ )", - "score": null - }, - "Scanily": { - "tool_description": "Scanily is a service that offers sophisticated shipping label recognition through our API interface. Our API's have been optimized on a wide array of shipping label variations to provide the highest accuracy possible for extracting shipping data from labels. Scaily uses a \"best attempt\" to try and recognize key data points like tracking numbers as well as order numbers and addresses. In scenarios where Scanily can not detect key data point's like a tracking number with confidence, all of the ...", - "score": { - "avgServiceLevel": 83, - "avgLatency": 671, - "avgSuccessRate": 83, - "popularityScore": 7.5, - "__typename": "Score" - } - }, - "Makini_v2": { - "tool_description": "The universal CMMS API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1288, - "avgSuccessRate": 100, - "popularityScore": 5.1, - "__typename": "Score" - } - }, - "testapi_v2": { - "tool_description": "as", - "score": { - "avgServiceLevel": 100, - "avgLatency": 8, - "avgSuccessRate": 100, - "popularityScore": 7.7, - "__typename": "Score" - } - }, - "E2open, LLC.": { - "tool_description": "E2open is a cloud-based, real-time operating platform that orchestrates the global supply chains of the world's best-known brands. ", - "score": null - }, - "Market Intelligence by Automata": { - "tool_description": "The Market Intelligence API by Automata provides two endpoints. The Company Lookalikes endpoint enables users to input a company website and receive a list of similar companies based on text analysis and company firmographics. The Company Search endpoint enables users to find the most relevant companies according to a list of input search terms.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1661, - "avgSuccessRate": 92, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "OPA-test": { - "tool_description": "Test API for OPA", - "score": { - "avgServiceLevel": 100, - "avgLatency": 353, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Find any IP address or Domain Location world wide": { - "tool_description": "Free IP Geo Location API with 100% accurate geo information of IP address or Domain name like city latitude, longitude, zipcode, state/province, country, country codes, country flag, currency, dialing code. timezone, total number of cities & states/province in country, continent code, continent name and many more details in JSON format. You can also test our API online by this IP lookup tool: https://ipworld.info/iplocator", - "score": { - "avgServiceLevel": 100, - "avgLatency": 536, - "avgSuccessRate": 98, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "Top brand names & valuation api": { - "tool_description": "With data from over 100 companies, you can find company data and valuation in seconds. Whether it's just company data or an evaluation of the company's performance, this is the ultimate resource for rich information.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 487, - "avgSuccessRate": 100, - "popularityScore": 7.8, - "__typename": "Score" - } - }, - "HelloRold": { - "tool_description": "HelloWorld", - "score": { - "avgServiceLevel": 100, - "avgLatency": 120, - "avgSuccessRate": 100, - "popularityScore": 7.1, - "__typename": "Score" - } - }, - "Business Card Maker": { - "tool_description": "Easily create your own business cards in seconds, using high-quality professional designs, then save them as PNG, JPG, HTML, or JSON.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 953, - "avgSuccessRate": 100, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "Flowcode": { - "tool_description": "Check out our new Developer Portal and docs: https://www.flowcode.com/developer-portal", - "score": { - "avgServiceLevel": 100, - "avgLatency": 305, - "avgSuccessRate": 100, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "Proxy List": { - "tool_description": "Returns list of HTTP, HTTPS, SOCKS4, SOCKS5 proxies. Checks proxies each minute. Finds more than 7000 working proxies from multiple sources. ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 340, - "avgSuccessRate": 100, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "EnsureFlight": { - "tool_description": "Ensure Flight booking", - "score": null - }, - "Global Email V4": { - "tool_description": "Easily verify, check or lookup email. Global Email JSON API provides real-time email mailbox checking including domain-specific logic, SMTP commands and other proprietary mechanisms to validate that inboxes are live using a cached inbox validation database of known good and bad emails.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 142, - "avgSuccessRate": 100, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "myBooky - DEMO": { - "tool_description": "Demo version of lightweight booking API ", - "score": { - "avgServiceLevel": 96, - "avgLatency": 4065, - "avgSuccessRate": 17, - "popularityScore": 1.8, - "__typename": "Score" - } - }, - "SaaS Softwares and Features API": { - "tool_description": "This API allows you to query SaaS software, products and tools and their meta data such as description, logo, video url, and the features they offer. You can use the name of the feature(s) to query. For example you can answer questions like, \"Get all Email Markeitng software\".", - "score": { - "avgServiceLevel": 100, - "avgLatency": 863, - "avgSuccessRate": 100, - "popularityScore": 7.1, - "__typename": "Score" - } - }, - "ZohoCreator": { - "tool_description": "All Zoho Creator Rest Methods", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1039, - "avgSuccessRate": 57, - "popularityScore": 6.6, - "__typename": "Score" - } - }, - "Yardillo": { - "tool_description": "No code API orchestration workflow", - "score": { - "avgServiceLevel": 86, - "avgLatency": 1512, - "avgSuccessRate": 23, - "popularityScore": 1.5, - "__typename": "Score" - } - }, - "QuizApp": { - "tool_description": "Mock API for the Quiz Application", - "score": { - "avgServiceLevel": 25, - "avgLatency": 299, - "avgSuccessRate": 25, - "popularityScore": 1.7, - "__typename": "Score" - } - }, - "Inkit": { - "tool_description": "Generate documents automatically, secure PDFs, and centralize document retention.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 239, - "avgSuccessRate": 0, - "popularityScore": 0, - "__typename": "Score" - } - }, - "Print your own labels and stickers": { - "tool_description": "Help your customers print their own labels and stickers, from your own website and under your own branding.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 446, - "avgSuccessRate": 100, - "popularityScore": 7.3, - "__typename": "Score" - } - }, - "Invoices Generator": { - "tool_description": "Generate invoices in pdf format quickly through a simple API", - "score": { - "avgServiceLevel": 93, - "avgLatency": 10306, - "avgSuccessRate": 66, - "popularityScore": 9, - "__typename": "Score" - } - }, - "Logo": { - "tool_description": "Find the Logo of each company in real-time. Using our logo finder service is entirely free with attribution. However, we require a link back to companyurlfinder.com on any page the service is used. Just use the following format to embed logos in your systems: ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1006, - "avgSuccessRate": 72, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "GeoSpark": { - "tool_description": "Location tracking simplified.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 713, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "XLSX Template": { - "tool_description": "https://xlsx-template.kurukona.net/\nTemplate + JSON ➞ XLSX or PDF.\nTemplate base excel file and pdf generator.\nYou can create xlsx document or pdf file with template and json data.\n\n![img1](https://xlsx-template.kurukona.net/rapidapi/img/xlsx-tempate-engine-generate-img.png)", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2095, - "avgSuccessRate": 99, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "Intelligent Automation (OCR, AI,...)": { - "tool_description": "Looking for an intelligent data capture solution? With contract.fit you can easily apply state-of-the-art machine learning to all your automation needs (for invoice extraction, receipts, etc.)", - "score": { - "avgServiceLevel": 100, - "avgLatency": 419, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "ucinema": { - "tool_description": "fire for movie website purposes", - "score": null - }, - "fffvfv": { - "tool_description": "fvfvfv", - "score": { - "avgServiceLevel": 100, - "avgLatency": 23, - "avgSuccessRate": 100, - "popularityScore": 6.5, - "__typename": "Score" - } - }, - "Vizor Ads": { - "tool_description": "Welcome to VizorAds. APIs for Converting Images, Products and Documents into NFT or Smart Contracts using QR codes. Ready for Web3. ", - "score": { - "avgServiceLevel": 95, - "avgLatency": 697, - "avgSuccessRate": 51, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "fomoAPI": { - "tool_description": "The #1 Social Proof API, Boost Your Conversions", - "score": { - "avgServiceLevel": 96, - "avgLatency": 742, - "avgSuccessRate": 96, - "popularityScore": 8.2, - "__typename": "Score" - } - }, - "OptLog.co - Optimize Anything": { - "tool_description": "OptLog is a software suite for a black-box global optimization engine for real-world metric optimization. The main advantage of OptLog is scalability, simplicity and continuity of serving. A function can be optimised at any time with any parameters without worrying about the optimizer state - OptLog does it for you!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2730, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "Address to Image": { - "tool_description": "Shows an image of an address, using Google Street View.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 8667, - "avgSuccessRate": 100, - "popularityScore": 7.1, - "__typename": "Score" - } - }, - "👋 Onboarding Project": { - "tool_description": "This Project is created by the onboarding process for laytt-Default", - "score": { - "avgServiceLevel": 78, - "avgLatency": 424, - "avgSuccessRate": 38, - "popularityScore": 8.2, - "__typename": "Score" - } - }, - "Testing_v3": { - "tool_description": "test api", - "score": { - "avgServiceLevel": 8, - "avgLatency": 643, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "Ghana Food Recipe Api": { - "tool_description": "Ghana has a rich culture of food,with 1000s of food recipes. This api will enable both local and international developers build apps tailored around this rich culture of food or for developers building recipe apps specific to countries.More recipe to be added. Contact the developer if you love to help. ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 888, - "avgSuccessRate": 99, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Recipe_v3": { - "tool_description": "Recipe description", - "score": null - }, - "Bespoke Diet Generator": { - "tool_description": "Our API generates a complete meal plan that is specific to the nutrition counseling world. We create fully detailed, personalized meal plans with specific ingredients / quantities and little cooking skill required. For better flexibility, our ingredient replacement algorithm creates a template where users can adapt their menu even more to fit their desires.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 225, - "avgSuccessRate": 79, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "Recipe_v2": { - "tool_description": "Creative recipes. The API provides access to 231,637 creative recipes from all cuisines around the world.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1512, - "avgSuccessRate": 100, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "The Cocktail DB": { - "tool_description": "Cocktail recipes with high-quality images stored on AWS S3 for fast accessibility. Easy to use!\nCategory: Food", - "score": { - "avgServiceLevel": 100, - "avgLatency": 296, - "avgSuccessRate": 99, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "Recipe Search and Diet": { - "tool_description": "Since we understand the recipe – ingredients, diets, allergies, nutrition, taste, techniques & more. We can connect your users with the best recipes available for their unique food preferences.\r\n\r\n\r\nSearch over 2 million recipes\r\n\r\n- Search our large recipe database. We add new sites and recipes continuously.\r\n- You will also get access to over 5000 top web recipe sources\r\n- Our search algorithm returns the most relevant recipes from the most popular and best recipes sources on the web. We or...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1134, - "avgSuccessRate": 100, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Nutrition by API-Ninjas": { - "tool_description": "Natural language API to extract nutrition data from any text. See more info at https://api-ninjas.com/api/nutrition.", - "score": { - "avgServiceLevel": 93, - "avgLatency": 2126, - "avgSuccessRate": 78, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "restaurant": { - "tool_description": "Created from VS Code.", - "score": { - "avgServiceLevel": 70, - "avgLatency": 1812, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "pizzaallapala": { - "tool_description": "api fake to test frontend", - "score": { - "avgServiceLevel": 100, - "avgLatency": 10, - "avgSuccessRate": 100, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Burgers Hub": { - "tool_description": "This api returns kinds of burgers with there name, image, price, ingeridients etc", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1301, - "avgSuccessRate": 100, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "MyNewTestApi": { - "tool_description": "My new test API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 8, - "avgSuccessRate": 100, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "Ordering": { - "tool_description": "Ordering Stack - Ordering API. Provides functionalities for order lifecycle. Create new order, add items, remove items, abandon order...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 969, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "Worldwide Recipes": { - "tool_description": "Over 2 MILLION recipes, nutrition, ingredients, users and reviews worldwide.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2389, - "avgSuccessRate": 96, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "Beverages and Desserts": { - "tool_description": "This api returns various kinds of Beverages and Desserts", - "score": { - "avgServiceLevel": 96, - "avgLatency": 33032, - "avgSuccessRate": 96, - "popularityScore": 9, - "__typename": "Score" - } - }, - "OKTOSHOP": { - "tool_description": "OKTOSHOP GET ITENS", - "score": null - }, - "Recipe Prediction": { - "tool_description": "Input base64 image and get recipe predictions", - "score": null - }, - "The Vegan Recipes DB": { - "tool_description": "Vegan Food Recipes with high-quality images stored on AWS S3 for fast accessibility. Easy to use!\nCategory: Food", - "score": { - "avgServiceLevel": 100, - "avgLatency": 255, - "avgSuccessRate": 97, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "The Mexican Food DB": { - "tool_description": "Mexican Food Recipes with high-quality images stored on AWS S3 for fast accessibility. Easy to use!\nCategory: Food", - "score": { - "avgServiceLevel": 100, - "avgLatency": 316, - "avgSuccessRate": 98, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "Store Groceries": { - "tool_description": "Access the biggest groceries store in the UK with over 50000 items as well as promotions", - "score": { - "avgServiceLevel": 95, - "avgLatency": 5625, - "avgSuccessRate": 90, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "Recetas en español": { - "tool_description": "Algunas recetas para tu sitio y en español", - "score": { - "avgServiceLevel": 91, - "avgLatency": 1670, - "avgSuccessRate": 91, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "favoriteFoodApi": { - "tool_description": "This Api Holds some of the Favorite Dishes I fancy from Cameroon", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2174, - "avgSuccessRate": 100, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "Caterer Groceries Intel": { - "tool_description": "Access more than 24000 groceries data, suitable for caterers", - "score": { - "avgServiceLevel": 100, - "avgLatency": 16652, - "avgSuccessRate": 100, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "Generate a recipe based on an ingredient": { - "tool_description": "Generate a health recipe based on the ingredients you specify in the request", - "score": { - "avgServiceLevel": 96, - "avgLatency": 20033, - "avgSuccessRate": 96, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "CamRest676": { - "tool_description": "CamRest service por restaurant reservation", - "score": { - "avgServiceLevel": 100, - "avgLatency": 654, - "avgSuccessRate": 100, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "Generic Food_v2": { - "tool_description": "Generic foods and their scientific names", - "score": { - "avgServiceLevel": 100, - "avgLatency": 811, - "avgSuccessRate": 42, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "Auth": { - "tool_description": "OAuth2 Authorization for Ordering Stack API. Generate token, verify token etc.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1033, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "KFC Chickens": { - "tool_description": "Provides you KFC dishes", - "score": { - "avgServiceLevel": 100, - "avgLatency": 6626, - "avgSuccessRate": 100, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "Cocktails": { - "tool_description": "The cocktail API with over 300 Cocktails! Get Cocktail and the ingredients. Get a random one or search! ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 522, - "avgSuccessRate": 100, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Payment": { - "tool_description": "Ordering Stack Payment API - provides payments operations for orders. There is one unified API for handling payments with many payment gateways.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1081, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "The Birthday Cake DB": { - "tool_description": "Birthday cake recipes with high-quality images stored on AWS S3 for fast accessibility. Easy to use!\nCategory: Food", - "score": { - "avgServiceLevel": 100, - "avgLatency": 275, - "avgSuccessRate": 97, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "betaRecipes": { - "tool_description": "Predict recipes based on input pictures", - "score": { - "avgServiceLevel": 0, - "avgLatency": 606, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "The Fork The Spoon": { - "tool_description": "This API helps to query the best restaurant and meal around the world to create a traveling site/application such as thefork.com", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3981, - "avgSuccessRate": 100, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "Fast Food Restaurants USA - TOP 50 Chains": { - "tool_description": "\nOur Fast Food Restaurants API provides you with a comprehensive database of the most popular fast food chains, allowing you to access vital information about their locations, hours and web presence.\n\nSign up now to get access!\n", - "score": { - "avgServiceLevel": 97, - "avgLatency": 403, - "avgSuccessRate": 91, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Halal Korean Restaurants API": { - "tool_description": "", - "score": { - "avgServiceLevel": 96, - "avgLatency": 12856, - "avgSuccessRate": 96, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "Beers List": { - "tool_description": "A list of beers from many European countries", - "score": { - "avgServiceLevel": 100, - "avgLatency": 469, - "avgSuccessRate": 100, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "ComfyFood": { - "tool_description": "This is an API from ComfyFood's website", - "score": { - "avgServiceLevel": 100, - "avgLatency": 8, - "avgSuccessRate": 100, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "Food Nutrional Data": { - "tool_description": "Access thousands of food ingredients and their nutritional information", - "score": { - "avgServiceLevel": 90, - "avgLatency": 1510, - "avgSuccessRate": 90, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Recipe Finder": { - "tool_description": "This recipe API allows users to search for recipes by ingredient. It returns a JSON response with the matching recipes, including the name, list of ingredients, and instructions.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3664, - "avgSuccessRate": 88, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "Yummly": { - "tool_description": "API to query data about recipe, plan, ingredients, etc... as on official site", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3045, - "avgSuccessRate": 100, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Cocktail by API-Ninjas": { - "tool_description": "Search thousands of cocktail recipes. See more info at https://api-ninjas.com/api/cocktail.", - "score": { - "avgServiceLevel": 97, - "avgLatency": 494, - "avgSuccessRate": 86, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "vegan-recipes-api": { - "tool_description": "An API that returns links to vegan recipes", - "score": null - }, - "FoodieFetch": { - "tool_description": "FoodieFetch is a new API that allows users to fetch menu locations and ratings from popular food delivery platforms like Swiggy and soon Zomato. Created using Go and available on RapidAPI, FoodieFetch is the perfect solution for developers looking to add food-related data to their applications. Give it a try today and bring a little flavor to your project!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1750, - "avgSuccessRate": 90, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Viva City Documentation": { - "tool_description": "Viva City APIs for Venue & Menu", - "score": { - "avgServiceLevel": 100, - "avgLatency": 892, - "avgSuccessRate": 91, - "popularityScore": 8.2, - "__typename": "Score" - } - }, - "Recipe_v4": { - "tool_description": "REST-based recipe and search", - "score": { - "avgServiceLevel": 100, - "avgLatency": 344, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "Veggie Me": { - "tool_description": "An API for aggregating vegetarian restaurants from Yelp from London, Amsterdam, Berlin, Stockholm, Barcelona and Paris.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 742, - "avgSuccessRate": 0, - "popularityScore": 0, - "__typename": "Score" - } - }, - "Recipe Generator": { - "tool_description": "Uses AI to generate a unique recipe based on a provided name and a list of ingredients", - "score": { - "avgServiceLevel": 100, - "avgLatency": 23809, - "avgSuccessRate": 100, - "popularityScore": 6.7, - "__typename": "Score" - } - }, - "Keto Diet": { - "tool_description": "Dataset of over 450 Ketogenic diet recipes in over 10 categories from Breakfast to Dinner. Check out encurate.app to manage content on your mobile apps. Contact to feature your app on encurate.app website.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1023, - "avgSuccessRate": 100, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Cheeses": { - "tool_description": "Information about cheeses.\nEnpoint for image will be provided.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 336, - "avgSuccessRate": 90, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "Tasty": { - "tool_description": "API to query data about recipe, plan, ingredients, etc... as on official site", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2507, - "avgSuccessRate": 100, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "Edamam Nutrition Analysis": { - "tool_description": "The Nutrition Analysis API and Database uses Natural Language Processing and semantically structured data. ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 746, - "avgSuccessRate": 92, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "DietaGram": { - "tool_description": "Find nutrition facts by food name or by UPC (barcode). API supports English, Russian, Polish, Spanish, Bulgarian, Ukrainian", - "score": { - "avgServiceLevel": 100, - "avgLatency": 917, - "avgSuccessRate": 100, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Cookr Recipe Parser": { - "tool_description": "Powerful AI recipe parser. Extract, parse and enhance recipe data in JSON format from any recipe URL. Cookr API uses AI to detect or detrimine and then curate cuisines, categories, tags etc even if none are present on the original recipe.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1277, - "avgSuccessRate": 100, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "Low Carb Recipes": { - "tool_description": "Highly flexible search over thousands of low-carb/keto recipes with rich nutrients information.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 770, - "avgSuccessRate": 96, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Pizza and Desserts": { - "tool_description": "decent collection of pizzas and desserts for your next food app project..", - "score": { - "avgServiceLevel": 93, - "avgLatency": 17568, - "avgSuccessRate": 93, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "BBC Good Food API": { - "tool_description": "Fetch recipies from search keyword, Author profile + recipes, collections recipes..\n\nNote: The API is deployed on basic plan server after the first subscriber I will upgrade the plan currently server go to sleep and first request wake up the server it takes 3 to 5 minutes.After 30 min of inactivity server go to sleep.", - "score": { - "avgServiceLevel": 66, - "avgLatency": 19961, - "avgSuccessRate": 66, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "PedidosYa": { - "tool_description": "Obtain information from pedidosya.com", - "score": { - "avgServiceLevel": 99, - "avgLatency": 2933, - "avgSuccessRate": 99, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "postcap": { - "tool_description": "class", - "score": { - "avgServiceLevel": 100, - "avgLatency": 415, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Recipe by API-Ninjas": { - "tool_description": "Search over 200,000 creative recipes. See more info at https://api-ninjas.com/api/recipe.", - "score": { - "avgServiceLevel": 97, - "avgLatency": 559, - "avgSuccessRate": 96, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Testing_v2": { - "tool_description": "testing", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1006, - "avgSuccessRate": 67, - "popularityScore": 6.4, - "__typename": "Score" - } - }, - "Food Ingredient Measurement Conversion": { - "tool_description": "Effortlessly convert between volume and weight units for recipe ingredients. Our API is designed with a special focus on the precision and accuracy of weight measurements, making it the perfect solution for bakers. What sets us apart is that we meticulously divide flour into different types, such as bread flour, cake flour, all-purpose flour, almond flour, etc., and even list the flour of major brands like Bob's Red Mill, Gold Medal, King Arthur, and more. This attention to detail ensures tha...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 5549, - "avgSuccessRate": 68, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "Food Nutrition Information": { - "tool_description": "search and find foods with their nutritional information", - "score": { - "avgServiceLevel": 92, - "avgLatency": 1543, - "avgSuccessRate": 92, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Rewards as a Service": { - "tool_description": "Create an account, fund an account, manage a catalog, send rewards and get reporting — all available on demand, in real time and as a service. With our RaaSÂź API, you can elegantly knit a sophisticated rewards program into your platform. Best of all, the service has zero fees.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 447, - "avgSuccessRate": 100, - "popularityScore": 7.3, - "__typename": "Score" - } - }, - "Kitten Placeholder": { - "tool_description": "Generate random pictures of cute kittens or adorable cats for your applications, website, or just for your personal amusement. Show me your creativity!", - "score": { - "avgServiceLevel": 0, - "avgLatency": 636, - "avgSuccessRate": 0, - "popularityScore": 0, - "__typename": "Score" - } - }, - "Mathematical Symbolic Expression Manipulator": { - "tool_description": "Mathematical Symbolic Expression Manipulator", - "score": { - "avgServiceLevel": 100, - "avgLatency": 974, - "avgSuccessRate": 50, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "Beekeeping Research": { - "tool_description": "Temperature, Humidity and Weight sensor readings from thousands of honeybee hives around the world.", - "score": null - }, - "manatee jokes": { - "tool_description": "A CORS-enabled collection of manatee jokes", - "score": { - "avgServiceLevel": 100, - "avgLatency": 317, - "avgSuccessRate": 100, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Astronomy Picture of The day": { - "tool_description": "This api returns a stunning astronomical picture every day with explanation from professionals.", - "score": null - }, - "TLE": { - "tool_description": "API provides up to date NORAD two line element sets for number of Earth orbiting satellites. Data is provided by CelesTrak and served in web application friendly JSON format.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 804, - "avgSuccessRate": 98, - "popularityScore": 9, - "__typename": "Score" - } - }, - "Numerology-API": { - "tool_description": "This is an API to help you compute the numerology of your familly member, friends and other persons", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1373, - "avgSuccessRate": 71, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "Astrologer": { - "tool_description": "Astrology made easy! Astrological calculation, birth charts, composite charts in SVG. Plus all astrological data.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 514, - "avgSuccessRate": 98, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "CarbonSutra": { - "tool_description": "Carbon Emission Estimations for Organizations.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 483, - "avgSuccessRate": 93, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "teste": { - "tool_description": "teste", - "score": { - "avgServiceLevel": 100, - "avgLatency": 370, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "Astronomy": { - "tool_description": "A data retrieval interface for the skies... (visit astronomyapi.com and obtain your free API key)", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1494, - "avgSuccessRate": 100, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "Materials Platform for Data Science": { - "tool_description": "Curated data for materials science, thermodynamics, metallurgy, semiconductors, nanotechnology, solid state physics, crystallography, etc.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1239, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "crossref": { - "tool_description": "Crossref makes research outputs easy to find, cite, link, assess, and reuse.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1581, - "avgSuccessRate": 100, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "Planets by API-Ninjas": { - "tool_description": "Get statistics on thousands of planets in the known universe. See more info at https://api-ninjas.com/api/planets.", - "score": { - "avgServiceLevel": 98, - "avgLatency": 501, - "avgSuccessRate": 95, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "CarbonFootprint": { - "tool_description": "Calculate the carbon footprint in various situations, such as travel and hydro usage.", - "score": { - "avgServiceLevel": 98, - "avgLatency": 252, - "avgSuccessRate": 98, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "Atmosphere methane concentration": { - "tool_description": "This API provides on a monthly basis, the amount of methane in the atmosphere from 1983 to the present. Expressed as a mole fraction in dry air, parts per million (ppm).", - "score": { - "avgServiceLevel": 100, - "avgLatency": 339, - "avgSuccessRate": 100, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "astrometry.ch perihelion astronomy": { - "tool_description": "This API returns the past and next perihelions for all the space object monitored by Astrometry.ch. Progress in percentage of the solar system celestial bodies. ", - "score": null - }, - "Daily Knowledge": { - "tool_description": "Getting a daily information of knowledge for specific project. This information change every 24 hour", - "score": { - "avgServiceLevel": 100, - "avgLatency": 896, - "avgSuccessRate": 100, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Daily atmosphere carbon dioxide concentration": { - "tool_description": "This API provides on a quasi-daily basis, the amount of carbon dioxide (CO2) in the atmosphere from 2010.01.01 to the present. It is expressed as a mole fraction in dry air, parts per million (ppm).", - "score": { - "avgServiceLevel": 100, - "avgLatency": 261, - "avgSuccessRate": 100, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "dna2protein": { - "tool_description": "A set of simple end-points to convert DNA and mRNA sequences to amino-acids", - "score": { - "avgServiceLevel": 97, - "avgLatency": 263, - "avgSuccessRate": 97, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "Yawin Indian Astrology": { - "tool_description": "Indian astrology API for planet positions, ascension calculations, and prediction findings, Basic tools that help in astrological calculations", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1605, - "avgSuccessRate": 100, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Atmosphere nitrous oxide levels": { - "tool_description": "This API provides on a monthly basis, the amount of nitrous oxide in the atmosphere from 2001 to the present. Expressed as a mole fraction in dry air, parts per million (ppm).", - "score": { - "avgServiceLevel": 100, - "avgLatency": 404, - "avgSuccessRate": 100, - "popularityScore": 8.2, - "__typename": "Score" - } - }, - "Al-Quran": { - "tool_description": "Quickly retrieve original Arabic text, translation, transliteration and Word Search from the Koran /Quran", - "score": { - "avgServiceLevel": 100, - "avgLatency": 393, - "avgSuccessRate": 99, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "Irene": { - "tool_description": "Use for study", - "score": null - }, - "Stars by API-Ninjas": { - "tool_description": "Get key statistics for thousands of stars discovered in the known universe. See more info at https://api-ninjas.com/api/stars.", - "score": { - "avgServiceLevel": 99, - "avgLatency": 579, - "avgSuccessRate": 93, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "EveryEarthquake": { - "tool_description": "Get every earthquake and any other event that registers on the richter scale ever catalogued by the USGS, with very detailed location data.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2407, - "avgSuccessRate": 100, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "melodyn": { - "tool_description": "radio", - "score": { - "avgServiceLevel": 0, - "avgLatency": 115, - "avgSuccessRate": 0, - "popularityScore": 0, - "__typename": "Score" - } - }, - "Spotify _v2": { - "tool_description": "Get Spotify Tracks & Playlist Details", - "score": { - "avgServiceLevel": 60, - "avgLatency": 1062, - "avgSuccessRate": 60, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "Billboard API_v2": { - "tool_description": "Billboard charts API: Weekly Billboard Hot 100, Weekly Billboard 200, Weekly Artist 100, Weekly Billboard Weekly Global 200, Weekly Catalog Albums, Weekly Independent Albums, Weekly Billboard U.S. Afrobeats Songs. Year End Hot 100 Songs, Year End Billboard 200 Albums, Year End Billboard Global 200, Year End Top Artists, Year End Top Artists – Duo/Group, Year End Top Labels, Year End Top New Artists, Year End Top Artists – Male, Year End Top Artists – Female. \nAll Greatest of All Time Charts....", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1984, - "avgSuccessRate": 100, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "247NaijaBuzz": { - "tool_description": "It's about music and entertainment news update", - "score": { - "avgServiceLevel": 100, - "avgLatency": 617, - "avgSuccessRate": 88, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "MusiclinkssApi": { - "tool_description": "Get music links of song or artist.", - "score": { - "avgServiceLevel": 98, - "avgLatency": 1353, - "avgSuccessRate": 98, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "SpeechNoted": { - "tool_description": "SpeechNoted API - Text to Speech", - "score": null - }, - "K-POP": { - "tool_description": "Get K-POP detailed songs, idol, group info!", - "score": { - "avgServiceLevel": 97, - "avgLatency": 554, - "avgSuccessRate": 95, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "RojMusic": { - "tool_description": "Rojmusic stranen kurdi", - "score": { - "avgServiceLevel": 100, - "avgLatency": 140, - "avgSuccessRate": 100, - "popularityScore": 6, - "__typename": "Score" - } - }, - "View Song": { - "tool_description": "View Sonv", - "score": { - "avgServiceLevel": 100, - "avgLatency": 481, - "avgSuccessRate": 100, - "popularityScore": 7.3, - "__typename": "Score" - } - }, - "Halsey Lyric Snippets": { - "tool_description": "An API that allows users to view short excerpts of Halsey's songs.", - "score": { - "avgServiceLevel": 98, - "avgLatency": 915, - "avgSuccessRate": 98, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "YourVinylStore": { - "tool_description": "Best vinyl records in your collection.", - "score": { - "avgServiceLevel": 0, - "avgLatency": 13, - "avgSuccessRate": 0, - "popularityScore": 0, - "__typename": "Score" - } - }, - "Tunein": { - "tool_description": "Radio", - "score": { - "avgServiceLevel": 100, - "avgLatency": 468, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "SoundCloud Scraper": { - "tool_description": "An all-in-one SoundCloud scraper/downloader. Scrapes albums, playlists, profiles. Downloads uncut high-quality audios and lyrics.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 498, - "avgSuccessRate": 100, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "Billboard": { - "tool_description": "Billboard charts: Hot 100, Billboard 200, Billboard 200 Global, Artist 100 and more", - "score": { - "avgServiceLevel": 100, - "avgLatency": 902, - "avgSuccessRate": 100, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Spotify Web": { - "tool_description": "Spotify Data API for Millions of songs & podcasts, artists, albums, playlists and more.", - "score": { - "avgServiceLevel": 99, - "avgLatency": 877, - "avgSuccessRate": 96, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "kotak7": { - "tool_description": "Api Musik Kotak7", - "score": { - "avgServiceLevel": 100, - "avgLatency": 677, - "avgSuccessRate": 100, - "popularityScore": 7.5, - "__typename": "Score" - } - }, - "MyAPI": { - "tool_description": "testing api", - "score": null - }, - "xmusic": { - "tool_description": "test apis xmusic", - "score": { - "avgServiceLevel": 100, - "avgLatency": 240, - "avgSuccessRate": 100, - "popularityScore": 5.6, - "__typename": "Score" - } - }, - "SoundCloud Charts API": { - "tool_description": "Get trending and top charts (New & Hot and other)", - "score": { - "avgServiceLevel": 100, - "avgLatency": 561, - "avgSuccessRate": 100, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "Spotify_v3": { - "tool_description": "Spotify Data API for Millions of songs & podcasts, artists, albums, playlists and more.", - "score": { - "avgServiceLevel": 95, - "avgLatency": 812, - "avgSuccessRate": 81, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "myPlayvv": { - "tool_description": "Music sharing service", - "score": { - "avgServiceLevel": 0, - "avgLatency": 191, - "avgSuccessRate": 0, - "popularityScore": 0, - "__typename": "Score" - } - }, - "Indie Songs : DistroKid & Unsigned": { - "tool_description": "Independent tracks with label numbers. Daily updating stats, weekly updating songs", - "score": { - "avgServiceLevel": 100, - "avgLatency": 841, - "avgSuccessRate": 100, - "popularityScore": 6.9, - "__typename": "Score" - } - }, - "GG": { - "tool_description": "Test purpose", - "score": { - "avgServiceLevel": 100, - "avgLatency": 468, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "shoxbps": { - "tool_description": "apishox", - "score": null - }, - "Spotify Scraper": { - "tool_description": "An all-in-one scraper for scraping everything on Spotify, and a highly available download solution for tracks, lyrics and episode previews.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1657, - "avgSuccessRate": 96, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "MusicData API": { - "tool_description": "Data for Youtube, Spotify music videos, tracks, albums, artist & more", - "score": { - "avgServiceLevel": 92, - "avgLatency": 21726, - "avgSuccessRate": 85, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "baixar musicas mp3 completas": { - "tool_description": "baixar musicas", - "score": { - "avgServiceLevel": 0, - "avgLatency": 9, - "avgSuccessRate": 0, - "popularityScore": 0, - "__typename": "Score" - } - }, - "station": { - "tool_description": "radio", - "score": { - "avgServiceLevel": 100, - "avgLatency": 558, - "avgSuccessRate": 100, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "Billboard_v2": { - "tool_description": "Billboard API: Billboard Hot 100, Billboard 200, Artist 100, Billboard Global 200, Top Artists, Year-End Hot 100 Songs, Year-End Billboard Global 200, Year-End Billboard 200 Albums, Year-End Top Artists, Greatest of All Time Artists, Greatest of All Time Songs of the Summer, Greatest of All Time Hot 100 Songs and much more!", - "score": { - "avgServiceLevel": 96, - "avgLatency": 778, - "avgSuccessRate": 96, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Youtube Music API (Detailed)": { - "tool_description": "Detailed Youtube Music API. Lyrics, Trends, Albums, Artists, Songs, Users, Playlists, Songs etc.", - "score": { - "avgServiceLevel": 93, - "avgLatency": 425, - "avgSuccessRate": 93, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "Shazam": { - "tool_description": "Shazam API helps you to recognize any song from a music file, can fetch data from https://www.shazam.com/, extract information related to artist, track or give top songs by country.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 8, - "avgSuccessRate": 100, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Youtube MP3 Converter": { - "tool_description": "You can download youtube videos as mp3 music and mp4 video.", - "score": null - }, - "Radio World - 75,000+ Worldwide FM Radio stations..": { - "tool_description": "This is one of the largest collection of FM Radios API from around the world. Listen Updated 79,000+ Radio stations. All the Stations are Updating Daily & Weekly basis, New stations are Adding As soon as possible. At least 100+ Stations Are adding and 1000+ Stations are fixing to this API Weekly (This is minium ratio).", - "score": { - "avgServiceLevel": 94, - "avgLatency": 1424, - "avgSuccessRate": 94, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "Spotify Top Charts 2022": { - "tool_description": "Dataset with global top chart songs during 2022. With danceability, loudness, and energy metrics.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1070, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "L-yrics": { - "tool_description": "Have you ever wished to read the words of a music you heard? Give us the name and let us handle the rest.", - "score": { - "avgServiceLevel": 99, - "avgLatency": 3831, - "avgSuccessRate": 99, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "50K Radio Stations": { - "tool_description": "More than 60,000 radio stations from different countries and various genres", - "score": { - "avgServiceLevel": 78, - "avgLatency": 352, - "avgSuccessRate": 78, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "MusicZone": { - "tool_description": "API for songs", - "score": { - "avgServiceLevel": 0, - "avgLatency": 697, - "avgSuccessRate": 0, - "popularityScore": 0, - "__typename": "Score" - } - }, - "MP3 Downloader": { - "tool_description": "Search mp3 files by track, artist, album.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 667, - "avgSuccessRate": 100, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Bandamp Downloader API": { - "tool_description": "An all-in-one scraper to get everything from Bandcamp. Get tracks, Albums details with downloadable URLs.", - "score": { - "avgServiceLevel": 62, - "avgLatency": 937, - "avgSuccessRate": 62, - "popularityScore": 8, - "__typename": "Score" - } - }, - "Testing options": { - "tool_description": "This is my test API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 845, - "avgSuccessRate": 100, - "popularityScore": 5.3, - "__typename": "Score" - } - }, - "VkoorSound": { - "tool_description": "VkoorSound", - "score": { - "avgServiceLevel": 0, - "avgLatency": 16, - "avgSuccessRate": 0, - "popularityScore": 0, - "__typename": "Score" - } - }, - "online-music": { - "tool_description": "Music site", - "score": { - "avgServiceLevel": 0, - "avgLatency": 559, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Spotify Data API": { - "tool_description": "Fetch all available Spotify Data like Shows,Playlists, Episodes,Artists, Tracks, User playlists and more\n\nNote: Currently the API is deployed on server with basic plan with auto sleep thats why the Latency is so high .After first subscription I will upgrade the plan with always on service and the latency will be normal.", - "score": { - "avgServiceLevel": 95, - "avgLatency": 23411, - "avgSuccessRate": 88, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "ReverbNation Song Downloader": { - "tool_description": "Get ReverbNation data of any paid song(s) with download URLs", - "score": { - "avgServiceLevel": 100, - "avgLatency": 826, - "avgSuccessRate": 100, - "popularityScore": 7.4, - "__typename": "Score" - } - }, - "Genius - Song Lyrics": { - "tool_description": "Genius - Song Lyrics, Artists, Albums, Knowledge & More API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 813, - "avgSuccessRate": 98, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "Billboard-API": { - "tool_description": "Providing the Billboard chart rankings and information on titles, artists, lyrics, images, and more. ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 314, - "avgSuccessRate": 100, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "LANDR Mastering v1": { - "tool_description": "Give your users an instant and customized audio mastering solution by harnessing the power of LANDR’s industry-leading, AI-driven mastering engine and its patented machine learning capabilities. NOTE: Access API key here: https://www.landr.com/pro-audio-mastering-api ", - "score": null - }, - "Shazam API": { - "tool_description": "Identify any song. Discover, artists, lyrics, videos & playlists to create a song detector site/application ", - "score": { - "avgServiceLevel": 90, - "avgLatency": 1158, - "avgSuccessRate": 89, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "Spotify": { - "tool_description": "Spotify Data API for Millions of songs & podcasts, artists, albums, playlists and more.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 435, - "avgSuccessRate": 99, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "getSongs": { - "tool_description": "top 10 Songs", - "score": { - "avgServiceLevel": 100, - "avgLatency": 377, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "Miza": { - "tool_description": "A multipurpose API that includes many image, video, and audio operations. Please see https://ko-fi.com/mizabot if you'd like premium features on the Discord bot itself!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2155, - "avgSuccessRate": 0, - "popularityScore": 0, - "__typename": "Score" - } - }, - "Apple Music": { - "tool_description": "Fetches songs & album data from Apple Music", - "score": { - "avgServiceLevel": 96, - "avgLatency": 797, - "avgSuccessRate": 96, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "MusicAPI": { - "tool_description": "Spotify, Apple Music, YouTube, Amazon, Tidal, and more. Over 19 services supported.\n\nFetch metadata for the tracks, albums, playlists from multiple streaming services via URL.\nUse single search endpoints to find at once on all services and get sharable URLs to all of them. \n\nMusicAPI.com", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1077, - "avgSuccessRate": 100, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "deepsound": { - "tool_description": "deepsound", - "score": { - "avgServiceLevel": 0, - "avgLatency": 12, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "Latest Spotify Downloader": { - "tool_description": "Latest Spotify Downloader — Contact Us at spotify-support@logicsquares.com", - "score": { - "avgServiceLevel": 7, - "avgLatency": 1883, - "avgSuccessRate": 5, - "popularityScore": 0.4, - "__typename": "Score" - } - }, - "Webp Image Converter": { - "tool_description": "Convert any image to a webp image.", - "score": { - "avgServiceLevel": 98, - "avgLatency": 1702, - "avgSuccessRate": 98, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Nexweave": { - "tool_description": "With Nexweave, you can create personalized images, GIFs, and interactive videos that make your audience feel special while increasing their engagement.", - "score": null - }, - "Random anime img": { - "tool_description": "An API generates a short link for an anime image", - "score": { - "avgServiceLevel": 100, - "avgLatency": 570, - "avgSuccessRate": 100, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "MlemAPI": { - "tool_description": "A free public service API which provides pictures of animals with mlems/bleps.", - "score": { - "avgServiceLevel": 99, - "avgLatency": 800, - "avgSuccessRate": 99, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "Youtube Videos": { - "tool_description": "An easy-to-use API to fetch videos from Youtube in MP4 format.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1521, - "avgSuccessRate": 79, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Flaticon": { - "tool_description": "5M+ icons and vectors at your fingertips", - "score": { - "avgServiceLevel": 100, - "avgLatency": 126, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "Premium-Anime-Mobile-Wallpapers-Illustrations": { - "tool_description": "Fetch The Best Quality Anime Mobile Wallpapers & Illustrations From The 100k+ Collection. Easily Find Wallpaper Based On Requirements Which Are Categorized By Illustrations, Anime Name, Premium, and Genre (Boy, Christmas, Couple, Halloween, Family, Valentine, Wedding) with sensitivity control.\n\n1/06/2023 - Ultra & Mega plan changed, request increase at the same price.\n\nOur Quote API: https://shorturl.at/egkOQ \n", - "score": { - "avgServiceLevel": 100, - "avgLatency": 634, - "avgSuccessRate": 100, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "👋 Demo Project_v2": { - "tool_description": "VT999 – sĂąn chÆĄi giáșŁi trĂ­ uy tĂ­n hĂ ng đáș§u Việt Nam vĂ  Cháș„u Á Website: https://vt999.online/ SDT: 0363360512 Email: contact.vt999@gmail.com Địa chỉ: 94 TháșĄnh XuĂąn 13, TháșĄnh XuĂąn, Quáș­n 12, ThĂ nh phố Hồ ChĂ­ Minh, Việt Nam #vt999, #nhacaivt999", - "score": { - "avgServiceLevel": 100, - "avgLatency": 513, - "avgSuccessRate": 82, - "popularityScore": 6.4, - "__typename": "Score" - } - }, - "YouTube Mp3 Downloader": { - "tool_description": "Update: 31 May 2023: API is fixed & it is now 100% working. Now suports Youtu.be links\n-A new endpoint added that downloads YT mp3 in best audio quality: 320Kbps, 128Kbps, 192Kbps, 256Kbps & 64Kbps.\nDownload any Youtube Video in Mp3 Format (No ads, no wild redirects, only mp3 files)", - "score": { - "avgServiceLevel": 88, - "avgLatency": 32117, - "avgSuccessRate": 88, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "Instagram Media Downloader": { - "tool_description": "", - "score": { - "avgServiceLevel": 60, - "avgLatency": 770, - "avgSuccessRate": 53, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Unofficial Icons8 Search": { - "tool_description": "Search the Icons8 repository of icons to get the icons you're looking for!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 673, - "avgSuccessRate": 100, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "Image Service": { - "tool_description": "Various image utilities like get palette and blurhash", - "score": { - "avgServiceLevel": 100, - "avgLatency": 357, - "avgSuccessRate": 33, - "popularityScore": 6.1, - "__typename": "Score" - } - }, - "Video Downloader": { - "tool_description": "FreeVideoDownloader is a powerful video downloader tool designed for websites, allowing seamless integration of video downloading capabilities. It provides an easy-to-use API that enables website owners to offer their visitors the ability to download videos from various platforms without leaving the site. With FreeVideoDownloader, users can effortlessly save videos in different formats, enhancing their browsing experience and content accessibility.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1613, - "avgSuccessRate": 100, - "popularityScore": 5.6, - "__typename": "Score" - } - }, - "Pattern Monster": { - "tool_description": "Create customizable SVG patterns for your projects", - "score": { - "avgServiceLevel": 96, - "avgLatency": 1013, - "avgSuccessRate": 96, - "popularityScore": 8, - "__typename": "Score" - } - }, - "Image diffusion": { - "tool_description": "Diffusion APIs", - "score": { - "avgServiceLevel": 95, - "avgLatency": 17580, - "avgSuccessRate": 86, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "Video Builder": { - "tool_description": "Create dynamic videos using images as source.\n\nThis API provides an friendly way to generate MP4 videos using FFMPEG.\nIt's in initial stage, so you may feel that it don't have too much features yet.\n\n-- Important notes:\n* The requested videos are added to queue and will not be generated immediately\n* If you want to be notified about the requested video build finish, it's important to send a valid personal e-mail on \"notifyEmail\" field\n* You can check periodically the video status and the down...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1147, - "avgSuccessRate": 0, - "popularityScore": 0, - "__typename": "Score" - } - }, - "free images API": { - "tool_description": "this API provides copyright free images", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1474, - "avgSuccessRate": 100, - "popularityScore": 9, - "__typename": "Score" - } - }, - "dagpi": { - "tool_description": "a powerful and fast Image manipulation/ data set api. Perfect for discord bots or web apps.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1239, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Porn gallery": { - "tool_description": "this api returns high quality pictures of any porn category or pornstar name", - "score": { - "avgServiceLevel": 89, - "avgLatency": 4478, - "avgSuccessRate": 89, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "Snappy: Web Capture": { - "tool_description": "Screen Shot Website in Real Time.\n\nFeel free to drop me a message.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 34292, - "avgSuccessRate": 100, - "popularityScore": 6.9, - "__typename": "Score" - } - }, - "videogrammer": { - "tool_description": "Videogrammer is a simple but powerful way to multiply social media videos", - "score": { - "avgServiceLevel": 100, - "avgLatency": 345, - "avgSuccessRate": 83, - "popularityScore": 8, - "__typename": "Score" - } - }, - "Thai Lottery Result Image": { - "tool_description": "Thai Lottery Result Image", - "score": { - "avgServiceLevel": 100, - "avgLatency": 5570, - "avgSuccessRate": 100, - "popularityScore": 6.8, - "__typename": "Score" - } - }, - "Background removal_v2": { - "tool_description": "The simplest way to remove image backgrounds through API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1648, - "avgSuccessRate": 100, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "amir1": { - "tool_description": "pet", - "score": null - }, - "Mission Creation": { - "tool_description": "Add new mission", - "score": { - "avgServiceLevel": 100, - "avgLatency": 842, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Bing Video Search": { - "tool_description": "An AI service from Microsoft Azure that turns any app into a video search resource.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 416, - "avgSuccessRate": 98, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "ykapi": { - "tool_description": "ykapi description", - "score": { - "avgServiceLevel": 100, - "avgLatency": 959, - "avgSuccessRate": 100, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "Plate Detection": { - "tool_description": "Universal plate detection", - "score": { - "avgServiceLevel": 100, - "avgLatency": 940, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "List Movies": { - "tool_description": "An API used to list and search through out all the available movies. Can sort, filter, search and order the results", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1160, - "avgSuccessRate": 100, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "Petey Vid Video Search API": { - "tool_description": "Access Petey Vid search engine, search over 600 million videos from 70+ platform providers", - "score": { - "avgServiceLevel": 100, - "avgLatency": 596, - "avgSuccessRate": 100, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "tes": { - "tool_description": "test", - "score": { - "avgServiceLevel": 100, - "avgLatency": 585, - "avgSuccessRate": 24, - "popularityScore": 1.7, - "__typename": "Score" - } - }, - "WebCap - Website Screenshot Capture": { - "tool_description": "Turn websites into high definition screenshot images super quick and super easy. Simply provide a URL and the API will generate a screenshot for you. The returned file will be cached for continuous use", - "score": { - "avgServiceLevel": 96, - "avgLatency": 2229, - "avgSuccessRate": 92, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "api.video": { - "tool_description": "api.video is the end-to-end solution that enables you to easily build, scale, and operate on-demand and live-streaming videos in your app, software, or platform. Test it for free on our Sandbox environment.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 921, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "james": { - "tool_description": "Project", - "score": { - "avgServiceLevel": 100, - "avgLatency": 921, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "Deep Image": { - "tool_description": "Deep Image Rest API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1184, - "avgSuccessRate": 0, - "popularityScore": 0, - "__typename": "Score" - } - }, - "html5tomp4": { - "tool_description": "convert html5 animations to mp4 videos for social media posts", - "score": { - "avgServiceLevel": 100, - "avgLatency": 500, - "avgSuccessRate": 97, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "Image": { - "tool_description": "a powerful and fast Image manipulation. Perfect for discord bots or web apps. https://dagpi.xyz", - "score": { - "avgServiceLevel": 100, - "avgLatency": 799, - "avgSuccessRate": 100, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "Video Thumbnail Extractor": { - "tool_description": "Extract thumbnail image from mp4 video at a specific time", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2272, - "avgSuccessRate": 100, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "TikTok": { - "tool_description": "its an api for shares", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1510, - "avgSuccessRate": 100, - "popularityScore": 7.7, - "__typename": "Score" - } - }, - "QrCodeGenerator": { - "tool_description": "QR Code generator ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 51488, - "avgSuccessRate": 100, - "popularityScore": 7.3, - "__typename": "Score" - } - }, - "Image Anonymization": { - "tool_description": "API for hiding faces and car license plates in images.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 860, - "avgSuccessRate": 100, - "popularityScore": 9, - "__typename": "Score" - } - }, - "NSFW / Nude Detection": { - "tool_description": "An API to detect NSFW or nudity within an image (as URL).", - "score": { - "avgServiceLevel": 100, - "avgLatency": 6883, - "avgSuccessRate": 100, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "Access Instagram": { - "tool_description": "Access Instagram", - "score": { - "avgServiceLevel": 100, - "avgLatency": 476, - "avgSuccessRate": 20, - "popularityScore": 2, - "__typename": "Score" - } - }, - "JSON2Video": { - "tool_description": "Your free API for video creation and editing", - "score": { - "avgServiceLevel": 90, - "avgLatency": 672, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "Astro Gallery": { - "tool_description": "Astro Photo Gallery", - "score": { - "avgServiceLevel": 64, - "avgLatency": 12615, - "avgSuccessRate": 45, - "popularityScore": 7.8, - "__typename": "Score" - } - }, - "Alt Bichinhos": { - "tool_description": "A collection of pet images with alt text!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 484, - "avgSuccessRate": 100, - "popularityScore": 8.2, - "__typename": "Score" - } - }, - "test-api_v2": { - "tool_description": "", - "score": { - "avgServiceLevel": 100, - "avgLatency": 448, - "avgSuccessRate": 100, - "popularityScore": 6.8, - "__typename": "Score" - } - }, - "Quality Porn": { - "tool_description": "JSON search API for best free porn videos and pornstars gathered from the most popular porn sites. Filter by terms, quality and specific types and preferences.\nAdult, NSFW, Porn, Nudes, Pornstars as JSON", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1467, - "avgSuccessRate": 99, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Aspose.Imaging Cloud": { - "tool_description": "Aspose.Imaging Cloud provides the most demanding imaging routines such as Re-sizing, Cropping, Rotation, and Conversion. It supports the most common raster file-formats including PSD, PNG, JPG, BMP, TIFF, and GIF.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 412, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Web Capture": { - "tool_description": "Take screenshots of any website or generate a pdf either from the website or an HTML file.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1484, - "avgSuccessRate": 100, - "popularityScore": 7.5, - "__typename": "Score" - } - }, - "nowyAPI": { - "tool_description": "henAPI", - "score": { - "avgServiceLevel": 96, - "avgLatency": 3053, - "avgSuccessRate": 96, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "Blurhash URL API": { - "tool_description": "Converting URL to a blurhash ", - "score": { - "avgServiceLevel": 50, - "avgLatency": 4609, - "avgSuccessRate": 50, - "popularityScore": 6.7, - "__typename": "Score" - } - }, - "Any Anime": { - "tool_description": "Get random anime pfp and gif's using the anyanime api", - "score": { - "avgServiceLevel": 95, - "avgLatency": 3096, - "avgSuccessRate": 87, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Cars image background removal": { - "tool_description": "", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2376, - "avgSuccessRate": 100, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "MikuAPI": { - "tool_description": "An API that provides you with Images of the popular Japanese Popstar Hatsune Miku. ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 37, - "avgSuccessRate": 100, - "popularityScore": 9, - "__typename": "Score" - } - }, - "IsBehindCDN": { - "tool_description": "Check if domain is fronted by CDN provider.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 27695, - "avgSuccessRate": 100, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "Waktu Solat": { - "tool_description": "Information on prayer times in Malaysia. Sources of information from e-solat.gov.my", - "score": { - "avgServiceLevel": 96, - "avgLatency": 357, - "avgSuccessRate": 96, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "pdflayer": { - "tool_description": "Supercharge High Quality PDF Conversion in any Application. Powerful URL & HTML to PDF conversion for documents of any size, using any programming language, lightning-fast and tailored for any use case.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 232, - "avgSuccessRate": 100, - "popularityScore": 6.7, - "__typename": "Score" - } - }, - "Geolocate": { - "tool_description": "The Geocoding Flask API is a simple and efficient way to convert addresses and places into their corresponding latitude and longitude coordinates.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 11424, - "avgSuccessRate": 100, - "popularityScore": 7.6, - "__typename": "Score" - } - }, - "Easy QR Code": { - "tool_description": "Simple QR Code generator. https://easy-qr-code.p.rapidapi.com/generate?content=https://google.com", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1201, - "avgSuccessRate": 100, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "Text To Speech API": { - "tool_description": "This API takes text and languages code and return speech voice", - "score": { - "avgServiceLevel": 99, - "avgLatency": 1445, - "avgSuccessRate": 98, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "YTStream - Download YouTube Videos": { - "tool_description": "Download or stream YouTube Videos/MP4.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 315, - "avgSuccessRate": 100, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "JSON Sort and Filter": { - "tool_description": "Filter and sort your JSON data.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 302, - "avgSuccessRate": 90, - "popularityScore": 8.2, - "__typename": "Score" - } - }, - "Email Validation": { - "tool_description": "Validate the email address of your users at sign-up and get a risk score to help you eliminate fraud up-front, inform risk models and build customised workflows | Email Validation API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 214, - "avgSuccessRate": 97, - "popularityScore": 7.6, - "__typename": "Score" - } - }, - "URL Shortener": { - "tool_description": "URL Shortener with free QR Code generation, tracking features and more. Backed by ultra fast CDN and Hosting.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 628, - "avgSuccessRate": 100, - "popularityScore": 7.8, - "__typename": "Score" - } - }, - "Java Code Compiler": { - "tool_description": "Java Code Compiler API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1131, - "avgSuccessRate": 68, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "free url shortener": { - "tool_description": "Ulvis.net offers a powerful API to interact with other sites.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 40, - "avgSuccessRate": 100, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "Email Validator": { - "tool_description": "This API is a fast and robust email address syntax and deliverability validator. API detects 3000+ disposable email services.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1473, - "avgSuccessRate": 95, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "UnitConversion": { - "tool_description": "App to easily convert units", - "score": { - "avgServiceLevel": 100, - "avgLatency": 557, - "avgSuccessRate": 100, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "Visual Basic Code Compiler": { - "tool_description": "Visual Basic Code Compiler API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 460, - "avgSuccessRate": 100, - "popularityScore": 7.5, - "__typename": "Score" - } - }, - "Unit Measurement Conversion": { - "tool_description": "Perform accurate and hassle-free conversions between various measurement units for weight, length, area, volume, speed, fuel, pressure, and temperature with our API. It supports local units and returns both the converted value and abbreviation (if available) for quick and easy integration into your projects.", - "score": { - "avgServiceLevel": 84, - "avgLatency": 3992, - "avgSuccessRate": 34, - "popularityScore": 8.2, - "__typename": "Score" - } - }, - "QR code generator with multiple datatypes .": { - "tool_description": "Our QR code generator API allows you to generate QR codes for various types of data, including text, URLs, phone numbers, SMS messages, and email addresses. The API returns a QR code image in JPG format.", - "score": { - "avgServiceLevel": 75, - "avgLatency": 296, - "avgSuccessRate": 75, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "QRLink API": { - "tool_description": "Introducing a powerful and efficient API that transforms URLs into high-quality QR codes (Quick Response codes). QR codes are advanced 2D barcodes that can be scanned with a smartphone or a QR code reader, enabling quick access to information. Whether you're looking to enhance your marketing efforts or streamline your business processes, our API is the perfect solution for all your QR code needs.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2967, - "avgSuccessRate": 100, - "popularityScore": 7.1, - "__typename": "Score" - } - }, - "Text to Speech_v2": { - "tool_description": "Text to Speech Voice Reader", - "score": { - "avgServiceLevel": 98, - "avgLatency": 143, - "avgSuccessRate": 91, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "YouTube Video Summarizer": { - "tool_description": "A powerful tool for generating concise summaries of YouTube videos, highlighting the most important points for easy note-taking and referencing.", - "score": { - "avgServiceLevel": 57, - "avgLatency": 9584, - "avgSuccessRate": 38, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "Go QR code - LINK to QRCODE": { - "tool_description": "Quickly and easily generate QR code images with our API. Simply provide a link address and our API will return a downloadable PNG image of the QR code. Perfect for use in print materials, on business cards, or in advertising campaigns", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2967, - "avgSuccessRate": 100, - "popularityScore": 5.6, - "__typename": "Score" - } - }, - "UUID generator": { - "tool_description": "UUID generator", - "score": { - "avgServiceLevel": 100, - "avgLatency": 341, - "avgSuccessRate": 100, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "Simple QR Code Generator": { - "tool_description": "Fast and simple QR Code Generator", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1626, - "avgSuccessRate": 100, - "popularityScore": 6.7, - "__typename": "Score" - } - }, - "ArabicCountryList": { - "tool_description": "Country list in Arabic", - "score": null - }, - "Proxy": { - "tool_description": "Simple rotating proxy", - "score": { - "avgServiceLevel": 100, - "avgLatency": 8076, - "avgSuccessRate": 100, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "CommonPortNumbers": { - "tool_description": "Get registered service names and transport protocols port numbers.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 4314, - "avgSuccessRate": 100, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "ShortAdLink - Shorten URLs and Earn Money": { - "tool_description": "ShortAdLink - Earn money on shorten links. Make short links and earn the biggest money", - "score": null - }, - "Custom QR Code with Logo_v2": { - "tool_description": "Custom QR codes with a logo allow businesses to create personalized QR codes with their own brand logo integrated into the code. Try it today!", - "score": { - "avgServiceLevel": 67, - "avgLatency": 5065, - "avgSuccessRate": 67, - "popularityScore": 6.8, - "__typename": "Score" - } - }, - "Ruby Code Compiler": { - "tool_description": "Ruby Code Compiler API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 540, - "avgSuccessRate": 100, - "popularityScore": 7.4, - "__typename": "Score" - } - }, - "Bash Code Compiler": { - "tool_description": "Bash Code Compiler API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 504, - "avgSuccessRate": 95, - "popularityScore": 7.4, - "__typename": "Score" - } - }, - "👋 Onboarding Project_v3": { - "tool_description": "This Project is created by the onboarding process", - "score": null - }, - "echo-api": { - "tool_description": "Echo API that answer everything that you send back to you. Supports GET, POST, DELETE, PUT and PATCH.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 707, - "avgSuccessRate": 100, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "Referral Domain checker API": { - "tool_description": "Get Referral Domains of a website, backlink counts , ranks etc ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 5282, - "avgSuccessRate": 100, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "KolektifAPI": { - "tool_description": "Python / Flask ile yazılmıß REST API", - "score": { - "avgServiceLevel": 98, - "avgLatency": 2367, - "avgSuccessRate": 98, - "popularityScore": 7.5, - "__typename": "Score" - } - }, - "All Purpose Complex Converter": { - "tool_description": "Convert numbers to words, text to speech, numbers to speech, speech to text and much more.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 18615, - "avgSuccessRate": 100, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "CORS Proxy_v2": { - "tool_description": "🚀 Solve CORS errors effortlessly! CORS Proxy: Your ultimate tool for seamless cross-origin resource sharing in frontend development", - "score": { - "avgServiceLevel": 99, - "avgLatency": 437, - "avgSuccessRate": 99, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "Email Checkup": { - "tool_description": "Provide email validation and email existence.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 183, - "avgSuccessRate": 100, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "Avatar.io - MODERN AVATAR PLACEHOLDER API": { - "tool_description": "Generate clean and modern avatar placeholders for your application", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2161, - "avgSuccessRate": 100, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "Subdomain Scan": { - "tool_description": "Enter a domain here and we'll check all subdomains and return it in a JSON format for you.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 25499, - "avgSuccessRate": 100, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "TLY Link Shortener": { - "tool_description": "URL Shortener, Custom Domain & Link Management", - "score": { - "avgServiceLevel": 100, - "avgLatency": 235, - "avgSuccessRate": 100, - "popularityScore": 7.7, - "__typename": "Score" - } - }, - "SQL Code Compiler": { - "tool_description": "SQL Code Compiler API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1133, - "avgSuccessRate": 96, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "SEO Keyword Research": { - "tool_description": "Keyword Research helps to analyze keywords and related keywords competitions , search volume (google) and CPC. For private plans, custom plans, custom billing contact : info@getecz.com", - "score": { - "avgServiceLevel": 100, - "avgLatency": 7133, - "avgSuccessRate": 100, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Password Generator by API-Ninjas": { - "tool_description": "Generate random passwords that are hard to guess. See more info at https://api-ninjas.com/api/passwordgenerator", - "score": { - "avgServiceLevel": 100, - "avgLatency": 496, - "avgSuccessRate": 100, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "IP ECHO": { - "tool_description": "echo your ip", - "score": null - }, - "Web Scrapper": { - "tool_description": "HTML Web Scrapper & Parser. \nFetch HTML page & return exctracted data by selectors (if specified). \n\nDefinitions: \n - url: https://wikipedia.org (required)\n - s: .class1, class2, div, a, img, #id\n\n\n", - "score": { - "avgServiceLevel": 94, - "avgLatency": 737, - "avgSuccessRate": 94, - "popularityScore": 7.7, - "__typename": "Score" - } - }, - "Domain Name Search": { - "tool_description": "Search for domain names, including domain availability, validation, expiration, prices, WHOIS, quality aspects and more data available on https://domains.google.", - "score": { - "avgServiceLevel": 98, - "avgLatency": 111, - "avgSuccessRate": 98, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "qr code_v8": { - "tool_description": "This API will get website link or string and convert it into QR Code image.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3136, - "avgSuccessRate": 100, - "popularityScore": 6.4, - "__typename": "Score" - } - }, - "oDesk APIs": { - "tool_description": "oDesk APIs allowed for authorized users to can access and build their own oDesk applications.", - "score": null - }, - "ProbablyThese": { - "tool_description": "API for app ProbablyThese", - "score": null - }, - "Password Generator API": { - "tool_description": "This API generate cryptographically random strong password which are nearly impossible to break", - "score": { - "avgServiceLevel": 100, - "avgLatency": 134, - "avgSuccessRate": 100, - "popularityScore": 7.6, - "__typename": "Score" - } - }, - "Endpoint Monitor Tool": { - "tool_description": "An API for testing endpoints at custom intervals with email notifications and previous result comparison", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1949, - "avgSuccessRate": 53, - "popularityScore": 7.7, - "__typename": "Score" - } - }, - "GUID generator": { - "tool_description": "The API that generates random GUIDs.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1004, - "avgSuccessRate": 100, - "popularityScore": 8.2, - "__typename": "Score" - } - }, - "Tmail": { - "tool_description": "Temporary Disposable Email Address | Disposable email is a service that allows to receive email at a temporary address that self-destructed after a certain time elapses.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 223, - "avgSuccessRate": 87, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "Domain Checker": { - "tool_description": "The Domain Checker API allows users to quickly and easily check the validity, availability, expiration, and DNS settings of a given domain name. With features such as keyword search and validation, it's an efficient tool for developers, businesses, and individuals looking to manage or purchase domain names.", - "score": { - "avgServiceLevel": 99, - "avgLatency": 949, - "avgSuccessRate": 99, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "core_js": { - "tool_description": "javascript", - "score": { - "avgServiceLevel": 100, - "avgLatency": 682, - "avgSuccessRate": 100, - "popularityScore": 5.7, - "__typename": "Score" - } - }, - "unit converter": { - "tool_description": "Unit Converter API allows developers to easily integrate unit conversion functionality into their applications. It supports a wide range of units across different categories", - "score": { - "avgServiceLevel": 100, - "avgLatency": 172, - "avgSuccessRate": 56, - "popularityScore": 8.2, - "__typename": "Score" - } - }, - "Text to speech": { - "tool_description": "A text to speech endpoint to steam output", - "score": { - "avgServiceLevel": 97, - "avgLatency": 286, - "avgSuccessRate": 96, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "Wordnet Search": { - "tool_description": "This API will search wordnet for the definition of a word.", - "score": null - }, - "Bar QR Code Generator": { - "tool_description": "Generate barcodes and QR codes.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 7127, - "avgSuccessRate": 80, - "popularityScore": 6.8, - "__typename": "Score" - } - }, - "Todo": { - "tool_description": "REST API for managing todo list applications. \n\nCreate, search, delete and update operations are implemented.", - "score": { - "avgServiceLevel": 64, - "avgLatency": 327, - "avgSuccessRate": 48, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "twitter": { - "tool_description": "Download Twitter videos", - "score": { - "avgServiceLevel": 33, - "avgLatency": 1350, - "avgSuccessRate": 31, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "Shakespeare Translator": { - "tool_description": "Convert your modern day English phrases into Shakespeare style old English. Thou shalt try this API!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 356, - "avgSuccessRate": 100, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Wikipedia Infobox": { - "tool_description": "An Api to serve the infoboxes that accompanies so many wikipedia entries.\nUse it for learning, use it for funfacts, use it for gaining knowledge. \n", - "score": { - "avgServiceLevel": 95, - "avgLatency": 538, - "avgSuccessRate": 95, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "Token API": { - "tool_description": "Generate a new token for Unlimited Language API. Token is only valid for ~5 minuts, so it has to be generated frequently", - "score": { - "avgServiceLevel": 100, - "avgLatency": 51, - "avgSuccessRate": 100, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "QR-Generator-Api": { - "tool_description": "Generate HTML image-tag with base64-image-string as QR code of input text.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 712, - "avgSuccessRate": 95, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Variable Size QR Code API": { - "tool_description": "This api takes a URL and the desired size of the QR Code and returns the QR Code image.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3120, - "avgSuccessRate": 100, - "popularityScore": 6.9, - "__typename": "Score" - } - }, - "👋 Demo Project_v13": { - "tool_description": "This Project is created by the onboarding process", - "score": { - "avgServiceLevel": 100, - "avgLatency": 685, - "avgSuccessRate": 100, - "popularityScore": 5.7, - "__typename": "Score" - } - }, - "bitly": { - "tool_description": "Shortens urls", - "score": { - "avgServiceLevel": 100, - "avgLatency": 107, - "avgSuccessRate": 100, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "languagelayer": { - "tool_description": "Free, powerful language detection JSON REST API for 173 world languages, dialects and accents. Compatible with any application.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 698, - "avgSuccessRate": 100, - "popularityScore": 6.6, - "__typename": "Score" - } - }, - "Plus One": { - "tool_description": "This tool allows you to perform an increment by one on your integer", - "score": { - "avgServiceLevel": 100, - "avgLatency": 7924, - "avgSuccessRate": 100, - "popularityScore": 6.4, - "__typename": "Score" - } - }, - "Convexity": { - "tool_description": "Convexity is an Color-convertor API that offers endpoints for converting between different color representations, including RGB, HSL, and CMYK", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1510, - "avgSuccessRate": 100, - "popularityScore": 7.7, - "__typename": "Score" - } - }, - "Helper Function": { - "tool_description": "Helper functions that might be useful for you to use such as UUID Generator, Base64, JSON, Array, String manipulation, Hash MD5, SHA1, SHA256, SHA512, Aragon2, Bcrypt\n#ascii #encoder #decoder #uuid #slug #converter\nI'm on telegram chat me if there a problem/request\nhttps://t.me/iiyann25", - "score": { - "avgServiceLevel": 100, - "avgLatency": 290, - "avgSuccessRate": 78, - "popularityScore": 8.2, - "__typename": "Score" - } - }, - "USA Jobs for IT": { - "tool_description": "An USA Jobs for IT API from different sources", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2576, - "avgSuccessRate": 100, - "popularityScore": 9, - "__typename": "Score" - } - }, - "Temp Email": { - "tool_description": "The Temp mail API provides users with the ability to generate temporary, disposable email addresses swiftly and securely. This tool is ideal for protecting personal email accounts from spam, testing, signing up for services, and more. With various endpoints offering functionalities like email creation, inbox retrieval, and message extraction, the Temp email API ensures you have full control over your disposable emails. Its integration via RapidAPI guarantees a smooth, quick, and secure develo...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 823, - "avgSuccessRate": 63, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "Pagepeeker": { - "tool_description": "Automate website screenshots creation. Generate screenshots in a matter of seconds. Never busy, so there's no waiting in line. Rendering starts immediately and is finished quickly.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 235, - "avgSuccessRate": 100, - "popularityScore": 7.1, - "__typename": "Score" - } - }, - "Simple & Cheap QR CODE GENERATOR": { - "tool_description": "Send a string, get a QR CODE - As simple as it gets", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1053, - "avgSuccessRate": 100, - "popularityScore": 6.9, - "__typename": "Score" - } - }, - "Domain Backorder": { - "tool_description": "Blazing fast domain backorder service. Backorder aging, expiring and worthy domain names for your business ventures. ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 352, - "avgSuccessRate": 100, - "popularityScore": 6.3, - "__typename": "Score" - } - }, - "Haskell Code Compiler": { - "tool_description": "Haskell Code Compiler API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 454, - "avgSuccessRate": 94, - "popularityScore": 7.4, - "__typename": "Score" - } - }, - "HackerRank": { - "tool_description": "With HackerRank's API you can run codes in many different languages.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 451, - "avgSuccessRate": 100, - "popularityScore": 7.7, - "__typename": "Score" - } - }, - "GUID Generator Tool": { - "tool_description": "Efficient Guid generator, fast and flexible.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 959, - "avgSuccessRate": 100, - "popularityScore": 7.6, - "__typename": "Score" - } - }, - "Go Code Compiler": { - "tool_description": "Go Code Compiler API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 432, - "avgSuccessRate": 100, - "popularityScore": 7.8, - "__typename": "Score" - } - }, - "Website Screenshot or Thumbnail": { - "tool_description": "Take pixel-perfect screenshots or thumbnails of any website. Restpack Screenshot API is an easy to use RESTful web service that can capture screenshots of live web pages and deliver the results in several formats. The service sits on a fully functional browser rendering engine with rich html / css / js capabilities.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2218, - "avgSuccessRate": 99, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Password Generator": { - "tool_description": "Generate strong, unique, and customizable passwords with our Password Generator API. ", - "score": { - "avgServiceLevel": 88, - "avgLatency": 432, - "avgSuccessRate": 71, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "C Code Compiler": { - "tool_description": "C Code Compiler API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1717, - "avgSuccessRate": 100, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "Free URL Un-Shortener": { - "tool_description": "Free URL Un-Shortener is a free service to Un-Shorten the URLs created by URL shortening services. ", - "score": { - "avgServiceLevel": 97, - "avgLatency": 686, - "avgSuccessRate": 97, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "free QR Code Generator": { - "tool_description": "", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1887, - "avgSuccessRate": 100, - "popularityScore": 7.7, - "__typename": "Score" - } - }, - "Torrent-Search": { - "tool_description": "This script is a JavaScript code that uses the @dil5han/torrent-api module to create a server that can search multiple torrent websites and return the results to the client in JSON format.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 35237, - "avgSuccessRate": 100, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "FraudFreeze Phishing Check": { - "tool_description": "This API checks URLs to see whether they are known phishing/scam attempts.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 534, - "avgSuccessRate": 100, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "DateClock": { - "tool_description": "Complete Converter Date Report also Between, Birthday and many more!\n#date #birthday #between #query #islamic #calendar\nI’m on telegram chat me if there a problem/request\nhttps://t.me/franc0jr", - "score": { - "avgServiceLevel": 100, - "avgLatency": 257, - "avgSuccessRate": 100, - "popularityScore": 8.2, - "__typename": "Score" - } - }, - "NĂșmeros a Letras": { - "tool_description": "API para convertir nĂșmeros a letras en español.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 293, - "avgSuccessRate": 98, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Text2Image": { - "tool_description": "Generate images using SOTA text 2 image model.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 5954, - "avgSuccessRate": 100, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "Jibber Jabber": { - "tool_description": "Dummy Text Generator", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2693, - "avgSuccessRate": 100, - "popularityScore": 6.3, - "__typename": "Score" - } - }, - "QR Code API_v6": { - "tool_description": "This API is a QR code generation service built using Flask. It accepts a 'url' parameter in the GET request and returns a PNG image of the generated QR code. The QR code can be saved as an attachment with the filename 'qr_code.png'. The API runs on port 4000 and can be easily integrated into any application or website that needs to generate QR codes.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 414, - "avgSuccessRate": 100, - "popularityScore": 6.5, - "__typename": "Score" - } - }, - "Qr Code Generator_v5": { - "tool_description": "Conver string to qr", - "score": null - }, - "C Sharp Code Compiler": { - "tool_description": "C# Code Compiler API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 506, - "avgSuccessRate": 95, - "popularityScore": 7.5, - "__typename": "Score" - } - }, - "QR Code API_v92": { - "tool_description": "This is an API that converts a URL into a QR code image", - "score": { - "avgServiceLevel": 100, - "avgLatency": 46447, - "avgSuccessRate": 100, - "popularityScore": 5.3, - "__typename": "Score" - } - }, - "Amazon Product Scraper API - FULL PAGE SCRAPING": { - "tool_description": "Simple and easy-to-use full page Amazon product list scraping API.\nTurn a live Amazon product list page into JSON", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1853, - "avgSuccessRate": 100, - "popularityScore": 7.6, - "__typename": "Score" - } - }, - "qrcodeutils": { - "tool_description": "QR Code Generator API. The API will return directly QR Code image. For more details please visit https://www.qrcodeutils.com", - "score": { - "avgServiceLevel": 94, - "avgLatency": 612, - "avgSuccessRate": 94, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Captcha Generator": { - "tool_description": "A captcha generator tool with different settings for difficulty.", - "score": { - "avgServiceLevel": 92, - "avgLatency": 1996, - "avgSuccessRate": 92, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "story": { - "tool_description": "story", - "score": { - "avgServiceLevel": 100, - "avgLatency": 199, - "avgSuccessRate": 100, - "popularityScore": 6.7, - "__typename": "Score" - } - }, - "👋 Demo Project_v12": { - "tool_description": "This Project is created by the onboarding process", - "score": { - "avgServiceLevel": 100, - "avgLatency": 168, - "avgSuccessRate": 100, - "popularityScore": 5.9, - "__typename": "Score" - } - }, - "QR Code_v18": { - "tool_description": "API that returns a downloadable QR Code as a png from an input text param", - "score": { - "avgServiceLevel": 100, - "avgLatency": 19, - "avgSuccessRate": 100, - "popularityScore": 5.3, - "__typename": "Score" - } - }, - "World Clock": { - "tool_description": "An API to get the current time. REST Services that will return current date/time in JSON for any registered time zone.", - "score": { - "avgServiceLevel": 78, - "avgLatency": 18786, - "avgSuccessRate": 78, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "ColorMe": { - "tool_description": "Get some colors either randomly selected or based on your input base color", - "score": null - }, - "Joe Rogan Quote Generator": { - "tool_description": "Get quotes from the man himself", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3958, - "avgSuccessRate": 100, - "popularityScore": 7.8, - "__typename": "Score" - } - }, - "Serpstat": { - "tool_description": "This API can be used by SEO and PPC specialists to access keyword research and domain analysis data.", - "score": null - }, - "Bulk WHOIS": { - "tool_description": "Bulk WHOIS API. Parsed to JSON. All TLDs supported. Online since 2016.", - "score": { - "avgServiceLevel": 98, - "avgLatency": 690, - "avgSuccessRate": 93, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "MyPEAK Calculator API": { - "tool_description": "Basic calculator", - "score": { - "avgServiceLevel": 100, - "avgLatency": 9369, - "avgSuccessRate": 100, - "popularityScore": 7.8, - "__typename": "Score" - } - }, - "SEO Checker": { - "tool_description": "SEO Website Checker, Extraction and Analyze/Analytic Tools Report\nI'm on telegram chat me if there a problem/request\nhttps://t.me/iiyann25", - "score": { - "avgServiceLevel": 100, - "avgLatency": 5790, - "avgSuccessRate": 100, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "QR Code Wizard": { - "tool_description": "Generate QR codes with ease via API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2569, - "avgSuccessRate": 100, - "popularityScore": 6.9, - "__typename": "Score" - } - }, - "CPP 17 Code Compiler": { - "tool_description": "C++ 17 Code Compiler API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 937, - "avgSuccessRate": 100, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "Placeholder text API for your application": { - "tool_description": "Use this api in your application wherever you need placeholder text ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1250, - "avgSuccessRate": 100, - "popularityScore": 7.8, - "__typename": "Score" - } - }, - "Ephemeral Proxies": { - "tool_description": "An API service to obtain **datacenter and residential proxies.**\n\n###### Features:\n* This service contains pools of **stable and high-quality proxies** that automatically rotate to ensure that you get a new different proxy with each API call.\n* Each request to this API service will provide you with a new proxy available for 30 mins.\n* Proxies are constantly monitored to ensure their health.\n* You can extend the allocation time of a datacenter proxy by making successive calls to the API, with ...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 248, - "avgSuccessRate": 100, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "Spotify Downloader": { - "tool_description": "Download tracks, albums and playlists from Spotify! The best and most reliable Spotify Downloader API on RapidAPI!", - "score": { - "avgServiceLevel": 84, - "avgLatency": 5196, - "avgSuccessRate": 84, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "APIEvangelist": { - "tool_description": "Kin Lane's list of tools for API deployment. What can I say? He's da man!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 33, - "avgSuccessRate": 100, - "popularityScore": 5.7, - "__typename": "Score" - } - }, - "TIN Check": { - "tool_description": "TIN-check.com is a validation service for TIN numbers all around the world. This service allows you to search, discover, consult company TINs and even validate any TIN for the selected country. The Tax Identification Number (TIN) can assume different designations and format accordingly with the legislation of each country. Tax Number validation is available for more than 100 countries.", - "score": null - }, - "SEO - Count website pages in Google index": { - "tool_description": "API allows quickly and easily determine the number of pages from a particular website that are indexed in Google's", - "score": { - "avgServiceLevel": 100, - "avgLatency": 897, - "avgSuccessRate": 100, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "All in One FIle Converter": { - "tool_description": "All in one file converter can convert different types of files. It can convert audio, video, images, documents, and archive files.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 934, - "avgSuccessRate": 68, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "Travelling Salesman": { - "tool_description": "Solve the travelling salesman problem for every 2D or 3D problem, and calculate the shortest distance between a list of points.", - "score": { - "avgServiceLevel": 60, - "avgLatency": 53, - "avgSuccessRate": 40, - "popularityScore": 6.7, - "__typename": "Score" - } - }, - "QR Code API Generator": { - "tool_description": "This API takes input as url to generate image based QR code ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 60469, - "avgSuccessRate": 100, - "popularityScore": 6.9, - "__typename": "Score" - } - }, - "Free Random Word Generator API": { - "tool_description": "Returns a random English word.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 963, - "avgSuccessRate": 100, - "popularityScore": 9, - "__typename": "Score" - } - }, - "Youtube Video Download Info": { - "tool_description": "Download YouTube Videos/MP4. Forever Free Version.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 118, - "avgSuccessRate": 100, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "QR Code API_v67": { - "tool_description": "This API takes a URL or string and returns a QR code image", - "score": null - }, - "QR Code API_v119": { - "tool_description": "Generate QR Codes by passing in parameters.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2770, - "avgSuccessRate": 100, - "popularityScore": 5.2, - "__typename": "Score" - } - }, - "QR Code Generator API_v6": { - "tool_description": "QR code generator API is a tool that enables developers to generate QR codes within their applications.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 203, - "avgSuccessRate": 100, - "popularityScore": 6, - "__typename": "Score" - } - }, - "QR Code API updated": { - "tool_description": "QR Code API updated version for any website\nmore to come in such format", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3262, - "avgSuccessRate": 100, - "popularityScore": 6.7, - "__typename": "Score" - } - }, - "Words World": { - "tool_description": "Quote from world people", - "score": null - }, - "Temporary Email": { - "tool_description": "Temporary Email is a revolutionary service that has made the lives of many people easier. With the increase in the use of email as a primary mode of communication, the problem of spam or unsolicited email has become more prevalent. This unwanted email can be frustrating and time-consuming to sift through, which is why Temporary Email services have gained popularity.\n\nThe fast and easy API for Temporary Email is one such service that enables you to receive email at a temporary address that sel...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 692, - "avgSuccessRate": 100, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "Discord Webhook API": { - "tool_description": "This API allows you to send data to a discord webhook, and get a detailed response. This API allows you to send simple messages and embeds. Embeds have all possible customization options.\nNo guarantees for rate limits.", - "score": { - "avgServiceLevel": 94, - "avgLatency": 542, - "avgSuccessRate": 94, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "Discord Lookup": { - "tool_description": "Easily lookup Discord users by ID, invite data & joins by invite code and hidden vanity data", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1005, - "avgSuccessRate": 67, - "popularityScore": 6.5, - "__typename": "Score" - } - }, - "Perf monitor metrics": { - "tool_description": "Real-Time Performance Monitoring API for TI Systems", - "score": { - "avgServiceLevel": 100, - "avgLatency": 21810, - "avgSuccessRate": 100, - "popularityScore": 8.2, - "__typename": "Score" - } - }, - "PHP Code Compiler": { - "tool_description": "PHP Code Compiler API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 495, - "avgSuccessRate": 95, - "popularityScore": 7.8, - "__typename": "Score" - } - }, - "Proof of concept": { - "tool_description": "demo API ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1174, - "avgSuccessRate": 100, - "popularityScore": 7.3, - "__typename": "Score" - } - }, - "UUID Generator_v2": { - "tool_description": "Why do it yourself?", - "score": { - "avgServiceLevel": 100, - "avgLatency": 708, - "avgSuccessRate": 100, - "popularityScore": 5.4, - "__typename": "Score" - } - }, - "ExplorArc's Password Generation API": { - "tool_description": "The Best API to Generate Random Password with your desired length and as a response you get an set of 10 Passwords", - "score": { - "avgServiceLevel": 100, - "avgLatency": 539, - "avgSuccessRate": 100, - "popularityScore": 7.8, - "__typename": "Score" - } - }, - "ViewDNS": { - "tool_description": "Your one source for DNS related tools! dns, info, reverse ip, pagerank, portscan, port scan, lookup, records, whois, ipwhois, dnstools, web hosting, hosting, traceroute, dns report, dnsreport, ip location, ip location finder, spam, spam database, dnsbl, propagation, dns propagation checker, checker, china, chinese, firewall, great firewall, is my site down, is site down, site down, down, dns propagate", - "score": { - "avgServiceLevel": 100, - "avgLatency": 388, - "avgSuccessRate": 100, - "popularityScore": 5.3, - "__typename": "Score" - } - }, - "otp-2fa": { - "tool_description": "OTP API (One-Time Password Application Programming Interface) is a service that allows developers to integrate OTP functionality into their applications, websites or systems. OTP is a password that is valid for only one login session or transaction, which enhances security by reducing the risk of password theft, hacking, or identity theft. OTP can be delivered to the user through various channels, such as SMS, email, or push notifications, and can be generated using this api, as time-based code.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 944, - "avgSuccessRate": 100, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "QR Code Generator": { - "tool_description": "QR code generator API. Dynamically generate QR codes and get an image in multiple formats.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 389, - "avgSuccessRate": 100, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Text Sentiment API": { - "tool_description": "Find the sentiment of a certain text. Returns AI-calculated comparative score (from -5, very negative, to 5, very positive). Also returns positive & negative words.", - "score": null - }, - "QR Code - Dynamic and Static": { - "tool_description": "This API is focused on generating dynamic (content can be changed later) and static QR Codes, fully customized and with constant updates.", - "score": { - "avgServiceLevel": 97, - "avgLatency": 605, - "avgSuccessRate": 93, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "teamriverbubbles random utilities": { - "tool_description": "random utilities you may use", - "score": { - "avgServiceLevel": 100, - "avgLatency": 490, - "avgSuccessRate": 100, - "popularityScore": 6, - "__typename": "Score" - } - }, - "Unfurl API written in go": { - "tool_description": "Simplest API to unfurl URL descriptions, titles, images, and products, from all sites without being blocked. Fast and reliable.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 769, - "avgSuccessRate": 88, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "CPP 14 Code Compiler": { - "tool_description": "C++ 14 Code Compiler API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 472, - "avgSuccessRate": 94, - "popularityScore": 7.8, - "__typename": "Score" - } - }, - "Whois ": { - "tool_description": "A 100% free and easy to use API for WHOIS Lookup", - "score": { - "avgServiceLevel": 93, - "avgLatency": 1473, - "avgSuccessRate": 84, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Scala Code Compiler": { - "tool_description": "Scala Code Compiler API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 786, - "avgSuccessRate": 100, - "popularityScore": 7.2, - "__typename": "Score" - } - }, - "Scanova QR Code": { - "tool_description": "Scanova QR Code API lets you generate custom-designed Branded QR Codes in bulk programmatically in your own mobile application or information system within few minutes.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 719, - "avgSuccessRate": 51, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "Whois by API-Ninjas": { - "tool_description": "Look up domain registry information using WHOIS protocol for any domain. See more info at https://api-ninjas.com/api/whois.", - "score": { - "avgServiceLevel": 72, - "avgLatency": 1230, - "avgSuccessRate": 72, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "DailyCred": { - "tool_description": "Identity made simple: everything you need to manage users for your website or app.\r\n\r\nDailyCred wraps all of your OAuth providers into a single OAuth call. You can also use DailyCred to authenticate email and password users as well as Twitter and LinkedIn users using OAuth 2.\r\n\r\nDailyCred aggregates all of your user data and combines it with page view information in a single place. View the demo of the DailyCred dashboard here:\r\n\r\nhttps://www.dailycred.com/demo", - "score": null - }, - "Proxy Checker": { - "tool_description": "An easy tool to test proxy whether it's online, anonymous, is it HTTP, HTTPS or both, to get proxy performance timings.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 11, - "avgSuccessRate": 100, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "TVB QR Code": { - "tool_description": "This API takes the URL and returns the image of the QR code.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 12011, - "avgSuccessRate": 100, - "popularityScore": 5.6, - "__typename": "Score" - } - }, - "Measurement Units Converter": { - "tool_description": "Easily and quickly convert all types of measurement units using the API.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1077, - "avgSuccessRate": 90, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "PurgoMalum": { - "tool_description": "PurgoMalum is a simple, free, RESTful web service for filtering and removing content of profanity, obscenity and other unwanted text. PurgoMalum's interface accepts several parameters for customization and can return results in plain text, XML and JSON.\r\n\r\nPurgoMalum is designed to remove words from input text, based on an internal profanity list (you may optionally add your own words to the profanity list through a request parameter (see Request Parameters below). It is designed to recognize character alternates often used in place of standard alphabetic characters, e.g. \"@\" will be recognized as an \"a\", \"$\" will be recognized as an \"s\", and so forth.\r\n\r\nPurgoMalum also utilizes a list of \"safe words\", i.e. innocuous words which contain words from the profanity list (\"class\" for example). These safe words are excluded from the filter.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 174, - "avgSuccessRate": 100, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "SimpleEcho": { - "tool_description": "Return the request as the response.", - "score": null - }, - "utile-space": { - "tool_description": "Misc useful API for software engineers and others.", - "score": null - }, - "Bulk Whatsapp Validator": { - "tool_description": "Checks if a number is registered on whatsapp. Adds context to whatsapp profiles.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1161, - "avgSuccessRate": 99, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Objective-C Code Compiler": { - "tool_description": "Objective-C Code Compiler API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 371, - "avgSuccessRate": 100, - "popularityScore": 7.3, - "__typename": "Score" - } - }, - "Exerra phishing check": { - "tool_description": "This API checks URLs to see whether they are known phishing attempts. ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 113, - "avgSuccessRate": 100, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "IPInfoAPI": { - "tool_description": "Simple API, that allows you to get user's IP address.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 4026, - "avgSuccessRate": 100, - "popularityScore": 7.3, - "__typename": "Score" - } - }, - "GDrive Link Generator": { - "tool_description": "GDrive Link Generator Api used to get the direct download link of google drive file\nUsing this api you can generate one click download url for Google Drive file.\n\nAPI supports multiple endpoints where you can generate single download url and bulk urls.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 773, - "avgSuccessRate": 94, - "popularityScore": 8.2, - "__typename": "Score" - } - }, - "Disposable Email Checker": { - "tool_description": "This is an easy way to check if a email address is disposable or valid so you can avoid fake users on your database.", - "score": { - "avgServiceLevel": 95, - "avgLatency": 997, - "avgSuccessRate": 95, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "qrcode-generator-base64": { - "tool_description": "Our QR code generator API allows you to generate QR codes for various types of data, including text, URLs, phone numbers, SMS messages, and email addresses. The API returns a base64-encoded image of the QR code, which can be easily decoded and displayed in any web or mobile application. With our API, you can quickly and easily integrate QR code generation into your application, allowing your users to create and scan QR codes on the go. Sign up for our API today and start generating high-quali...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 600, - "avgSuccessRate": 97, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "Noly url shortener": { - "tool_description": "Shorten a long url to tiny link", - "score": { - "avgServiceLevel": 100, - "avgLatency": 461, - "avgSuccessRate": 100, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "C99 Code Compiler": { - "tool_description": "C99 Code Compiler API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 561, - "avgSuccessRate": 94, - "popularityScore": 7.8, - "__typename": "Score" - } - }, - "tiktok no watermark": { - "tool_description": "get tiktok no watermark video", - "score": { - "avgServiceLevel": 100, - "avgLatency": 4928, - "avgSuccessRate": 100, - "popularityScore": 8, - "__typename": "Score" - } - }, - "QR Code Generator Pro": { - "tool_description": "Easily generate QR codes for urls, and receive a downloadable png image file", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1912, - "avgSuccessRate": 100, - "popularityScore": 8, - "__typename": "Score" - } - }, - "giflayer": { - "tool_description": "Free, powerful Video to GIF API for developers and businesses", - "score": { - "avgServiceLevel": 100, - "avgLatency": 590, - "avgSuccessRate": 100, - "popularityScore": 6, - "__typename": "Score" - } - }, - "bitly example": { - "tool_description": "this a login api", - "score": { - "avgServiceLevel": 100, - "avgLatency": 230, - "avgSuccessRate": 100, - "popularityScore": 5.8, - "__typename": "Score" - } - }, - "Perl Code Compiler": { - "tool_description": "Perl Code Compiler API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 497, - "avgSuccessRate": 95, - "popularityScore": 7.3, - "__typename": "Score" - } - }, - "Bulk Domain Check": { - "tool_description": "Bulk Domain Availability Check. All tlds supported. ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1543, - "avgSuccessRate": 100, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "YouTube Video Tags": { - "tool_description": "Get the tags used for YouTube video SEO without any youtube data api key.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 863, - "avgSuccessRate": 100, - "popularityScore": 7.7, - "__typename": "Score" - } - }, - "Keyword Tool_v2": { - "tool_description": "Keyword Tool helps to analyze keywords and related keywords competitions, search volume, and CPC. Mostly useful for digital marketers and related platforms", - "score": { - "avgServiceLevel": 100, - "avgLatency": 702, - "avgSuccessRate": 72, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "PDF Text Extractor": { - "tool_description": "An api that helps you to extract all text in a PDF format file with ease", - "score": { - "avgServiceLevel": 76, - "avgLatency": 906, - "avgSuccessRate": 76, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "3D Services": { - "tool_description": "Provide tool for generating thumbnail of 3d files using blender and tool for scripting Blender directly in the cloud.", - "score": { - "avgServiceLevel": 64, - "avgLatency": 15513, - "avgSuccessRate": 64, - "popularityScore": 7.7, - "__typename": "Score" - } - }, - "URL Content Extractor": { - "tool_description": "Provide a URL and get the content in return", - "score": { - "avgServiceLevel": 98, - "avgLatency": 544, - "avgSuccessRate": 98, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Question Explorer": { - "tool_description": "Question Explorer", - "score": { - "avgServiceLevel": 100, - "avgLatency": 6907, - "avgSuccessRate": 100, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "HTML-2-JSON": { - "tool_description": "Convert a public HTML page into JSON (or Markdown)", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2200, - "avgSuccessRate": 100, - "popularityScore": 5.1, - "__typename": "Score" - } - }, - "Epoch Converter": { - "tool_description": "Convert between dates and times.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 330, - "avgSuccessRate": 100, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "CPP Code Compiler": { - "tool_description": "C++ Code Compiler API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 966, - "avgSuccessRate": 100, - "popularityScore": 8.2, - "__typename": "Score" - } - }, - "YouTube MP3": { - "tool_description": "Convert Youtube Videos to MP3", - "score": { - "avgServiceLevel": 100, - "avgLatency": 350, - "avgSuccessRate": 100, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "Anchor Data Scrapper": { - "tool_description": "Anchor Data Scrapper is the easiest way to get access to podcasts from a specific user in a JSON format.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 7, - "avgSuccessRate": 100, - "popularityScore": 7.3, - "__typename": "Score" - } - }, - "Reword PDF": { - "tool_description": "Reword PDF is a pdf editor tool. \nCapabilities:\n- Extract text in a pdf\n- Replace any of these given texts in the pdf.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 85, - "avgSuccessRate": 84, - "popularityScore": 6.6, - "__typename": "Score" - } - }, - "Judge0 Extra CE": { - "tool_description": "The most advanced open-source online code execution system in the world.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1373, - "avgSuccessRate": 100, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "Youtube MP3 Download": { - "tool_description": "Convert Youtube Videos to MP3. Forever Free Version.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 333, - "avgSuccessRate": 100, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "Domain Checker API": { - "tool_description": "The Domain Checker API allows users to retrieve detailed information about a specific domain name. With this API, developers, businesses, and individuals can access valuable data such as the domain's registrar information and registrant contact details.\n\nBy making use of the Domain Checker API, users can obtain the following information related to a domain:\n\nRegistrar Info: This includes the name of the domain registrar, the WHOIS server responsible for providing domain registration informati...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1472, - "avgSuccessRate": 100, - "popularityScore": 6.4, - "__typename": "Score" - } - }, - "mailboxlayer": { - "tool_description": "Simple and powerful email verification JSON API using SMTP, typo checks, syntax validation, and free and disposable provider filtering.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1897, - "avgSuccessRate": 100, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "Check page or website loading speed": { - "tool_description": "Check page or website loading speed", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1648, - "avgSuccessRate": 100, - "popularityScore": 8, - "__typename": "Score" - } - }, - "Color to picture API": { - "tool_description": "Takes prompt of picture mode (L,RGB,RGBA), color in hex (example: ff03bc), width (example: 200), height (example: 200) and makes new image in single color", - "score": { - "avgServiceLevel": 100, - "avgLatency": 40389, - "avgSuccessRate": 100, - "popularityScore": 6.8, - "__typename": "Score" - } - }, - "ProxyPage": { - "tool_description": "Get high quality proxies for free, proxy list with your filters", - "score": { - "avgServiceLevel": 100, - "avgLatency": 276, - "avgSuccessRate": 100, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "QuickMocker": { - "tool_description": "Online API mocking tool to create a fake web services, intercept and debug requests in live mode, forward requests to any URL including localhost.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 852, - "avgSuccessRate": 100, - "popularityScore": 7.5, - "__typename": "Score" - } - }, - "QR Decoder": { - "tool_description": "Decode QRCodes from an image or PDF.\nReturns an array of decoded messages.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3386, - "avgSuccessRate": 50, - "popularityScore": 6.4, - "__typename": "Score" - } - }, - "dimondevosint": { - "tool_description": "It is an API for mobile phone number OSINT. If you abuse it, you will be immediately banned!", - "score": { - "avgServiceLevel": 96, - "avgLatency": 5020, - "avgSuccessRate": 96, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Github Repos": { - "tool_description": "An API to retrieve github info about repositories of an user", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1941, - "avgSuccessRate": 97, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "Starline Telematics": { - "tool_description": "ОтĐșŃ€Ń‹Ń‚ĐŸĐ” StarLine API ĐżĐŸĐ·ĐČĐŸĐ»ŃĐ”Ń‚ ĐČĐ»Đ°ĐŽĐ”Đ»ŃŒŃ†Đ°ĐŒ ĐŸŃ…Ń€Đ°ĐœĐœŃ‹Ń… ĐșĐŸĐŒĐżĐ»Đ”ĐșŃĐŸĐČ StarLine ŃĐŸĐ·ĐŽĐ°ĐČать ĐżŃ€ĐžĐ»ĐŸĐ¶Đ”ĐœĐžŃ ĐŽĐ»Ń упраĐČĐ»Đ”ĐœĐžŃ сĐČĐŸĐžĐŒĐž аĐČŃ‚ĐŸĐŒĐŸĐ±ĐžĐ»ŃĐŒĐž.", - "score": { - "avgServiceLevel": 97, - "avgLatency": 47530, - "avgSuccessRate": 91, - "popularityScore": 7, - "__typename": "Score" - } - }, - "Masehi ke Hijriyah": { - "tool_description": "convert tanggal Masehi to Hijriyah ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 461, - "avgSuccessRate": 100, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Famous Quotes": { - "tool_description": "Over 100 000 of famous quotes, 100 categories and 10K authors", - "score": { - "avgServiceLevel": 100, - "avgLatency": 323, - "avgSuccessRate": 100, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Calendar Converter": { - "tool_description": "Converts dates between different civil, religious, and historical calendars", - "score": { - "avgServiceLevel": 94, - "avgLatency": 2460, - "avgSuccessRate": 94, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "QR Code Generator_v14": { - "tool_description": "Simple And Lightweight Api to Generate QR Code From Text", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3681, - "avgSuccessRate": 100, - "popularityScore": 5.6, - "__typename": "Score" - } - }, - "Articles Generator": { - "tool_description": "Generate articles about specific subjects or niches, with specific word length, keyword density and multiple other parameters.", - "score": { - "avgServiceLevel": 60, - "avgLatency": 770, - "avgSuccessRate": 60, - "popularityScore": 7.6, - "__typename": "Score" - } - }, - "Python 3 Code Compiler": { - "tool_description": "Python 3 Code Compiler API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 830, - "avgSuccessRate": 89, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "Overnight Policy Rate": { - "tool_description": "Malaysia Overnight Policy Rate (OPR) decided by the Monetary Policy Committee.\nData source from Bank Negara Malaysia, https://www.bnm.gov.my", - "score": { - "avgServiceLevel": 100, - "avgLatency": 173, - "avgSuccessRate": 100, - "popularityScore": 7.8, - "__typename": "Score" - } - }, - "Full-Text RSS US": { - "tool_description": "A version of our Full-Text RSS API, but running on US and Canada servers. https://market.mashape.com/fivefilters/full-text-rss", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1382, - "avgSuccessRate": 100, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "YTConvert": { - "tool_description": "Download mp4 and mp3 from youtube", - "score": { - "avgServiceLevel": 99, - "avgLatency": 676, - "avgSuccessRate": 99, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "Pascal Code Compiler": { - "tool_description": "Pascal Code Compiler API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 456, - "avgSuccessRate": 100, - "popularityScore": 7.2, - "__typename": "Score" - } - }, - "UptoSite Link Shortener": { - "tool_description": "Link Shortener API for developers", - "score": { - "avgServiceLevel": 100, - "avgLatency": 311, - "avgSuccessRate": 100, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "Scrapey - Link Scraper": { - "tool_description": "Extract all links found on a web page by simply providing a URL to this API. Super fast and easy to use", - "score": { - "avgServiceLevel": 99, - "avgLatency": 1550, - "avgSuccessRate": 96, - "popularityScore": 9, - "__typename": "Score" - } - }, - "QR-Scanner-Api": { - "tool_description": "Scan QR & Barcode images from files or URLs and return the equivalent QR-Text or Barcode-Number plus code format.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1646, - "avgSuccessRate": 93, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "YouTube Video Data Extractor": { - "tool_description": "It is a simple api used to extract YouTube Video data such as title,description,etc.", - "score": null - }, - "QRickit QR Code QReator": { - "tool_description": "Dynamically generate QR Codes (URL, Calendar Events, Contact, Text, Email, etc,) for integration in your own website, applications, and other business or personal usage.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2549, - "avgSuccessRate": 100, - "popularityScore": 9, - "__typename": "Score" - } - }, - "QRCode": { - "tool_description": "Customisable QR Codes. Support for styles, images and more! Bare metal engine gives it incredible speed. Full documentation can be found at: https://linqr.app/docs", - "score": { - "avgServiceLevel": 100, - "avgLatency": 203, - "avgSuccessRate": 100, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "Judge0 CE": { - "tool_description": "The most advanced open-source online code execution system in the world.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1570, - "avgSuccessRate": 100, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "Arespass": { - "tool_description": "AresPass is a password analyzer that calculates its entropy and shows a complete report that includes the password fragments having low randomness. Among the analysis carried out are multi-language word search, keyboard sequence search or irregular entropy distribution, to mention some of them.", - "score": { - "avgServiceLevel": 71, - "avgLatency": 926, - "avgSuccessRate": 71, - "popularityScore": 7.2, - "__typename": "Score" - } - }, - "SEO Fast Audit": { - "tool_description": "One click onpage SEO audit API : Analyse the content from an URL the major SEO tags : title, description, H1, img, and links. insanely fast < 200ms", - "score": { - "avgServiceLevel": 95, - "avgLatency": 1644, - "avgSuccessRate": 95, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "QR Code API_v33": { - "tool_description": " This Api takes URL, or string and returns the QR code image", - "score": null - }, - "Measurement Unit Converter": { - "tool_description": "Say goodbye to the hassle of unit conversions with our Measurement Unit Converter API.\n\n", - "score": { - "avgServiceLevel": 100, - "avgLatency": 454, - "avgSuccessRate": 99, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "Quick QR Code Generator": { - "tool_description": "Generate QR code", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1163, - "avgSuccessRate": 100, - "popularityScore": 6.6, - "__typename": "Score" - } - }, - "Location to Timezone": { - "tool_description": "Translate latitude & longitude coordinates to a timezone string. \nLow Latency results within 1ms from the back-end server. High accuracy; results close to country borders will be correct.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 192, - "avgSuccessRate": 100, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "Codigos Postales MX": { - "tool_description": "Informacion de la locazion con el codigo postal", - "score": { - "avgServiceLevel": 100, - "avgLatency": 21067, - "avgSuccessRate": 100, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "UK PostCode API": { - "tool_description": "Auto populate your app & service with accurate and comprehensive PAF & Geocoding data from the Royal Mail", - "score": { - "avgServiceLevel": 84, - "avgLatency": 740, - "avgSuccessRate": 84, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "IP To Location - Apiip": { - "tool_description": "Apiip.net is an API service allowing customers to automate IP address validation and geolocation lookup in websites, applications, and back-office systems.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 358, - "avgSuccessRate": 100, - "popularityScore": 7.7, - "__typename": "Score" - } - }, - " Forward & Reverse Geocoding by googleMap api": { - "tool_description": "Forward & Reverse Geocoding based on googleMap api data. Find geocoordinates (latitude and longitude) for an address or use reverse geocoding to define positions for asset tracking and more.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 16394, - "avgSuccessRate": 100, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "Find By Address": { - "tool_description": "“Find By Address” API gets addresses for given search term. This API provides a JSON interface to search UK addresses. This API gives access to Royal Mail PAF data and Geocoding. his API uses the latest PAF and Multiple Residence data from Royal Mail.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1003, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "TimeZoneDB - Find Local Time Zone by Coordinate or Name": { - "tool_description": "TimeZoneDB finds you the local time zone of a place by latitude & longitude, or by the time zone name such as \"Europe/London\". You get local time in Unix timestamp, with GMT offset, daylight saving, and country code.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 283, - "avgSuccessRate": 17, - "popularityScore": 1.9, - "__typename": "Score" - } - }, - "World Cities and Countries": { - "tool_description": "The fastest and most updated API with rich data that allow you search cities from more than 2 million records. Also allows to search country data with other additional info.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2741, - "avgSuccessRate": 100, - "popularityScore": 7.7, - "__typename": "Score" - } - }, - "Timezone By API-Ninjas": { - "tool_description": "Timezone data for any location on the planet. See more info at https://api-ninjas.com/api/timezone.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1375, - "avgSuccessRate": 100, - "popularityScore": 8.2, - "__typename": "Score" - } - }, - "Location": { - "tool_description": "Get the locations using a REST API simple and free.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 988, - "avgSuccessRate": 89, - "popularityScore": 6.5, - "__typename": "Score" - } - }, - "Ip To Location": { - "tool_description": "100% free to use. Get location details from IP address, endpoint returns coordinates [latitude, longitude], ip, isp, host[ ip_address, prefix len, status, country, region, city, location,area code, country code", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1006, - "avgSuccessRate": 100, - "popularityScore": 7, - "__typename": "Score" - } - }, - "Egypt API": { - "tool_description": "The Egypt Lookup API users to retrieve in realtime the latitude, longitude, and address of a location in Egypt. The API utilizes the OpenStreetMap and Project-OSRM to retrieve up-to-date location data.", - "score": { - "avgServiceLevel": 98, - "avgLatency": 405, - "avgSuccessRate": 98, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "Timezone by Coordinates": { - "tool_description": "Get the Timezone, DST offset, and UTC offset of a location.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 620, - "avgSuccessRate": 100, - "popularityScore": 7.2, - "__typename": "Score" - } - }, - "Reverse Geocoding_v2": { - "tool_description": "This API gets address from a lat-long and latlong from a respective address.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 153, - "avgSuccessRate": 92, - "popularityScore": 7.7, - "__typename": "Score" - } - }, - "BDapi": { - "tool_description": "BD API is a RestAPI service. Divisions, Districts, Upazilla, Coordinates, etc of Bangladesh are available in Bangla and English within endpoints. Main Documentation website: https://bdapis.com/", - "score": { - "avgServiceLevel": 100, - "avgLatency": 486, - "avgSuccessRate": 100, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "IP Geolocator": { - "tool_description": "JSON API for geolocating IP addresses\nFree monthly requests: 100k.\nIP info provided: coordinates, city, timezone, country, continent, ASN & others.", - "score": { - "avgServiceLevel": 0, - "avgLatency": 166, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "City by API-Ninjas": { - "tool_description": "Get useful statistics on tens of thousands of cities around the world. See more info at https://api-ninjas.com/api/city.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 398, - "avgSuccessRate": 92, - "popularityScore": 9, - "__typename": "Score" - } - }, - "Partenaires Mobilis": { - "tool_description": "ConnaĂźtre et localiser les partenaires Mobilis de l'OPT-NC", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1031, - "avgSuccessRate": 93, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "NAVITIME Geocoding": { - "tool_description": "Return address informations including longitude/latitude and a postal code, by specifying keywords or a postal code. \nWe also provide Reverse geocoding function, which converts from longitude/latitude into address informations.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 255, - "avgSuccessRate": 99, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "Cameroon": { - "tool_description": "The Cameroon API provides endpoints to lookup locations, find facilities and perform geospatial operations such as distance calculation and directions between two locations in Cameroon.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 922, - "avgSuccessRate": 100, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "ip-lookup": { - "tool_description": "IP Lookup", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1748, - "avgSuccessRate": 100, - "popularityScore": 5.5, - "__typename": "Score" - } - }, - "Country Information and Conversion API": { - "tool_description": "The Country Information and Conversion API provides developers with a wide range of country-related data and conversion capabilities. \n\nHere are the details of what the API offers: \n\nCountry Name: The full name of the country. \nCountry Code: The unique country code that identifies the country.\nCapital: The capital city of the country. \nPopulation: The population count of the country.\nLanguage(s): The official language(s) spoken in the country.\nCurrency: The currency used in the country.\nTime...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 835, - "avgSuccessRate": 100, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "Get IP Address and basic info.": { - "tool_description": "best practice is using js for web apps.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 989, - "avgSuccessRate": 100, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "IP Address Tracker - Free": { - "tool_description": "This is a free service that will get you the ip geographical location information of your user.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 51, - "avgSuccessRate": 100, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Countries": { - "tool_description": "Get information on countries around the world. ISO2, ISO3, capitals, currencies, surface area, and more!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 428, - "avgSuccessRate": 100, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "https://ipfinder.io/": { - "tool_description": "ipfinder offers one of the leading IP to geolocation APIs and global IP database services worldwide. ", - "score": null - }, - "Geography _v2": { - "tool_description": "API that includes all the continents, countries and cities of the world. ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1733, - "avgSuccessRate": 92, - "popularityScore": 7.7, - "__typename": "Score" - } - }, - "Woosmap": { - "tool_description": "Location-based Search Platform", - "score": { - "avgServiceLevel": 100, - "avgLatency": 493, - "avgSuccessRate": 19, - "popularityScore": 1.9, - "__typename": "Score" - } - }, - "Australian postcode to suburb": { - "tool_description": "Find out all the Australian suburbs using postcode.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 319, - "avgSuccessRate": 100, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "get cities": { - "tool_description": "get all cities", - "score": { - "avgServiceLevel": 0, - "avgLatency": 0, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "IP Address Geolocation": { - "tool_description": "Complete free IP address geolocation API", - "score": null - }, - "KFC locations": { - "tool_description": "Our KFC Locations API is a comprehensive and accurate data source of all KFC restaurant locations in the United States. This API allows users to retrieve detailed information about each location, including address, phone number, hours of operation, and more. This data can be easily integrated into a wide range of use cases, such as delivery services, marketing, retail analysis, navigation, and research and development.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 247, - "avgSuccessRate": 99, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "IP Lookup by API-Ninjas": { - "tool_description": "Look up location information for any valid IP address. See more info at https://api-ninjas.com/api/iplookup.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 237, - "avgSuccessRate": 99, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "Income by Zipcode": { - "tool_description": "Income by zipcode is a simple API for getting income by zipcode data in the United States.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1416, - "avgSuccessRate": 100, - "popularityScore": 7, - "__typename": "Score" - } - }, - "Canada Postal Codes": { - "tool_description": "A list of postal codes in Canada", - "score": { - "avgServiceLevel": 100, - "avgLatency": 637, - "avgSuccessRate": 40, - "popularityScore": 7.4, - "__typename": "Score" - } - }, - "Address Autosuggest": { - "tool_description": "\"Address Autosuggest\" API buit to suggests address results for a given search term. This API provides a JSON interface to extract address suggestions for a complete or partial address query.his API uses the latest PAF and Multiple Residence data from Royal Mail.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1123, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "Locations - Languages, Countries & German Cities": { - "tool_description": "API to request information about Languages, Countries and German Citites", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1623, - "avgSuccessRate": 100, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "Find By PostCode": { - "tool_description": "“Find By PostCode” API get addresses for the given UK PostCode. This API provides a JSON interface to search UK addresses for a postcode.his API uses the latest PAF and Multiple Residence data from Royal Mail.", - "score": { - "avgServiceLevel": 93, - "avgLatency": 1674, - "avgSuccessRate": 93, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "Tunisia API": { - "tool_description": "The Tunisia Lookup API allows you to look up the latitude, longitude, and address of a location in Tunisia.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 446, - "avgSuccessRate": 100, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "Viet Nam administrative divisions": { - "tool_description": "Online API for Viet Nam administrative divisions", - "score": { - "avgServiceLevel": 100, - "avgLatency": 572, - "avgSuccessRate": 100, - "popularityScore": 8, - "__typename": "Score" - } - }, - "Location_v2": { - "tool_description": "We are providing a location search result according to your search query", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3004, - "avgSuccessRate": 100, - "popularityScore": 8.2, - "__typename": "Score" - } - }, - "Geocoding Places": { - "tool_description": "Geocoding places Info with images & videos.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3595, - "avgSuccessRate": 83, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "Geocoder - United States Census Bureau": { - "tool_description": "Census geocoder provides interactive & programmatic (REST) access to users interested in matching addresses to geographic locations and entities containing those addresses.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 231, - "avgSuccessRate": 100, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "bng2latlong": { - "tool_description": "Convert an OSGB36 easting and northing (British National Grid) to WGS84 latitude and longitude.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 873, - "avgSuccessRate": 100, - "popularityScore": 7.6, - "__typename": "Score" - } - }, - "Tanzania API": { - "tool_description": "The Tanzania API provides endpoints to lookup locations, find facilities and perform geospatial operations such as distance calculation and directions between two locations in Tanzania.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 617, - "avgSuccessRate": 100, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "Nigeria API": { - "tool_description": "Welcome to the Nigeria API! This API provides endpoints to lookup locations, find facilities and perform geospatial operations such as distance calculation and directions between two locations in Nigeria.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 538, - "avgSuccessRate": 100, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "IP Geo": { - "tool_description": "API returns location data such as country, city, latitude, longitude, timezone, asn, currency, security data for IPv4 and IPv6 addresses in JSON formats.", - "score": { - "avgServiceLevel": 50, - "avgLatency": 1550, - "avgSuccessRate": 50, - "popularityScore": 7.4, - "__typename": "Score" - } - }, - "Address Correction and Geocoding": { - "tool_description": "Postal Address Correction, Validation, Standardization and Geocoding", - "score": { - "avgServiceLevel": 100, - "avgLatency": 273, - "avgSuccessRate": 100, - "popularityScore": 9, - "__typename": "Score" - } - }, - "GeoSource API": { - "tool_description": "Introducing GeoSource API - the comprehensive API service that provides a wealth of geo-information on countries, states, cities, zip codes, currencies, flags, and much more. With GeoSource API, developers can easily access accurate and up-to-date geo-information to enhance their applications and services.\n", - "score": { - "avgServiceLevel": 100, - "avgLatency": 348, - "avgSuccessRate": 100, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "District Capitals In Ghana": { - "tool_description": "This API contains all district capitals in Ghana.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3708, - "avgSuccessRate": 95, - "popularityScore": 8.2, - "__typename": "Score" - } - }, - "IP Geolocation API": { - "tool_description": "Get the location of any IP with a world-class API serving city, region, country and lat/long data.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 689, - "avgSuccessRate": 100, - "popularityScore": 7.8, - "__typename": "Score" - } - }, - "Get IP Info_v2": { - "tool_description": "This is an API to get the Longitude and Latitude Information on the basis of an IP.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 433, - "avgSuccessRate": 100, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "GeoWide": { - "tool_description": "GeoWide API efficiently calculates distances between geographic points, enabling accurate measurements for various applications. With minimal latency, it returns the distance in kilometers, miles, or other units, empowering developers to incorporate precise geographic calculations into their projects effortlessly.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1951, - "avgSuccessRate": 100, - "popularityScore": 7, - "__typename": "Score" - } - }, - "IP to Country Name": { - "tool_description": "Using This free API developers can check Country of any IP, and this API can be used absolutly free in any application. or website.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 946, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "Dubai Makani": { - "tool_description": "An official geographic addressing system in the emirates.", - "score": null - }, - "IsItWater.com": { - "tool_description": "An API to determine if a coordinate is water or land.", - "score": { - "avgServiceLevel": 98, - "avgLatency": 486, - "avgSuccessRate": 98, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "58 provinces of algeria": { - "tool_description": "All provinces of algeria", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2160, - "avgSuccessRate": 100, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "Services": { - "tool_description": "Timezone by sity", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3855, - "avgSuccessRate": 100, - "popularityScore": 6.3, - "__typename": "Score" - } - }, - "Uganda API": { - "tool_description": "The Uganda API provides endpoints to lookup locations, find facilities and perform geospatial operations such as distance calculation and directions between two locations in Uganda.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 457, - "avgSuccessRate": 100, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "UK Postcode To Latitude and Longitude": { - "tool_description": "Convert a UK Postcode To Latitude and Longitude", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1055, - "avgSuccessRate": 100, - "popularityScore": 6.6, - "__typename": "Score" - } - }, - "Address Validation NL": { - "tool_description": "Address Validation NL API returns a valid Dutch address (street name and city/town) for a given postcode and house number", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1089, - "avgSuccessRate": 74, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "getCountries": { - "tool_description": "get all countries of the world", - "score": { - "avgServiceLevel": 100, - "avgLatency": 443, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "Nearby Tesla Superchargers": { - "tool_description": "Find nearby Tesla Superchargers. Global.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 437, - "avgSuccessRate": 100, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "Find By UDPRN": { - "tool_description": "“Find By UDPRN” API gets address for the specified UDPRN.\n\nUDPRN stands for ‘Unique Delivery Point Reference Number. A UDPRN is a unique numeric code (e.g. 64983) for any premise on the Postcode Address File.\n\nThis API uses the latest PAF and Multiple Residence data from Royal Mail.UDPRN are unique identifiers for every address in the UK that Royal Mail has in its database.", - "score": { - "avgServiceLevel": 67, - "avgLatency": 2209, - "avgSuccessRate": 67, - "popularityScore": 7, - "__typename": "Score" - } - }, - "Itcooking.eu - IP Geolocation": { - "tool_description": "IP Geolocation REST API by Itcooking.eu. Fast and easy way to get (lookup) geolocation data to IPv4 and IPv6 address.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1006, - "avgSuccessRate": 92, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "Nearest Delhi Metro Station": { - "tool_description": "\"Nearest Delhi Metro Station\" API is a web service that provides users with the nearest Delhi Metro station based on the latitude and longitude coordinates provided as input.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1788, - "avgSuccessRate": 100, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "Distance Calculator_v3": { - "tool_description": "Calculates the distance between two coordinates", - "score": { - "avgServiceLevel": 100, - "avgLatency": 793, - "avgSuccessRate": 99, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "shw-geolocation-api": { - "tool_description": "API to fetch country information for given IP Address", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1329, - "avgSuccessRate": 100, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "USA ZIP Codes Inside Radius": { - "tool_description": "Returns a list of all US ZIP codes that fall within a defined radius", - "score": { - "avgServiceLevel": 100, - "avgLatency": 367, - "avgSuccessRate": 100, - "popularityScore": 7.1, - "__typename": "Score" - } - }, - "India Pincode API": { - "tool_description": "Allows developers to get accurate and comprehensive India PinCode & Places data from India Post Office", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2503, - "avgSuccessRate": 100, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "Geokeo Forward Geocoding": { - "tool_description": "Geocoding Api for Forward geocoding and Reverse Geocoding with 2500 free api requests", - "score": { - "avgServiceLevel": 100, - "avgLatency": 502, - "avgSuccessRate": 100, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "IP Geolocation Lookup": { - "tool_description": "API returns location data such as country, region, city, zip and more", - "score": { - "avgServiceLevel": 73, - "avgLatency": 772, - "avgSuccessRate": 73, - "popularityScore": 8.2, - "__typename": "Score" - } - }, - "Reverse Geocoding_v3": { - "tool_description": "Translate locations on the map into human-readable addresses.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3318, - "avgSuccessRate": 100, - "popularityScore": 7.4, - "__typename": "Score" - } - }, - "IP Geolocalization API": { - "tool_description": "IP Geolocalization API is a powerful tool for determining the location of an IP address. It offers accurate and up-to-date information, including the country, region, city, and latitude/longitude coordinates of the IP. It is perfect for businesses, researchers, and developers looking to understand the location of their website visitors or users.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 604, - "avgSuccessRate": 100, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "IP Directory": { - "tool_description": "Get IP geolocation data, provider data, and threat intelligence", - "score": { - "avgServiceLevel": 13, - "avgLatency": 374, - "avgSuccessRate": 13, - "popularityScore": 2.1, - "__typename": "Score" - } - }, - "MapReflex": { - "tool_description": "US Zip Codes, Cities, States and Counties boundaries API, which provides info in common GeoJson format for instant integration with existing maps like Google, etc., or with your custom application.", - "score": { - "avgServiceLevel": 96, - "avgLatency": 348, - "avgSuccessRate": 92, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "CĂłdigos Postales de España": { - "tool_description": "Es una API que permite a los usuarios encontrar el municipio correspondiente a un cĂłdigo postal especĂ­fico en España. Simplemente ingresa el cĂłdigo postal y recibirĂĄs informaciĂłn detallada del municipio asociado. Es una herramienta fĂĄcil de usar e ideal para desarrolladores y aplicaciones que requieren informaciĂłn precisa de municipios basada en cĂłdigos postales españoles", - "score": { - "avgServiceLevel": 93, - "avgLatency": 2106, - "avgSuccessRate": 93, - "popularityScore": 8, - "__typename": "Score" - } - }, - "Localization services": { - "tool_description": "Accurate localization services\n\nEmail and phone validators are already available.\n\nWe are ramping up, stay tuned for new features!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 602, - "avgSuccessRate": 100, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "Global WebServer or IP Response Time and Location": { - "tool_description": "Check any domain or IP address for response time from 12 Global locations in all continents. IPv4 and IPv6 addresses detected, location, ping time, http time ,https time\n\nLocations\n1. California USA\n2. New York USA\n3. Toronto Canada\n4. London UK\n5. Bahrain UAE\n6. Mumbai India\n7. Singapore\n8. Tokyo Japan\n9. Sydney Australia\n10. Sao Paulo Brazil\n11. Cape Town South Africa\n12. Hong Kong China", - "score": { - "avgServiceLevel": 100, - "avgLatency": 52534, - "avgSuccessRate": 100, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "World Time": { - "tool_description": "WorldTimeAPI is a simple web service which returns the local-time for a given timezone as either JSON or plain-text. Some additional information is provided, such as whether that timezone is currently in Daylight Savings Time, when DST starts and ends, the UTC offset, etc.", - "score": { - "avgServiceLevel": 89, - "avgLatency": 59, - "avgSuccessRate": 89, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "BD": { - "tool_description": "BD LOCATIONS NAME API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 647, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "IP Location Lookup Service": { - "tool_description": "Feed this API an IP Address and have it perform a quick and easy lookup for you.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 996, - "avgSuccessRate": 76, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "Vessels": { - "tool_description": "Track vessels with AIS data API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 229, - "avgSuccessRate": 100, - "popularityScore": 6.5, - "__typename": "Score" - } - }, - "mymappi": { - "tool_description": "REST Location APIs such as Geocoding, Roads, Directions and Places.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 9, - "avgSuccessRate": 100, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "Pincode Distance Measurement ": { - "tool_description": "Pincode distance calculator API allows users to calculate the distance between two or more pin codes or zip codes. ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 489, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "Timezone by Location": { - "tool_description": "Convert any GPS Lat/Lon location into its timezone", - "score": { - "avgServiceLevel": 100, - "avgLatency": 473, - "avgSuccessRate": 100, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "WGD Places": { - "tool_description": "This API uses our custom built database to be able to get Country and City information, it has all the information you could ever need. Search Cities and towns within a country.\nGet country and city data. Within country data you have: Capital city, Latitude, Longitude, Continent, Sub region, Population, Calling code, Flag, ISO2, ISO3, Borders, Native name, Basic information, States, Timezones, Currency and Languages. Within the City call you have: Country, City and State.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 815, - "avgSuccessRate": 100, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "reverse geocode": { - "tool_description": "reverse geocoding", - "score": null - }, - "IP Geolocation Metadata": { - "tool_description": "Get all metadata from an IP address", - "score": { - "avgServiceLevel": 100, - "avgLatency": 35, - "avgSuccessRate": 100, - "popularityScore": 7.5, - "__typename": "Score" - } - }, - "Spott": { - "tool_description": "Search cities, countries and administrative divisions by name, autocompletion or IP.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 231, - "avgSuccessRate": 97, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "Distance Calculation API by Pizza API": { - "tool_description": "The Distance Calculation API is incredibly simple to use. Simply provide the latitude and longitude coordinates of the two locations you want to measure and the metric whether you want the result to be in km, mi (miles), m(metres), feet, and the API will return the distance between them in a user-friendly format. The API uses the latest algorithms and techniques to provide fast and accurate results, making it the ideal solution for developers who need to incorporate distance calculation into...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 185, - "avgSuccessRate": 100, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "IP Address": { - "tool_description": "Low latency API to retrieve User IP Address. Use to integrate on web based client apps to determine IP address of user.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1293, - "avgSuccessRate": 100, - "popularityScore": 5.6, - "__typename": "Score" - } - }, - "ipstack": { - "tool_description": "Locate and identify website visitors by IP address. ipstack offers one of the leading IP to geolocation APIs and global IP database services worldwide.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 253, - "avgSuccessRate": 100, - "popularityScore": 9, - "__typename": "Score" - } - }, - "Country by API-Ninjas": { - "tool_description": "Get useful statistics on every country in the world. See more info at https://api-ninjas.com/api/country.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1167, - "avgSuccessRate": 98, - "popularityScore": 9, - "__typename": "Score" - } - }, - "GEOIP_v2": { - "tool_description": "API returns location data such as country, city, latitude, longitude, timezone, asn, currency, security data for IPv4 and IPv6 addresses in JSON or XML formats.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 323, - "avgSuccessRate": 100, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "IP Geolocation Find IP Location and IP Info": { - "tool_description": "IP Geolocation API allows developers to get geolocation information for a given IP address. Data points returned by this GeoIP API include city, state, province, country, continent, latitude, longitude, region, timezone, current time, organization, ISP, local currency, and country flags. This IP Location API can be used for content personalization, geotargeting, geofencing, ad targeting, digital rights management, form auto-completion, etc. With the free plan, you can make 2,000 IP lookup API...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 952, - "avgSuccessRate": 100, - "popularityScore": 8.2, - "__typename": "Score" - } - }, - "Elevation From Latitude and Longitude": { - "tool_description": "Find the elevation at a specified location.", - "score": { - "avgServiceLevel": 99, - "avgLatency": 621, - "avgSuccessRate": 99, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "Australian Suburbs": { - "tool_description": "Australian suburbs finder. Autocomplete funcionality and Distance calculator", - "score": { - "avgServiceLevel": 67, - "avgLatency": 1201, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Ghana API": { - "tool_description": "Welcome to the Ghanaian Location Lookup API! This API allows you to retrieve the latitude, longitude, and name of any location in Ghana.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 449, - "avgSuccessRate": 100, - "popularityScore": 8.2, - "__typename": "Score" - } - }, - "IP forensics - IP Geolocation, Currency Exchange And Threat Intelligence API": { - "tool_description": "IP Geolocation, Currency Exchange And Threat Intelligence API\n\nUnderstand your audience and act upon — locate visitors by IP address, enrich forms, target mobile users, detect VPNs, prevent online fraud, analyze logs, perform geo IP redirections, and more. \n\nWe provide real-time and historical exchange rates for 200+ world currencies including cryptocurrency, delivering currency pairs in universally usable JSON format - compatible with any of your applications. \n\nSo if you are looking for b...", - "score": null - }, - "Stadia Maps Time Zone API": { - "tool_description": "The Stadia TZ API provides time zone information, as well as information about any special offset (such as DST) in effect, now or in the future.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 174, - "avgSuccessRate": 100, - "popularityScore": 6.8, - "__typename": "Score" - } - }, - "Wyre Data": { - "tool_description": "", - "score": { - "avgServiceLevel": 100, - "avgLatency": 911, - "avgSuccessRate": 100, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "Senegal API": { - "tool_description": "The Senegal Lookup API allows you to look up the latitude, longitude, and address of a location in Senegal.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 498, - "avgSuccessRate": 100, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "Feroeg - Reverse Geocoding": { - "tool_description": "Free Reverse Geocoding service - Get a full customizable text address from latitude and longitude pairs.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 237, - "avgSuccessRate": 100, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "Nearby Places": { - "tool_description": "Get nearby establishments.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 902, - "avgSuccessRate": 91, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "US Cellular": { - "tool_description": "Provides guidance on using the Terminal Location interface which allows a Web application to query the location of individual subscribers.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 809, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "Local Search": { - "tool_description": "The Soleo Local Search API provides access to over 15M local businesses and the highest monetization of your search traffic. The company’s proprietary platform utilizes location-centric search algorithms to best match a user’s request with the most relevant businesses nearby – these searches take business category, business location, and past ad performance into account to find the right match for the user. It also provides access to a large inventory of sponsored advertisements. By blending targeted ads with other local business listings, application developers can monetize their apps through advertising and still provide users with a true set of search results.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 614, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "US Zip Code Information": { - "tool_description": "The fastest API to access ZIP Code Information like City, State, County, AreaCode, Latitude, Longitude etc for a given zip code", - "score": { - "avgServiceLevel": 100, - "avgLatency": 553, - "avgSuccessRate": 100, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Rest Country API": { - "tool_description": "This project is a resource for accessing information about countries around the world through a REST API (Application Programming Interface). It is inspired by the website restcountries.com and is freely available for anyone to use. The project is open source, meaning that the source code is publicly available and can be modified by anyone. It allows users to retrieve data about each country, including details about its geography, population, and more, through simple API calls. Whether you're...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 171, - "avgSuccessRate": 98, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "World Time by API-Ninjas": { - "tool_description": "Get the current time for any location in the world. See more info at https://api-ninjas.com/api/worldtime", - "score": { - "avgServiceLevel": 100, - "avgLatency": 780, - "avgSuccessRate": 84, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "US States and Postal areas in GeoJSON": { - "tool_description": "US States and Postal areas in GeoJSON", - "score": { - "avgServiceLevel": 100, - "avgLatency": 248, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "UK Postcode": { - "tool_description": "Integrate this API with your website's address form to quickly and accurately auto-fill UK postal addresses or find locations of addresses. This API contains a database of almost 1.7 million UK postcodes, along with address and location information.\n\nFor a simple demo, visit https://tomwimmenhove.com/ukpostcode/", - "score": { - "avgServiceLevel": 100, - "avgLatency": 508, - "avgSuccessRate": 99, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "World Country": { - "tool_description": "More than 200+ countries, 5K states and 150K cities with various information.", - "score": { - "avgServiceLevel": 98, - "avgLatency": 403, - "avgSuccessRate": 98, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "PT Postcodes": { - "tool_description": "Portuguese postcode lookup", - "score": { - "avgServiceLevel": 100, - "avgLatency": 8, - "avgSuccessRate": 100, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "Referential": { - "tool_description": "The fastest API to access countries, states, cities, continents, dial and zip codes in up to 20 languages. A collection of data APIs to support forms, signups, search and lookup. Our endpoints are optimized for speed and size. Our data is regularly maintained and comes from International Standardization bodies, the United Nations, government surveys and GIS datasets. We do not scrape WikiPedia etc", - "score": { - "avgServiceLevel": 100, - "avgLatency": 35, - "avgSuccessRate": 99, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "URL Lookup by API-Ninjas": { - "tool_description": "Lookup location information for any URL domain. See more info at https://api-ninjas.com/api/urllookup.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 466, - "avgSuccessRate": 97, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "Pharmacies de garde NC": { - "tool_description": "API permettant d'obtenir les informations sur les pharmacies de garde en Nouvelle-CalĂ©donie", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1579, - "avgSuccessRate": 100, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "CatchLoc": { - "tool_description": "[For Gper Owner Only] Catchloc is a platform that controls the location and information collected by spacosa's devices.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 163, - "avgSuccessRate": 100, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "Schweizer Postleitzahlen": { - "tool_description": "API to get political towns from a ZIP-code (Postleitzahl)\nA ZIP-code can belong to multiple towns.\nThe data is updated daily.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1243, - "avgSuccessRate": 100, - "popularityScore": 6.9, - "__typename": "Score" - } - }, - "BPS": { - "tool_description": "Les boĂźtes postales (BPs), codes postaux, localitĂ©s,communes, codes cedex de Nouvelle-CalĂ©donie.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 892, - "avgSuccessRate": 94, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "GoApis Geocoding API": { - "tool_description": "Goapis Geocoding API is an efficient and affordable alternative to Google Maps Geocoding API. It enables developers to convert addresses into coordinates and vice versa, for accurate location mapping and distance calculation. It's an ideal solution for businesses seeking a reliable geocoding service that can enhance their app or website user experience. With Goapis, you can easily develop location-based apps and plot data on maps. Try Goapis Geocoding API today and streamline your development...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 995, - "avgSuccessRate": 100, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "ip-to-location_v2": { - "tool_description": "API returns location data such as country, city, latitude, longitude, timezone ...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 600, - "avgSuccessRate": 100, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "IP Geo Location and IP Reputation": { - "tool_description": "This API will provide geo location data such as: country, Region, City, Latitude, Longitude, Time Zone, Zip Code, Flag and much more...Also provides: IP Blacklist, Currencies, Languages, TLD, Host, and more...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 4997, - "avgSuccessRate": 100, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "IP Geolocation_v3": { - "tool_description": "IP Geolocation API allows developers to get geolocation information for a given IP address. Data points returned by this GeoIP API include city, state, province, country, continent, latitude, longitude, region, timezone, current time, organization, ISP, local currency, and country flags. This IP Location API can be used for content personalization, geotargeting, geofencing, ad targeting, digital rights management, form auto-completion, etc. With the free plan, you can make 2,000 IP lookup API...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1226, - "avgSuccessRate": 100, - "popularityScore": 7.3, - "__typename": "Score" - } - }, - "ViaCEP": { - "tool_description": "Webservice gratuito para pesquisa de endereço via CEP. https://viacep.com.br", - "score": { - "avgServiceLevel": 100, - "avgLatency": 556, - "avgSuccessRate": 76, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "MX - Email server UP or DOWN": { - "tool_description": "With this API you can check if email server exist or not on some domain.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1449, - "avgSuccessRate": 100, - "popularityScore": 7.2, - "__typename": "Score" - } - }, - "Yandex SERP": { - "tool_description": "🍏 Gain an edge in SEO with our Yandex SERP API. Cost-effective and incredibly user-friendly. Unleash your potential today!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 675, - "avgSuccessRate": 100, - "popularityScore": 9, - "__typename": "Score" - } - }, - "Plerdy": { - "tool_description": "Plerdy ( https://www.plerdy.com/ ) is multifunctional SaaS solution for an improvement of conversion on websites.", - "score": null - }, - "world population by decade and growth rate": { - "tool_description": "world population by decade and growth rate", - "score": { - "avgServiceLevel": 100, - "avgLatency": 551, - "avgSuccessRate": 100, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "ICS-CERT Advisories": { - "tool_description": "An API to retrieve advisories for Industrial Control Systems that provide timely information about current security issues, vulnerabilities, and exploits from CISA.gov.", - "score": { - "avgServiceLevel": 99, - "avgLatency": 3118, - "avgSuccessRate": 99, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "Price Tracking Tools": { - "tool_description": "This API currently helps to query for prices of products from Amazon. We will support more other sites/brands soon. Stay tune!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1682, - "avgSuccessRate": 100, - "popularityScore": 7.4, - "__typename": "Score" - } - }, - "Simple Email Notifications": { - "tool_description": "Notify on cronjob failure. Notify when command execution finished or failed. And more...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 269, - "avgSuccessRate": 100, - "popularityScore": 7.4, - "__typename": "Score" - } - }, - "Similar Web": { - "tool_description": "This API helps you to query website traffic and key metrics for any website, including engagement rate, traffic ranking, keyword ranking and traffic source... to create a plugin like similarweb.com", - "score": { - "avgServiceLevel": 99, - "avgLatency": 1035, - "avgSuccessRate": 99, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "Scan Web Heades API": { - "tool_description": "This API takes domain name as parameter and returns headers status as response", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1457, - "avgSuccessRate": 100, - "popularityScore": 7.6, - "__typename": "Score" - } - }, - "About My IP": { - "tool_description": "Connection information about an IP Address", - "score": { - "avgServiceLevel": 0, - "avgLatency": 17065, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "Patient": { - "tool_description": "Patient Database Management", - "score": { - "avgServiceLevel": 100, - "avgLatency": 7, - "avgSuccessRate": 100, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "SSL Snitch": { - "tool_description": "The easy way to monitor SSL certificate expirations.", - "score": { - "avgServiceLevel": 85, - "avgLatency": 9973, - "avgSuccessRate": 77, - "popularityScore": 7.8, - "__typename": "Score" - } - }, - "SearchingWebRequest": { - "tool_description": "We need to search text using Specific keyword", - "score": null - }, - "Counter": { - "tool_description": "Count views on your website or any other specific action on your application.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 650, - "avgSuccessRate": 100, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "Newly Registered Domains": { - "tool_description": "Newly Registered Domains API (v1) lets you check which domains have been added.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3065, - "avgSuccessRate": 100, - "popularityScore": 7.5, - "__typename": "Score" - } - }, - "Ambee Soil Data": { - "tool_description": "Global real-time soil API. Integrate soil API for global real-time soil information. Test an API call. Get accurate & actionable data insights. ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 343, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "Youtube classification api": { - "tool_description": "Train your own machine learning project Stop wasting time scrolling through a list of videos. Use our Youtube classification API to get the information you need in the most efficient way possible. With our API and your favorite programming language, you can classify videos into like count, comment count, and rating count so that you can find what you're looking for in no time.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 556, - "avgSuccessRate": 100, - "popularityScore": 8.2, - "__typename": "Score" - } - }, - "Ambee Pollen Data": { - "tool_description": "World’s first-ever pollen API. Integrate Pollen API for global hyper-local real-time data on pollen count. Test an API call. Get accurate & actionable data insights.ollen count. Test an API call. Get accurate & actionable data insights.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 242, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Pages hosted on domain": { - "tool_description": "Find web pages hosted on a domain, including historic pages. ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1426, - "avgSuccessRate": 50, - "popularityScore": 5.9, - "__typename": "Score" - } - }, - "OTP": { - "tool_description": "send Account Registration OTP", - "score": { - "avgServiceLevel": 100, - "avgLatency": 360, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "Screenshot Maker": { - "tool_description": "Take perfect screenshot from websites. Powered by nodejs\n\nThe service work through proxy servers. \nUse proxyCountry : asia | europe | north_america\nOr proxyState : france | canada | singapore | united_kingdom | germany\notherwise it will pick one randomly", - "score": { - "avgServiceLevel": 96, - "avgLatency": 2927, - "avgSuccessRate": 64, - "popularityScore": 7.6, - "__typename": "Score" - } - }, - "openSquat": { - "tool_description": "The openSquat is an open-source project for phishing domain and domain squatting detection by searching daily newly registered domains impersonating legit domains.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 9996, - "avgSuccessRate": 98, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Certficate": { - "tool_description": "Get the SSL certificate details of any public host. The binding of the certificate should be on port 443", - "score": { - "avgServiceLevel": 100, - "avgLatency": 608, - "avgSuccessRate": 100, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "IFC BIM Services": { - "tool_description": "IFC models related BIM services\nGITHUB Repository : https://github.com/aminov-jp/BIMIFCServices", - "score": { - "avgServiceLevel": 100, - "avgLatency": 274, - "avgSuccessRate": 25, - "popularityScore": 1.4, - "__typename": "Score" - } - }, - "pl1box1": { - "tool_description": "myshort2", - "score": { - "avgServiceLevel": 100, - "avgLatency": 690, - "avgSuccessRate": 20, - "popularityScore": 1.5, - "__typename": "Score" - } - }, - "Online Code Compiler": { - "tool_description": "Online code compiler API in 75+ languages. Integrate the code compiler API into your applications/sites simply and quickly.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1111, - "avgSuccessRate": 87, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "PracticaUipath": { - "tool_description": "Practica", - "score": null - }, - "Most Exclusive API": { - "tool_description": "Be exclusive ! Only one requester at a time gets access to exclusive content. Exclusiveness is passed on 5 min after it was assigned. The caller that is first to request the api after the previous exclusiveness expired gets exclusive access to the API.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1319, - "avgSuccessRate": 0, - "popularityScore": 0, - "__typename": "Score" - } - }, - "Horoscope Astrology": { - "tool_description": "The Horoscope API Server provides daily horoscope predictions for all zodiac signs. Users can access the API to retrieve daily astrological forecasts for their specific sun sign, as well as general horoscope information for the entire zodiac. The API is designed to be simple and easy to use, allowing developers to integrate horoscope content into their own applications and websites. The predictions are generated using algorithms that consider the position of the planets and other astrological...", - "score": { - "avgServiceLevel": 96, - "avgLatency": 432, - "avgSuccessRate": 96, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "Sunnah Fasting": { - "tool_description": "List of sunnah fasting schedule. Start from year 2022.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 237, - "avgSuccessRate": 100, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "quotsy": { - "tool_description": "api for quots", - "score": { - "avgServiceLevel": 100, - "avgLatency": 540, - "avgSuccessRate": 40, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "World of Quotes": { - "tool_description": "API returns over 50,000+ famous quotes from over 10,000+ great authors and over 350+ different categories.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2019, - "avgSuccessRate": 100, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "GroupDocs.Annotation Cloud": { - "tool_description": "The GroupDocs.Annotation Cloud is a REST API that helps you apply text & figure annotations to the documents in the cloud.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 501, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Testing Demo": { - "tool_description": "Testing Demo", - "score": { - "avgServiceLevel": 100, - "avgLatency": 192, - "avgSuccessRate": 0, - "popularityScore": 0, - "__typename": "Score" - } - }, - "Calulator": { - "tool_description": "Calculator ", - "score": null - }, - "csa_v2": { - "tool_description": "Colegio Santa Ana", - "score": null - }, - "Borsa": { - "tool_description": "Borsa", - "score": { - "avgServiceLevel": 100, - "avgLatency": 632, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "SurveyMethods": { - "tool_description": "The SurveyMethods API is designed so that you can integrate third party applications (like HR, CRM, Helpdesk, etc.) with SurveyMethods using HTTP methods. To use our API, you must have an account with SurveyMethods. Our API is available to all users regardless of package preferences.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 750, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "Touchbase": { - "tool_description": "A school's score or placement on the API is designed to be an indicator of a school's performance level and is calculated annually by the California Department of Education", - "score": null - }, - "Shreehari": { - "tool_description": "Shreehari", - "score": { - "avgServiceLevel": 100, - "avgLatency": 366, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "GroupDocs.Merger Cloud": { - "tool_description": "GroupDocs.Merger Cloud is a REST API that allows you to join multiple documents and manipulate single document structure across a wide range of supported document types.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 482, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "backend": { - "tool_description": "backend", - "score": { - "avgServiceLevel": 100, - "avgLatency": 296, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Inferno": { - "tool_description": "Discord Bot", - "score": null - }, - "uniswap-v2-api": { - "tool_description": "REST API of Uniswap V2", - "score": { - "avgServiceLevel": 40, - "avgLatency": 2466, - "avgSuccessRate": 12, - "popularityScore": 2, - "__typename": "Score" - } - }, - "MyPersonal": { - "tool_description": "My API", - "score": null - }, - "Heck Yes Markdown": { - "tool_description": "Markdownifier", - "score": { - "avgServiceLevel": 100, - "avgLatency": 442, - "avgSuccessRate": 100, - "popularityScore": 5.9, - "__typename": "Score" - } - }, - "Cors Proxy": { - "tool_description": "Cross-Origin Resource Sharing Proxy", - "score": { - "avgServiceLevel": 100, - "avgLatency": 719, - "avgSuccessRate": 63, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "GroupDocs Watermark Cloud": { - "tool_description": "REST API to add, customize and search text and image watermarks within documents of various file formats.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 477, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "URLTEST": { - "tool_description": "This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 683, - "avgSuccessRate": 55, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "J2ACoin": { - "tool_description": "Test", - "score": { - "avgServiceLevel": 100, - "avgLatency": 361, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "GroupDocs.Classification Cloud": { - "tool_description": "GroupDocs.Classification Cloud is a REST API for document classification.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 5890, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "ODAM": { - "tool_description": "ODAM", - "score": { - "avgServiceLevel": 100, - "avgLatency": 707, - "avgSuccessRate": 100, - "popularityScore": 7.6, - "__typename": "Score" - } - }, - "Echo": { - "tool_description": "Echo Request", - "score": { - "avgServiceLevel": 100, - "avgLatency": 423, - "avgSuccessRate": 100, - "popularityScore": 7.7, - "__typename": "Score" - } - }, - "GroupDocs Editor Cloud": { - "tool_description": "GroupDocs.Editor Cloud is a document editing REST API for loading and modifying documents in the cloud.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 454, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "myapi": { - "tool_description": "api for my own use", - "score": null - }, - "Facts by API-Ninjas": { - "tool_description": "Get endless interesting facts. See more info at https://api-ninjas.com/api/facts.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 185, - "avgSuccessRate": 99, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "Random Username Generate": { - "tool_description": "If you need a random username for a website or application, then Ugener is the perfect choice for millions of random ideas.", - "score": { - "avgServiceLevel": 65, - "avgLatency": 4990, - "avgSuccessRate": 65, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "Ecoindex": { - "tool_description": "This API provides an easy way to analyze websites with Ecoindex. You have the ability to:\n\n- Make a page analysis\n- Define screen resolution\n- Save results to a DB\n- Retrieve results\n- Limit the number of request per day for a given host\n\nThis API is built on top of ecoindex-python with FastAPI", - "score": { - "avgServiceLevel": 100, - "avgLatency": 134, - "avgSuccessRate": 23, - "popularityScore": 2.3, - "__typename": "Score" - } - }, - "hanime-python-api": { - "tool_description": "Hanime API with more feature and free to use", - "score": { - "avgServiceLevel": 64, - "avgLatency": 592, - "avgSuccessRate": 11, - "popularityScore": 1.8, - "__typename": "Score" - } - }, - "sample-app-config.json": { - "tool_description": "version", - "score": { - "avgServiceLevel": 100, - "avgLatency": 7, - "avgSuccessRate": 100, - "popularityScore": 5.3, - "__typename": "Score" - } - }, - "MyPolicyAPI": { - "tool_description": "Policy functions", - "score": { - "avgServiceLevel": 100, - "avgLatency": 356, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "chevereto": { - "tool_description": "chevereto", - "score": null - }, - "ZomatoAPI-bhaskar": { - "tool_description": "ZomatoAPI-bhaskar", - "score": { - "avgServiceLevel": 100, - "avgLatency": 473, - "avgSuccessRate": 0, - "popularityScore": 0.4, - "__typename": "Score" - } - }, - "User demo": { - "tool_description": "-", - "score": { - "avgServiceLevel": 96, - "avgLatency": 11119, - "avgSuccessRate": 85, - "popularityScore": 7.5, - "__typename": "Score" - } - }, - "petFood": { - "tool_description": "petFoods", - "score": { - "avgServiceLevel": 100, - "avgLatency": 251, - "avgSuccessRate": 100, - "popularityScore": 6.6, - "__typename": "Score" - } - }, - "Quotes Diffusion": { - "tool_description": "The \"Quotes Diffusion\" API provides users with a vast collection of curated popular quotes from around the world. It includes 56,394 quotes, spanning 1,963 topics, from 10,920 authors. The API also generates background images based on keywords from the quotes using text-to-image diffusion models.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 644, - "avgSuccessRate": 100, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "Lab2": { - "tool_description": "An api for lab 2 for a course", - "score": { - "avgServiceLevel": 100, - "avgLatency": 376, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Ukraine war data": { - "tool_description": "Data about the Ukrainian conflict", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1275, - "avgSuccessRate": 100, - "popularityScore": 7.1, - "__typename": "Score" - } - }, - "Test_v4": { - "tool_description": "Test", - "score": { - "avgServiceLevel": 100, - "avgLatency": 606, - "avgSuccessRate": 0, - "popularityScore": 0, - "__typename": "Score" - } - }, - "colegiosantaana": { - "tool_description": "Colegio Santa Ana", - "score": { - "avgServiceLevel": 100, - "avgLatency": 8, - "avgSuccessRate": 100, - "popularityScore": 8.2, - "__typename": "Score" - } - }, - "DogBreeds": { - "tool_description": "An API showing all dog breeds and your characteristics", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1756, - "avgSuccessRate": 100, - "popularityScore": 6.9, - "__typename": "Score" - } - }, - "ChurchApp": { - "tool_description": "Connect to ChurchApp using an API key provided by ChurchApp support.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 43, - "avgSuccessRate": 100, - "popularityScore": 7, - "__typename": "Score" - } - }, - "PragmavantApi": { - "tool_description": "Practical API for streamlined business and cloud applications.", - "score": { - "avgServiceLevel": 98, - "avgLatency": 609, - "avgSuccessRate": 98, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "Quran Com": { - "tool_description": "The default API of Quran.com website", - "score": { - "avgServiceLevel": 100, - "avgLatency": 83, - "avgSuccessRate": 61, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "testApi": { - "tool_description": "for testing befor deployment ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 9449, - "avgSuccessRate": 100, - "popularityScore": 7.8, - "__typename": "Score" - } - }, - "Horoscope API": { - "tool_description": "Horoscope API - Professional Horoscopes as a simple JSON API - Access 12 horoscopes every day, written by professional astrologers. Important: Only Portuguese (PT) language is currently available.", - "score": { - "avgServiceLevel": 99, - "avgLatency": 1044, - "avgSuccessRate": 82, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "Baby Names by API-Ninjas": { - "tool_description": "Popular and unique baby name name generator for boys, girls, and gender-neutral names. See more info at https://api-ninjas.com/api/babynames", - "score": { - "avgServiceLevel": 100, - "avgLatency": 417, - "avgSuccessRate": 100, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "katzion test": { - "tool_description": "katzion test", - "score": { - "avgServiceLevel": 100, - "avgLatency": 9, - "avgSuccessRate": 100, - "popularityScore": 8, - "__typename": "Score" - } - }, - "Cardsearch": { - "tool_description": "Magic the Gathering card, set and Dutch price information.\r\nEach api call is required to provide a authentication key.\r\nYou can request one by email, it's free by the way\r\ninfo@cardsearch.nl\r\n\r\nEach api call can provide an additional parameter \"format\" with values \"json\",\"xml\", \"csv\" or \"table\".\r\nJson is the default format.\r\nExample GET http://api.cardsearch.nl/v1/sets?key=demo&format=xml", - "score": { - "avgServiceLevel": 100, - "avgLatency": 814, - "avgSuccessRate": 100, - "popularityScore": 6.2, - "__typename": "Score" - } - }, - "TestAPI_v3": { - "tool_description": "returns hello", - "score": { - "avgServiceLevel": 100, - "avgLatency": 740, - "avgSuccessRate": 100, - "popularityScore": 6.1, - "__typename": "Score" - } - }, - "The South Asian Express": { - "tool_description": "Wordpress v2 API", - "score": { - "avgServiceLevel": 0, - "avgLatency": 0, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "platformbil": { - "tool_description": null, - "score": { - "avgServiceLevel": 100, - "avgLatency": 587, - "avgSuccessRate": 24, - "popularityScore": 1.6, - "__typename": "Score" - } - }, - "flow study": { - "tool_description": "search in flow block chain ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 168, - "avgSuccessRate": 98, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "team petstore": { - "tool_description": "This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 761, - "avgSuccessRate": 37, - "popularityScore": 6.7, - "__typename": "Score" - } - }, - "favicon-finder": { - "tool_description": "Parses favicons for a given URL", - "score": { - "avgServiceLevel": 100, - "avgLatency": 888, - "avgSuccessRate": 100, - "popularityScore": 7.4, - "__typename": "Score" - } - }, - "Aspose.Tasks Cloud": { - "tool_description": "Aspose.Tasks Cloud is a REST API for creating project document management applications that work with common Project file formats in the cloud. You can convert project data files to other formats, read tasks, resources, calendar information and manipulate other project data using the API.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 541, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "ClickMeter": { - "tool_description": "The easiest way to Manage your Marketing Links", - "score": { - "avgServiceLevel": 0, - "avgLatency": 295, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "DAd": { - "tool_description": "DASas", - "score": { - "avgServiceLevel": 100, - "avgLatency": 368, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "Demo1": { - "tool_description": "demo1", - "score": { - "avgServiceLevel": 100, - "avgLatency": 572, - "avgSuccessRate": 100, - "popularityScore": 7.8, - "__typename": "Score" - } - }, - "TestApi_v2": { - "tool_description": "Test Api", - "score": { - "avgServiceLevel": 100, - "avgLatency": 141, - "avgSuccessRate": 100, - "popularityScore": 5.5, - "__typename": "Score" - } - }, - "Felina API": { - "tool_description": "Handles transacions of FEL tokens.", - "score": { - "avgServiceLevel": 81, - "avgLatency": 77620, - "avgSuccessRate": 71, - "popularityScore": 7.5, - "__typename": "Score" - } - }, - "Active": { - "tool_description": "Active.com is the leading online community for people who want to discover, learn about, share, register for and ultimately participate in activities about which they are passionate. Millions of active individuals visit Active.com each month to search and register online for races, team sports and recreational activities; interact with others who have similar interests; start online training programs; and access nutrition, fitness and training tips.", - "score": null - }, - "whois": { - "tool_description": "Returns well-parsed whois fields in XML and JSON formats. Use it to track domain registrations, check domain name availability, detect credit card fraud, locate users geographically. The service automatically follows the whois registry referral chains until it finds the correct whois registrars with the most complete whois data. Works over basic HTTP and avoices firewall-related problems of accessing Whois servers on port 43.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1695, - "avgSuccessRate": 49, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "Quotes Villa": { - "tool_description": "Quotes with different categories", - "score": { - "avgServiceLevel": 11, - "avgLatency": 723, - "avgSuccessRate": 11, - "popularityScore": 2.3, - "__typename": "Score" - } - }, - "GroupDocs Metadata Cloud": { - "tool_description": "GroupDocs.Metadata Cloud is a REST API to manage metadata properties of numerous file formats in the cloud.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 489, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "GroupDocs Translation Cloud": { - "tool_description": "GroupDocs.Translation Cloud is a REST API for translating English content of documents to other supported languages.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 5905, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "4Bro - 1337X": { - "tool_description": "Basic Functions", - "score": { - "avgServiceLevel": 100, - "avgLatency": 978, - "avgSuccessRate": 22, - "popularityScore": 1.7, - "__typename": "Score" - } - }, - "Aspose.PDF Cloud": { - "tool_description": "Aspose.PDF Cloud APIs allows you to create, edit and convert PDF files in the cloud. You can convert PDF documents into various other formats like HTML, DOC, JPEG, TIFF, TXT etc. You can also extract PDF contents including text and images from the PDF files.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 668, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Aspose.Cells Cloud": { - "tool_description": "Aspose.Cells Cloud is a REST API that enables you to perform a wide range of document processing operations including creation, manipulation, conversion and rendering of Excel documents in the cloud. You can convert your XLS and XLSX files to various other formats like PDF, HTML, ODS, XPS, CSV etc.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 414, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Typography": { - "tool_description": "A curated (120+) typeface combinations from Google Fonts, including details about tones, types, styles, and categories. The API also includes configurations for font sizes, letter spacing, and line heights, allowing developers and designers to create engaging and visually appealing content.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 515, - "avgSuccessRate": 100, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "Node Express API Tutorial": { - "tool_description": "An API that allows users to be stored, retrieved, and deleted from a database.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 11315, - "avgSuccessRate": 100, - "popularityScore": 7.4, - "__typename": "Score" - } - }, - "S-YTD": { - "tool_description": "DOWNLOAD VIDEO EASILY ONLINE", - "score": null - }, - "GroupDocs.Signature Cloud": { - "tool_description": "GroupDocs.Signature Cloud is a REST API that enables you to create, verify, search, and manipulate various types of signatures for the cloud-based documents.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 783, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Air Quality Demo 1": { - "tool_description": "Created from RapidAPI for Mac", - "score": { - "avgServiceLevel": 0, - "avgLatency": 123, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "JAK_API": { - "tool_description": "A API made by Jonak Adipta Kalita!!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 46, - "avgSuccessRate": 100, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "13": { - "tool_description": "This is the API for Spont Horeca. When you are a Spont user, you can request for an API KEY and your Company ID", - "score": { - "avgServiceLevel": 100, - "avgLatency": 490, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "GetSource": { - "tool_description": "GetSource", - "score": null - }, - "Dog API": { - "tool_description": "Do you care about accessing free images of dogs on the internet? Do you want your dog pictures to be served at lightning fast speed with 99.999% uptime? Do you care about DaaS (Dogs as a Service)? Help us pay our hosting bills and ensure that Dog API stays free to access and use for everyone. We'll even gift you an executive business tie for your pet (or small child) to say thanks.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 122, - "avgSuccessRate": 48, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "Ignition": { - "tool_description": "iOS Apps", - "score": null - }, - "Ridet NC": { - "tool_description": "API permettant d'obtenir les informations sur une entreprise ou un Ă©tablissement en Nouvelle-CalĂ©donie", - "score": { - "avgServiceLevel": 98, - "avgLatency": 1108, - "avgSuccessRate": 10, - "popularityScore": 2.2, - "__typename": "Score" - } - }, - "cat-facts": { - "tool_description": "An API Service returning fun facts about cats.", - "score": { - "avgServiceLevel": 83, - "avgLatency": 59269, - "avgSuccessRate": 83, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "Aspose Email Cloud": { - "tool_description": "Email Management and Archiving REST API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 409, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Neko SFW": { - "tool_description": "This Program will provide SFW images", - "score": { - "avgServiceLevel": 100, - "avgLatency": 623, - "avgSuccessRate": 100, - "popularityScore": 7.5, - "__typename": "Score" - } - }, - "Test_v2": { - "tool_description": "Test api for connection", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1009, - "avgSuccessRate": 100, - "popularityScore": 5.7, - "__typename": "Score" - } - }, - "Mexican Vehicles REPUVE": { - "tool_description": "Get information for Mexican vehicles including year, make, model as well as stolen reports.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 376, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Darko Androcec Example": { - "tool_description": "Lists summary information about each Salesforce version currently available, including the version, label, and a link to each version's root.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 354, - "avgSuccessRate": 100, - "popularityScore": 5.3, - "__typename": "Score" - } - }, - "httpbin-test": { - "tool_description": "httpbin test", - "score": { - "avgServiceLevel": 50, - "avgLatency": 7056, - "avgSuccessRate": 50, - "popularityScore": 5.7, - "__typename": "Score" - } - }, - "Industrypedia Random Articles": { - "tool_description": "Retrieves a random informational article from [Industrypedia](https://industrypedia.net).", - "score": null - }, - "Uros Kovcic": { - "tool_description": "Api for games", - "score": { - "avgServiceLevel": 100, - "avgLatency": 354, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Fake users_v6": { - "tool_description": "This api will provide you some dummy user for your testing purpose.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 601, - "avgSuccessRate": 0, - "popularityScore": 0, - "__typename": "Score" - } - }, - "courses": { - "tool_description": "courses API", - "score": { - "avgServiceLevel": 28, - "avgLatency": 429, - "avgSuccessRate": 22, - "popularityScore": 2.2, - "__typename": "Score" - } - }, - "Agc": { - "tool_description": "Test", - "score": { - "avgServiceLevel": 100, - "avgLatency": 365, - "avgSuccessRate": 0, - "popularityScore": 0, - "__typename": "Score" - } - }, - "Words to numbers": { - "tool_description": "API to convert natural language words into numbers. Currently available in english and italian and limited to billions", - "score": { - "avgServiceLevel": 100, - "avgLatency": 856, - "avgSuccessRate": 100, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "5970b9b3dcc757e61e53daec3e720974": { - "tool_description": "Face Detect", - "score": null - }, - "RakutenSupportDefaultTeam": { - "tool_description": "RたSupportテă‚čトです。", - "score": { - "avgServiceLevel": 100, - "avgLatency": 327, - "avgSuccessRate": 100, - "popularityScore": 7.4, - "__typename": "Score" - } - }, - "Shapeways": { - "tool_description": "Shapeways.com is the world's leading 3D Printing marketplace and community. We harness 3D Printing to help everyone make and share designs with the world, making product design more accessible, personal, and inspiring.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 455, - "avgSuccessRate": 100, - "popularityScore": 6.8, - "__typename": "Score" - } - }, - "Evaluate expression": { - "tool_description": "Multi-purpose natural language calculator", - "score": { - "avgServiceLevel": 100, - "avgLatency": 350, - "avgSuccessRate": 97, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "Term Analysis": { - "tool_description": "Given a text, this API returns the lemmatized text", - "score": { - "avgServiceLevel": 100, - "avgLatency": 961, - "avgSuccessRate": 100, - "popularityScore": 5.5, - "__typename": "Score" - } - }, - "Testing": { - "tool_description": "Testing", - "score": { - "avgServiceLevel": 0, - "avgLatency": 249, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Uniblock": { - "tool_description": "Unified Blockchain API, use one, use them all. \n\n \n\nFrom NFTs, DeFi, Wallets, GameFi, Tokens, or simply launching contracts, we've got tools to help build them both easier and faster.\n\nUniblockis a suite of blockchain tooling to support developers in building any blockchain project.", - "score": { - "avgServiceLevel": 2, - "avgLatency": 236, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "TestAPI_v4": { - "tool_description": "Tet", - "score": { - "avgServiceLevel": 0, - "avgLatency": 0, - "avgSuccessRate": 0, - "popularityScore": 0, - "__typename": "Score" - } - }, - "Hafez": { - "tool_description": "Get Your Hafez Fal", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1762, - "avgSuccessRate": 100, - "popularityScore": 7.8, - "__typename": "Score" - } - }, - "Aspose.Diagram Cloud": { - "tool_description": "Aspose.Diagram is a REST API for working with the Microsoft Visio Object Model. Aspose.Diagram provides better performance and is easier to use to manipulate diagrams and convert files than Microsoft Office Automation.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 16968, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "QR API": { - "tool_description": "qr code generator", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3304, - "avgSuccessRate": 100, - "popularityScore": 6.8, - "__typename": "Score" - } - }, - "Bucket List by API-Ninjas": { - "tool_description": "Get inspired with thousands of innovative bucket list ideas. See more info at https://api-ninjas.com/api/bucketlist.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 403, - "avgSuccessRate": 100, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "getAssessments": { - "tool_description": "Get Assessment Data", - "score": { - "avgServiceLevel": 100, - "avgLatency": 354, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Hello World": { - "tool_description": "Hello World", - "score": { - "avgServiceLevel": 100, - "avgLatency": 376, - "avgSuccessRate": 3, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "Korean Baby Name Ranking": { - "tool_description": "Popular Korean baby names, ranking, counts. 가임 읞Ʞ있는 한ꔭ ì•„êž° 읎늄 ì •ëłŽë„Œ 알렀드렀요.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 6093, - "avgSuccessRate": 100, - "popularityScore": 7.8, - "__typename": "Score" - } - }, - "HauteCouture-API": { - "tool_description": "An API that gives you informations about Haute Couture maisons", - "score": { - "avgServiceLevel": 100, - "avgLatency": 131, - "avgSuccessRate": 24, - "popularityScore": 1.9, - "__typename": "Score" - } - }, - "AI endpoint": { - "tool_description": "This endpoint will give you answer to any question", - "score": { - "avgServiceLevel": 100, - "avgLatency": 7, - "avgSuccessRate": 100, - "popularityScore": 6.5, - "__typename": "Score" - } - }, - "GroupDocs.Comparison Cloud": { - "tool_description": "GroupDocs.Comparison Cloud is a REST API provides you with a difference checker functionality to comapre same format documents.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 433, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "trainmyAPI27": { - "tool_description": "Just train", - "score": null - }, - "toptalOnlineTest": { - "tool_description": "a small api similar to the one I got in the toptal test, returns an array of strings only with the possibility to filter using query params", - "score": { - "avgServiceLevel": 100, - "avgLatency": 11, - "avgSuccessRate": 100, - "popularityScore": 7.6, - "__typename": "Score" - } - }, - "erictestpet": { - "tool_description": "test api for pet store", - "score": { - "avgServiceLevel": 100, - "avgLatency": 300, - "avgSuccessRate": 100, - "popularityScore": 6.6, - "__typename": "Score" - } - }, - "GroupDocs.Conversion Cloud": { - "tool_description": "GroupDocs.Conversion Cloud is a REST API to assist you in performing document conversion in the cloud for a wide range of document formats.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 425, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "ClearDil": { - "tool_description": "The End-to-End KYC compliance solution An integrated platform to effortlessly meet all your Anti-Money Laundering and KYC requirements - on the back of a modern Web Portal and a developer-friendly API.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 394, - "avgSuccessRate": 100, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "Alpha Vantage": { - "tool_description": "Bolsa de valores", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1182, - "avgSuccessRate": 100, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "QuantaEx Market Data": { - "tool_description": "Tickers Data of 24 hours Trading", - "score": { - "avgServiceLevel": 100, - "avgLatency": 738, - "avgSuccessRate": 75, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "CHART-IMG": { - "tool_description": "CHART-IMG.COM API designed to take screenshots of the most popular crypto charts and tools.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3011, - "avgSuccessRate": 89, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "FreeFloatUs": { - "tool_description": "Manage your FreeFloatUs portfolio, download trades and upload executions.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 449, - "avgSuccessRate": 100, - "popularityScore": 7.4, - "__typename": "Score" - } - }, - "Crypto News API": { - "tool_description": "Get The Latest Crypto News", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1633, - "avgSuccessRate": 100, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "RedStone": { - "tool_description": "RedStone API provides pricing data for crypto, stocks, currencies and commodities", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1108, - "avgSuccessRate": 100, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "TND Exchange Rate": { - "tool_description": "GET the average exchange rate of TND against USD & EUR", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1574, - "avgSuccessRate": 100, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "StocksEyes": { - "tool_description": "stocksEyes is a comprehensive API that provides real-time candlestick data (OHLCV - open, high, low, close, volume) for stocks and other securities. With stocksEyes, you have access to live prices and last traded prices, as well as a wealth of historical data. This powerful tool is ideal for traders and investors looking to stay up-to-date on the latest market trends and make informed investment decisions. With its user-friendly interface and reliable data sources, stocksEyes is the go-to sol...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 480, - "avgSuccessRate": 100, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "Exchange Rate by API-Ninjas": { - "tool_description": "Get current exchange rates for currency pairs. See more info at https://api-ninjas.com/api/exchangerate.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 603, - "avgSuccessRate": 100, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "Currency Converter_v5": { - "tool_description": "Created from VS Code", - "score": { - "avgServiceLevel": 92, - "avgLatency": 5380, - "avgSuccessRate": 92, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "MarketCI Analytics": { - "tool_description": "Stock Market Endpoint for Price Forecasts, Probability, Cash Flow Models , and Peer Comps ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 293, - "avgSuccessRate": 98, - "popularityScore": 9, - "__typename": "Score" - } - }, - "Insiders": { - "tool_description": "Detailed inside transactions for publicly listed companies. Includes SEC URLS to original documents. Updated every 30 seconds ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2040, - "avgSuccessRate": 100, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "FmpCloud": { - "tool_description": "Access stock prices. Financial statements, real stock price values. SEC EDGAR API with all filings in real time. Free stock API to discover financial data instantly more at https://fmpcloud.io/ ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 762, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "Indian Bank Account Verification": { - "tool_description": "With the Bank Account Verification solution, you can now onboard with confidence knowing that that the individual’s/ merchant’s account details you have are genuine and indeed belong to the individual/ merchant that you are onboarding, thereby reducing the potential of fraud. Couple it with our Cheque OCR API to make your bank account verification process seamless and instant.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 277, - "avgSuccessRate": 98, - "popularityScore": 9, - "__typename": "Score" - } - }, - "CalcX - Investment API": { - "tool_description": "This API calculates the simple interest, compound interest, investment returns, return on investment, capital gains tax, and annual percentage yield of an investment based on the input parameters.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 407, - "avgSuccessRate": 55, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "UniBit AI": { - "tool_description": "UniBit aggregates and analyzes financial events for thousands of companies ", - "score": null - }, - "Number2Words": { - "tool_description": "Convert any digit's number into the equivalent words", - "score": { - "avgServiceLevel": 100, - "avgLatency": 404, - "avgSuccessRate": 100, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Mutual fund Nav": { - "tool_description": "daily funds nav", - "score": null - }, - "CurrencyAPI.net": { - "tool_description": "Real-time currency conversion on 152 currencies and cryptos", - "score": { - "avgServiceLevel": 100, - "avgLatency": 114, - "avgSuccessRate": 99, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "crypto-news_v2": { - "tool_description": "Get the latest crypto news direct from your preferred sources. (non-scraped)", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2358, - "avgSuccessRate": 100, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Job Salary Data": { - "tool_description": "Extremely Fast and Simple API to get Job Salary/Pay Estimations from all major publishers - Payscale, Glassdoor, Salary.com, ZipRecruiter and many others, all in a single API.", - "score": { - "avgServiceLevel": 99, - "avgLatency": 210, - "avgSuccessRate": 99, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "Currency Converter_v3": { - "tool_description": "It allows you to convert one currency to another based on the current exchange rate. It is possible to perform currency conversion to multiple currencies at once", - "score": { - "avgServiceLevel": 100, - "avgLatency": 372, - "avgSuccessRate": 78, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "Stocks": { - "tool_description": "Get the the stocks informations using a REST API simple and free.", - "score": { - "avgServiceLevel": 93, - "avgLatency": 20395, - "avgSuccessRate": 89, - "popularityScore": 6.8, - "__typename": "Score" - } - }, - "Futures": { - "tool_description": "Get daily and historical futures prices for 26 major financial assets and their monthly futures contracts. Lithium, WTI Oil, Brent Crude, Wheat, etc.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 559, - "avgSuccessRate": 99, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "Consulta de boleto": { - "tool_description": "Consulte se um boleto jĂĄ foi pago ou nĂŁo, e caso nĂŁo tenha sido pago, tenha as informaçÔes do boleto, tais como: Vencimento, banco emissor, nome e documento do beneficiĂĄrio, valor, etc.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 356, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "I am rich": { - "tool_description": "I'am rich", - "score": { - "avgServiceLevel": 100, - "avgLatency": 7, - "avgSuccessRate": 100, - "popularityScore": 8, - "__typename": "Score" - } - }, - "FinHost": { - "tool_description": "Highload digital white-label banking platform that helps financial businesses to grow fast, scalable and reliable.", - "score": { - "avgServiceLevel": 33, - "avgLatency": 222, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "CurrenciesExchangeRateAPI": { - "tool_description": "CurrenciesRatesAPI is a RESTful API that provides currency conversion and exchange rate information.This API is organized around REST. Our API has predictable resource-oriented URLs, accepts form-encoded request bodies, returns JSON-encoded responses.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 14703, - "avgSuccessRate": 100, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "Cryptocurrency balance": { - "tool_description": "Get balance of a specific address for a variety of cryptocurrency", - "score": { - "avgServiceLevel": 0, - "avgLatency": 763, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "CryptoInfo": { - "tool_description": "We collect news from more than 30 crypto/financial sources and process them using neural networks. We estimate news sentiment and uniqueness and provide text summarization along with other informative indicators.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1065, - "avgSuccessRate": 100, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "The Shrimpy Universal Crypto Exchange Interface": { - "tool_description": "The industry leading API for crypto trading, real-time data collection, and exchange account management.", - "score": null - }, - "BarPatterns": { - "tool_description": "Screener for stock candlestick patterns & indicator signals. \nScreening 21 candlestick patterns & 6 indicator signals (supertrend, macd, rsi)", - "score": { - "avgServiceLevel": 97, - "avgLatency": 822, - "avgSuccessRate": 97, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "Luhn algorithm": { - "tool_description": "Validate card numbers with Luhn algorithm", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1081, - "avgSuccessRate": 100, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "stock-api": { - "tool_description": "Provide Stock API\n- Get Korean Gold Share\n- Get Stock Overview", - "score": { - "avgServiceLevel": 100, - "avgLatency": 328, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "ohlc history forex": { - "tool_description": "Api to fetch forex Open High Low Close prices for a variety of currency pairs ", - "score": { - "avgServiceLevel": 99, - "avgLatency": 1037, - "avgSuccessRate": 99, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "📅 Economic Events Calendar 🚀": { - "tool_description": "Get complete list of all economic events. Filter by countries & dates", - "score": { - "avgServiceLevel": 100, - "avgLatency": 389, - "avgSuccessRate": 94, - "popularityScore": 9, - "__typename": "Score" - } - }, - "CalcX - Loan Calculator": { - "tool_description": "The CalcX Loan Cost Calculator is a simple API that calculates the cost of a loan and generates an amortization schedule. The API takes in inputs like loan amount, interest rate, and repayment term, and generates estimates of the total cost of the loan over time.", - "score": { - "avgServiceLevel": 66, - "avgLatency": 265, - "avgSuccessRate": 61, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "1p Challenge": { - "tool_description": "APIs for the 1p Challenge", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1103, - "avgSuccessRate": 20, - "popularityScore": 1.8, - "__typename": "Score" - } - }, - "Open DeFi": { - "tool_description": "Open DeFi API gives you access to decentralised exchange trading data, liquidity and tokens across multiple blockchains.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 977, - "avgSuccessRate": 92, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "Crypto Update Live": { - "tool_description": "This API gives live updates about cryptocurrency prices and the latest news regarding it.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 376, - "avgSuccessRate": 99, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "DAX": { - "tool_description": "How many points did the DAX40 stock index gain or lose each month (during this period: Jan-Aug, 2022). This API will get the data that will answer that question.", - "score": { - "avgServiceLevel": 89, - "avgLatency": 1176, - "avgSuccessRate": 89, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "Cion Prices Api": { - "tool_description": "An api showing current prices of coins ", - "score": { - "avgServiceLevel": 61, - "avgLatency": 143883, - "avgSuccessRate": 61, - "popularityScore": 8.2, - "__typename": "Score" - } - }, - "Bank SWIFT codes": { - "tool_description": "Lookup country banks and their SWIFT codes", - "score": { - "avgServiceLevel": 100, - "avgLatency": 208, - "avgSuccessRate": 78, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "Number2Text": { - "tool_description": "This API helps to convert the numbers into equivalent words in different languages (English, French, German, Romanian, Spanish, Portuguese, Hungarian, Italian, Danish, Polish)", - "score": { - "avgServiceLevel": 9, - "avgLatency": 95, - "avgSuccessRate": 9, - "popularityScore": 0.4, - "__typename": "Score" - } - }, - "Yahoo Finance": { - "tool_description": "Access Yahoo Finance Realtime Stock Price | Options | ESG | Trends | Statistics | Earnings | Balance Sheets | Analytics | Asset Profile and much more", - "score": { - "avgServiceLevel": 100, - "avgLatency": 229, - "avgSuccessRate": 100, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "Short": { - "tool_description": "Short", - "score": { - "avgServiceLevel": 0, - "avgLatency": 13782, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Crypto Symbols by API-Ninjas": { - "tool_description": "Get a complete list of hundreds of cryptocurrency ticker symbols. See more info at https://api-ninjas.com/api/cryptosymbols.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 731, - "avgSuccessRate": 100, - "popularityScore": 7.8, - "__typename": "Score" - } - }, - "Candlestick Chart": { - "tool_description": "This API returns candlestick charts images (base64) so you can use them wherever you want!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 482, - "avgSuccessRate": 100, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "IBAN validation": { - "tool_description": "A free online IBAN API validation service", - "score": { - "avgServiceLevel": 100, - "avgLatency": 382, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "Smile": { - "tool_description": "Smile provides user-authorized access to valuable employment and income data from HR, payroll, commerce, and marketplace platforms through a single API!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 319, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "Text Language by API-Ninjas": { - "tool_description": "Detect the language from any input text. See more info at https://api-ninjas.com/api/textlanguage.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 665, - "avgSuccessRate": 100, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "Voter Card OCR": { - "tool_description": "Extract data from Voter ID Card instantly and accurately!\n\n \n\nWhen paired with IDfy’s Voter Card Verification API, extracts data from an image of a Voter ID Card. It accurately auto-fills this data in the right fields for a quicker & errorless form-filling experience.\n\nGet your API access", - "score": { - "avgServiceLevel": 100, - "avgLatency": 176, - "avgSuccessRate": 93, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "Auto Profanity Filter": { - "tool_description": "Feed this API a few sentences and have it filter out any profanity and bad words. Smart AI is used in detecting profanity, even when its masked by mixing numbers and letters in the bad words", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1173, - "avgSuccessRate": 100, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "IAB Taxonomy Text Classification": { - "tool_description": "Most accurate IAB v2 Taxonomy Text Classification, Economical Pricing, Best in class Infrastructure", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1147, - "avgSuccessRate": 100, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "Philippines Passport OCR": { - "tool_description": "IDfy’s Passport OCR API allows you to onboard your customers with speed and precision.\n\nEnable them to prefill their onboarding forms instantly, by just letting them upload or scan a passport – IDfy will digitize the document for you!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 162, - "avgSuccessRate": 96, - "popularityScore": 7.7, - "__typename": "Score" - } - }, - " Paraphrasing API": { - "tool_description": "The Paraphrasing API is a tool that enables users to generate unique content by rephrasing existing text while preserving its original meaning. Users can either input the text they want to reword or use the provided text to generate new ideas. ", - "score": { - "avgServiceLevel": 48, - "avgLatency": 313, - "avgSuccessRate": 48, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "Profanity Filter_v2": { - "tool_description": "This API provides a simple way to filter profanity from text. It can detect profanity in text, and replace it with a specified replacement string. ", - "score": { - "avgServiceLevel": 90, - "avgLatency": 13051, - "avgSuccessRate": 80, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "Hello world_v2": { - "tool_description": "Demo api for test", - "score": { - "avgServiceLevel": 100, - "avgLatency": 781, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "Simple Poet": { - "tool_description": "Find random rhymes for a single word.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 6, - "avgSuccessRate": 100, - "popularityScore": 6.8, - "__typename": "Score" - } - }, - "Philippines TIN OCR": { - "tool_description": "Philippines TIN OCR API allows you to onboard your customers with speed and precision.\n\nEnable them to pre-fill their onboarding forms instantly, by just uploading or scanning their Taxpayer Identification Number (TIN) card – IDfy will digitize the document for you!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 165, - "avgSuccessRate": 95, - "popularityScore": 7.3, - "__typename": "Score" - } - }, - "Spellout": { - "tool_description": "This API allows converting numbers to spelled-out format in any language, e.g.: 1234 -> “one thousand two hundred thirty-four”.", - "score": { - "avgServiceLevel": 99, - "avgLatency": 256, - "avgSuccessRate": 59, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "Sentiment analysis_v13": { - "tool_description": "Understand the social sentiment of your brand, product or service while monitoring online conversations. Sentiment Analysis is contextual mining of text which identifies and extracts subjective information in source material. Sentiment API works in fourteen different languages ", - "score": null - }, - "AI Chatbot": { - "tool_description": "An AI Chatbot for your aplication.", - "score": { - "avgServiceLevel": 97, - "avgLatency": 573, - "avgSuccessRate": 97, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "Mobile phone validation": { - "tool_description": "Extract and validate mobile/cell/phone numbers from text, get extra info and various number formats.", - "score": { - "avgServiceLevel": 99, - "avgLatency": 1253, - "avgSuccessRate": 99, - "popularityScore": 9, - "__typename": "Score" - } - }, - "Quick Language Detector": { - "tool_description": "Feed this API a few sentences and have it determine what language it is with a confidence score.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 882, - "avgSuccessRate": 98, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "GCP Translate": { - "tool_description": "Dynamically translate between languages.", - "score": { - "avgServiceLevel": 99, - "avgLatency": 2013, - "avgSuccessRate": 86, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "Gender From Name": { - "tool_description": "Find the gender by just using a name.", - "score": { - "avgServiceLevel": 67, - "avgLatency": 25639, - "avgSuccessRate": 67, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Stacks Patent Similarity": { - "tool_description": "This is a useful API for finding claims similar to the user's input text. The \"Infringement Research\" is a tool for returning similar claims that the text is likely to infringe. The \"101 Eligibility Analyzer\" is a tool for testing a claim for eligibility under both \"Alice Test Step One\" and \"Alice Test Step Two\". The \"Patent Analytics\" provides multiple useful endpoints powered by the Stacks Similarity Engine for exploring IP infringement and clearance, client prospecting, finding patent lawy...", - "score": { - "avgServiceLevel": 75, - "avgLatency": 7913, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Mad-Libs-Diceware": { - "tool_description": "Diceware generated passwords that you can easily remember", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2500, - "avgSuccessRate": 50, - "popularityScore": 7.3, - "__typename": "Score" - } - }, - "SpeakEasy": { - "tool_description": "The SpeakEasy API allows you to synthesize speech from text using Google's Text-to-Speech API.", - "score": { - "avgServiceLevel": 67, - "avgLatency": 1298, - "avgSuccessRate": 63, - "popularityScore": 8, - "__typename": "Score" - } - }, - "Philippines Social Security OCR": { - "tool_description": "Philippines Social Security OCR API allows you to onboard your customers with speed and precision.\n\nEnable them to pre-fill their onboarding forms instantly, by just uploading or scanning their Social Security card – IDfy will digitize the document for you!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 171, - "avgSuccessRate": 96, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "Neuronet NLP": { - "tool_description": "Tools for Azerbaijan language for tokenization, sentence splitting, part-of-speech tagging and named entity recognition.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1393, - "avgSuccessRate": 100, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "Philippines Driving License OCR": { - "tool_description": "IDfy’s Philippines Driving License OCR API allows you to onboard your customers with speed and precision.\n\nEnable them to prefill their onboarding forms instantly, by just uploading or scanning a Driving License – IDfy will digitize the document for you!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 174, - "avgSuccessRate": 96, - "popularityScore": 7.5, - "__typename": "Score" - } - }, - "Walnut Topic": { - "tool_description": "AI powered topic extraction from texts.", - "score": { - "avgServiceLevel": 89, - "avgLatency": 1593, - "avgSuccessRate": 89, - "popularityScore": 7.7, - "__typename": "Score" - } - }, - "Offensive User Comment Detection": { - "tool_description": "This API uses natural language processing and machine learning to detect and flag inappropriate or offensive comments in multiple languages, helping to create a safer online environment and assist moderators in taking appropriate action.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 564, - "avgSuccessRate": 100, - "popularityScore": 7.6, - "__typename": "Score" - } - }, - "Profanity Filter": { - "tool_description": "Filter inputted text content for profanity, offensive and obscenity word base on an internal profanity list. It can also recognize character alternates or special characters often used in place of standard alphabetic characters.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1482, - "avgSuccessRate": 93, - "popularityScore": 7.6, - "__typename": "Score" - } - }, - "Personality Quest": { - "tool_description": "The \"Personality Quest\" API allows developers to integrate personality assessment and analysis functionalities into their applications. By leveraging this API, developers can provide users with valuable insights into their personalities, helping them gain self-awareness, make informed decisions, and enhance their personal growth and relationships. ", - "score": { - "avgServiceLevel": 97, - "avgLatency": 783, - "avgSuccessRate": 91, - "popularityScore": 9, - "__typename": "Score" - } - }, - "Article Rewriter Pro API": { - "tool_description": "Article Rewriter Pro helps you to rewrite articles within seconds. \nMulti-language supported : en,fr,ge,du,sp,tr.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1824, - "avgSuccessRate": 100, - "popularityScore": 6.9, - "__typename": "Score" - } - }, - "PAN Card OCR": { - "tool_description": "Extracts data from PAN Cards instantly and accurately. IDfy’s PAN Card OCR API extracts data from an image of a PAN card. It accurately auto-fills this data in the right fields for a quicker & errorless form-filling experience.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 165, - "avgSuccessRate": 97, - "popularityScore": 7.6, - "__typename": "Score" - } - }, - "Google Translator": { - "tool_description": "Google Translate is a multilingual neural machine translation service developed by Google to translate text", - "score": { - "avgServiceLevel": 100, - "avgLatency": 378, - "avgSuccessRate": 86, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "Driving License OCR": { - "tool_description": "IDfy’s Driving License OCR API enables your customers to pre-fill their onboarding forms instantly, by letting them upload or scan a Driving License – IDfy will digitize the document for you!\n\nWhen paired with IDfy’s DL Verification API, you can make your onboarding journey seamless and instant, by onboarding customers using just their DL card image – IDfy will handle both digitization and verification!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 142, - "avgSuccessRate": 97, - "popularityScore": 8.2, - "__typename": "Score" - } - }, - "Profanity Filter by API-Ninjas": { - "tool_description": "Detect and censor bad words in text. See more info at https://api-ninjas.com/api/profanityfilter", - "score": { - "avgServiceLevel": 100, - "avgLatency": 716, - "avgSuccessRate": 100, - "popularityScore": 9, - "__typename": "Score" - } - }, - "Synonyms Words": { - "tool_description": "In this api you can display synonyms for hundreds of miles of words in English, Spanish, French and Portuguese languages.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1149, - "avgSuccessRate": 100, - "popularityScore": 7.8, - "__typename": "Score" - } - }, - "Fast Reading": { - "tool_description": "Fast Reading (Bionic Reading) - is a shallow method of reading facilitating the reading process by guiding the eyes through text with artificial fixation points. As a result, the reader is only focusing on the highlighted initial letters and lets the brain center complete the word.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 743, - "avgSuccessRate": 100, - "popularityScore": 8, - "__typename": "Score" - } - }, - "SEO analysis": { - "tool_description": "Analyse the content of an article by submitting an URL or by posting content to the API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 5112, - "avgSuccessRate": 100, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "Walnut Entity": { - "tool_description": "Extract structure from text data (who, what, where..) automatically using AI.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 706, - "avgSuccessRate": 100, - "popularityScore": 7.6, - "__typename": "Score" - } - }, - "Random Word by API-Ninjas": { - "tool_description": "Random word generator full of unique, interesting words. See more info at https://api-ninjas.com/api/randomword", - "score": { - "avgServiceLevel": 100, - "avgLatency": 137, - "avgSuccessRate": 100, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "National ID Vietnam OCR": { - "tool_description": "Vietnam NID OCR API allows you to onboard your customers with speed and precision.\n\nEnable them to pre-fill their onboarding forms instantly, by just uploading or scanning their NID card – IDfy will digitize the document for you!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 183, - "avgSuccessRate": 95, - "popularityScore": 7.8, - "__typename": "Score" - } - }, - "Linguin AI": { - "tool_description": "Language And Profanity Detection as a Service", - "score": { - "avgServiceLevel": 100, - "avgLatency": 973, - "avgSuccessRate": 84, - "popularityScore": 7.5, - "__typename": "Score" - } - }, - "Terminology Extraction": { - "tool_description": "This API allows you to extract most relevant terms from a text. It is not, like many others, a basic TF-IDF analysis. It compare the text against a very large language model, it uses a probabilistic model to identify candidates, it supports multi-words terms and not only single words. It uses part of speech tagging to clean up the results\". In short it is probably the most advanced term extraction out there.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 528, - "avgSuccessRate": 33, - "popularityScore": 7.2, - "__typename": "Score" - } - }, - "Sentimental Analysis_v2": { - "tool_description": "Api for sentimental analysis of textual dataq", - "score": { - "avgServiceLevel": 0, - "avgLatency": 0, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "Philippines Voter Card OCR": { - "tool_description": "IDfy’s Philippines Voter Card OCR API allows you to onboard your customers with speed and precision.\n\nEnable them to prefill their onboarding forms instantly, by just uploading or scanning a Voter Card card – IDfy will digitize the document for you!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 173, - "avgSuccessRate": 96, - "popularityScore": 7.7, - "__typename": "Score" - } - }, - "Google Translate": { - "tool_description": "Dynamically translate between languages.", - "score": { - "avgServiceLevel": 95, - "avgLatency": 698, - "avgSuccessRate": 95, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "Multi-lingual Sentiment Analysis": { - "tool_description": "Multi-lingual Sentimel Analysis uses computational linguistics and text mining to automatically determine the sentiment or affective nature of the text being analyzed in multiple language support.\n\nThis API can detect the languange and reponse the accurate sentiment polarity of given text, but you can define {lang} parameter for better result and accurate.\n\nSupported languange (lang):\n 'af': 'afrikaans',\n 'sq': 'albanian',\n 'am': 'amharic',\n 'ar': 'arabic',\n 'hy': 'armenian',\n ...", - "score": { - "avgServiceLevel": 42, - "avgLatency": 574, - "avgSuccessRate": 42, - "popularityScore": 7.7, - "__typename": "Score" - } - }, - "Google's BERT Sentiment Analysis": { - "tool_description": "The BERT-Based Sentiment Analysis API is a cutting-edge tool that leverages Google's BERT (Bidirectional Encoder Representations from Transformers) model to perform accurate sentiment analysis on text data. BERT is a state-of-the-art language representation model that excels in understanding context and nuances, making it highly effective for sentiment classification tasks. This API provides developers with the ability to harness the power of BERT for robust and precise sentiment analysis.\n\nS...", - "score": { - "avgServiceLevel": 97, - "avgLatency": 1710, - "avgSuccessRate": 97, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "Sentiment Analysis Service": { - "tool_description": "Enter a block of text to detect the sentiment and details around it (positive or negative).", - "score": { - "avgServiceLevel": 100, - "avgLatency": 770, - "avgSuccessRate": 100, - "popularityScore": 7.7, - "__typename": "Score" - } - }, - "Sentiment Analysis_v12": { - "tool_description": "Luminous Engineering Sentiment Analysis", - "score": null - }, - "gruite": { - "tool_description": "Get meanings and synonyms for words in vernacular language", - "score": { - "avgServiceLevel": 100, - "avgLatency": 363, - "avgSuccessRate": 100, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "Cyber Guardian": { - "tool_description": "A highly configurable and precise solution for augmenting your moderation needs, scalable and adaptable for various platforms. State-of-the-art detection of cyberbullying, verbal aggression and toxic messages powered by Samurai Labs’ neuro-symbolic AI along with a suite of moderation tools that empowers you to maintain peace in your community. Protect your community and integrate the Cyber Guardian into your moderation suite with this easy to set up API. Use the \"setup\" endpoint to initialize...", - "score": { - "avgServiceLevel": 97, - "avgLatency": 1237, - "avgSuccessRate": 97, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "Bing Spell Check": { - "tool_description": "An AI service from Microsoft Azure that turns any app into a spell check resource.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 152, - "avgSuccessRate": 69, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "Best Paraphrasing API": { - "tool_description": "Best Paraphrasing API allows developers to rephrase text with ease. It can be used to improve readability, and avoid plagiarism and can be integrated into various applications such as content management systems, SEO tools, and more. ", - "score": { - "avgServiceLevel": 18, - "avgLatency": 137, - "avgSuccessRate": 18, - "popularityScore": 2.1, - "__typename": "Score" - } - }, - "CleanTalk": { - "tool_description": "CleanTalk API is a content validation service that helps you filter out profanity and obscenity in your user-generated content. ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 391, - "avgSuccessRate": 100, - "popularityScore": 7.6, - "__typename": "Score" - } - }, - "Word Scramble": { - "tool_description": "Scramble a given input word\n/scramble/{word}", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3128, - "avgSuccessRate": 100, - "popularityScore": 6.6, - "__typename": "Score" - } - }, - "Walnut Word Completion": { - "tool_description": "Complete any masked word in a sentence using AI.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1172, - "avgSuccessRate": 90, - "popularityScore": 7.8, - "__typename": "Score" - } - }, - "Google Translate_v2": { - "tool_description": "Google Translate API offers rapid and accurate multilingual translations. With real-time capabilities, language detection, and text-to-speech conversion, easily integrate fast and reliable translation services into your applications. Expand global reach seamlessly with comprehensive documentation and extensive language support.", - "score": { - "avgServiceLevel": 25, - "avgLatency": 60006, - "avgSuccessRate": 25, - "popularityScore": 2.3, - "__typename": "Score" - } - }, - "Sentino": { - "tool_description": "Sentino API is used to understand personality traits (Big5, NEO etc.) using NLP.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 889, - "avgSuccessRate": 14, - "popularityScore": 2, - "__typename": "Score" - } - }, - "Sentiment by API-Ninjas": { - "tool_description": "State-of-the-art text sentiment analysis. See more info at https://api-ninjas.com/api/sentiment.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 443, - "avgSuccessRate": 99, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "TextAPI": { - "tool_description": "A text extraction, manipulation, and analysis api. Putting the power of natural language processing (nlp) in every developers hands.", - "score": { - "avgServiceLevel": 92, - "avgLatency": 75694, - "avgSuccessRate": 89, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "VPS Tester": { - "tool_description": "VPS tester", - "score": null - }, - "AI Tool - GPT Token Splitter": { - "tool_description": "This REST API service provides a way to programmatically split GPT-3 text-prompts into user-defined token-sized slices.", - "score": { - "avgServiceLevel": 0, - "avgLatency": 718, - "avgSuccessRate": 0, - "popularityScore": 0, - "__typename": "Score" - } - }, - "testingsunlife": { - "tool_description": "sample1", - "score": null - }, - "Segmentor": { - "tool_description": "Language segmentation API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 288, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "What's Language": { - "tool_description": "Detect the language of a given text", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1723, - "avgSuccessRate": 100, - "popularityScore": 5.5, - "__typename": "Score" - } - }, - "Ginger": { - "tool_description": "Ginger goes beyond spelling and grammar. It takes into account full sentences to suggest context-based corrections. This drastically speeds up your writing - especially for long emails or documents!. This API can also translate to the extensive language list backed by Google Translator and Bing Translator which Uses AI and Deep Neural Networks to improve translations.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1581, - "avgSuccessRate": 100, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "hello world": { - "tool_description": "Return hello world.", - "score": {} - }, - "(CO2)REMEDiAPI": { - "tool_description": "The API for the Let's PIRDDIIQ and Move it Project", - "score": { - "avgServiceLevel": 100, - "avgLatency": 216, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "fastingcenters": { - "tool_description": "fastingcenters ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 586, - "avgSuccessRate": 40, - "popularityScore": 7.4, - "__typename": "Score" - } - }, - "cancer rates by usa state": { - "tool_description": "list of usa states ranked by cancer rates", - "score": { - "avgServiceLevel": 100, - "avgLatency": 573, - "avgSuccessRate": 100, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "Appointment System API": { - "tool_description": "Appointment System Api with user operations and admin operations. Api has all appointment operations for a clinic", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1341, - "avgSuccessRate": 94, - "popularityScore": 9, - "__typename": "Score" - } - }, - "Ind Nutrient API": { - "tool_description": "This API provides users with nutritional information for Indian foods. Users can retrieve a list of Indian dishes with their corresponding nutritional values, including the number of calories, the amount of protein, fat, and carbohydrates in grams.\n\nBase URL: \n\nAuthorization-free integration: Follow the endpoint definitions to seamlessly integrate the Ind Nutrients API into your app for accessing Indian nutrient data without any authentication requirements.\n\nBase URL: https://indnutrientsapi....", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1484, - "avgSuccessRate": 100, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "BMI Calculator_v2": { - "tool_description": "Calculate and classify BMIs using imperial and metric units.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 253, - "avgSuccessRate": 100, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Workout Planner": { - "tool_description": "Get workout plans based on time duration, target muscle, fitness level, fitness goals, and equipment available.", - "score": { - "avgServiceLevel": 84, - "avgLatency": 4628, - "avgSuccessRate": 78, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "ClinicalMarkers": { - "tool_description": "Easy calculation of clinical markers for medical applications.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1296, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Body Mass Index (BMI) Calculator": { - "tool_description": "Use this API to calculate the Body Mass Index of an individual based on their height and weight.", - "score": { - "avgServiceLevel": 96, - "avgLatency": 465, - "avgSuccessRate": 92, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "MuscleWiki": { - "tool_description": "The API provides information about exercises from MuscleWiki, including the name, category, target muscles,instructions for performing the exercise and a short video demonstration.", - "score": { - "avgServiceLevel": 99, - "avgLatency": 320, - "avgSuccessRate": 99, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "US Hospitals": { - "tool_description": "A list of major US hospitals including hospital names, addresses, type and ownership.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 740, - "avgSuccessRate": 100, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "Calories Burned by API-Ninjas": { - "tool_description": "Calories burned calculator for hundreds of different sports/activities. See more info at https://api-ninjas.com/api/caloriesburned.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 416, - "avgSuccessRate": 95, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "Exercises by API-Ninjas": { - "tool_description": "Get workout exercises for every muscle group. See more info at https://api-ninjas.com/api/exercises.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 200, - "avgSuccessRate": 100, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "BMI_v2": { - "tool_description": "Our BMI API offers the ability to calculate BMI using both Imperial and Metric units. Users have the option to input their height in feet and inches, and weight in kilograms, and receive results in those units. Additionally, the API includes the option to categorize the user's weight based on their BMI. A separate BMI category for Asians is also available. The results provide valuable information on the user's current health status and can assist in making healthy lifestyle choices", - "score": { - "avgServiceLevel": 0, - "avgLatency": 269, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Horostory": { - "tool_description": "", - "score": { - "avgServiceLevel": 100, - "avgLatency": 5936, - "avgSuccessRate": 98, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "ExerciseDB": { - "tool_description": "The ExerciseDB gives you access to over 1300 exercises with individual exercise data and animated demonstrations.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 339, - "avgSuccessRate": 99, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "AirVisual": { - "tool_description": "Query for Air Pollution Data, Weather information, Health Recommendations, etc... as on the official application", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3218, - "avgSuccessRate": 100, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "Health Calculator API": { - "tool_description": "Welcome to the Health Calculator API. This API provides endpoints for calculating Body Mass Index (BMI), Body Fat Percentage, Basal Metabolic Rate (BMR), Daily Caloric Needs (DCN), Daily Water Intake (DWI), Target Heart Rate (THR), Macronutrients Distribution and Ideal Body Weight (IBW). With this API, you can easily integrate these calculations into your applications, websites, or any other projects.\n\nError Handling\n\nThe API uses standard HTTP status codes to indicate the success or failure ...", - "score": { - "avgServiceLevel": 98, - "avgLatency": 159, - "avgSuccessRate": 93, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "Scoring Tables API": { - "tool_description": "This API uses the World Athletics scoring tables and pulls the marks required for certain point values.", - "score": { - "avgServiceLevel": 0, - "avgLatency": 581, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "Suggestic": { - "tool_description": "Suggestic Food & Meal Plan API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 589, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "Pregnancy Calculator API": { - "tool_description": "Welcome to the Pregnancy Calculator API. This API provides endpoints for calculating Fertility Window, Pregnancy Due Date, Pregnancy Week, and Pregnancy Weight Recommendation. With this API, you can easily integrate these calculations into your applications, websites, or any other projects.\n\nError Handling\n\nThe API uses standard HTTP status codes to indicate the success or failure of a request. In case of an error, the response will contain an error message in JSON format. The HTTP status cod...", - "score": { - "avgServiceLevel": 56, - "avgLatency": 56731, - "avgSuccessRate": 56, - "popularityScore": 6.2, - "__typename": "Score" - } - }, - "selector-tipo-consultas": { - "tool_description": "decide el tipo de consulta", - "score": { - "avgServiceLevel": 100, - "avgLatency": 855, - "avgSuccessRate": 100, - "popularityScore": 8.2, - "__typename": "Score" - } - }, - "BMR and TMR": { - "tool_description": "API calculates BMR (Basal Metabolic Rate) and TMR (Total Metabolic Rate)", - "score": { - "avgServiceLevel": 100, - "avgLatency": 413, - "avgSuccessRate": 16, - "popularityScore": 2.1, - "__typename": "Score" - } - }, - "get Mood": { - "tool_description": "get Mood Data", - "score": { - "avgServiceLevel": 83, - "avgLatency": 5402, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "Database Of Airports API": { - "tool_description": "The Database of Airports API is a useful resource for developers looking to obtain detailed information on airports worldwide. With the ability to access data such as airport location, IATA and ICAO codes, and other relevant details using the IATA code.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1826, - "avgSuccessRate": 100, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "Quadro de sĂłcios CPF/CNPJ": { - "tool_description": "Consultar Quadro de SĂłcios e Administradores registrados na Receita Federal", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1234, - "avgSuccessRate": 100, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "classes": { - "tool_description": "manage classes", - "score": { - "avgServiceLevel": 100, - "avgLatency": 302, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "TEST": { - "tool_description": "Futtest", - "score": { - "avgServiceLevel": 100, - "avgLatency": 366, - "avgSuccessRate": 0, - "popularityScore": 0, - "__typename": "Score" - } - }, - "Geo_Coder_Dev": { - "tool_description": "Geocoder", - "score": null - }, - "Subdomains Lookup": { - "tool_description": "Subdomains Lookup API lists all the subdomains for a queried domain name.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 813, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Driving License Verification": { - "tool_description": "IDfy’s Driving License Verification API instantly verifies details of a driving license by confirming them from the Government database. \n\nThis makes your onboarding process safer, faster, and smarter. With IDfy’s DL verification API, you can be confident that the individuals you onboard hold a valid DL and have provided you with the right identity proof. \n\nCouple it with IDfy’s Driving License OCR API to make your identity verification and onboarding process seamless and instant.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 224, - "avgSuccessRate": 99, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "car code": { - "tool_description": "This is a simple API that will return the human readable version of DTC codes (OBD-II Trouble Codes).", - "score": { - "avgServiceLevel": 100, - "avgLatency": 52, - "avgSuccessRate": 87, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "Chattydata": { - "tool_description": "This API is for chatty app", - "score": { - "avgServiceLevel": 100, - "avgLatency": 451, - "avgSuccessRate": 100, - "popularityScore": 6.8, - "__typename": "Score" - } - }, - "Joke Test": { - "tool_description": "This is a Joke Test", - "score": { - "avgServiceLevel": 100, - "avgLatency": 8, - "avgSuccessRate": 100, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "SuggestUse": { - "tool_description": "This api provides access to information about alternatives to various applications, for computers, smartphones or online services.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 791, - "avgSuccessRate": 80, - "popularityScore": 7.1, - "__typename": "Score" - } - }, - "testapi2": { - "tool_description": "test api2", - "score": null - }, - "Complete Criminal Checks Offender Data": { - "tool_description": "SHOULD BE USED FOR MARKETING REASONS ONLY! Current and Historical offender records and data, search sex offenders by name, vehicle license plate, nicknames/aka. 25 calls per day for all free accounts. Includes API sandbox for easy link generation, includes sample code to help new developers get started. XML & JSON", - "score": null - }, - "aaaa": { - "tool_description": "aaa", - "score": { - "avgServiceLevel": 100, - "avgLatency": 311, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "veiculos-api": { - "tool_description": "Tabela FIPE - Busca por marca, modelo e versĂŁo.", - "score": { - "avgServiceLevel": 99, - "avgLatency": 1234, - "avgSuccessRate": 99, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "BusinessMate": { - "tool_description": "Grab your business opportunities contact with ease and get a thousand phone numbers, websites, etc., with only one click.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 625, - "avgSuccessRate": 74, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "AirplanesDB": { - "tool_description": "Get the basic specifications on all types of commercial airplanes.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 698, - "avgSuccessRate": 100, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "Plants": { - "tool_description": "The Plants API made by Pizza API boasts a database of over 40,000 plants that can be easily searched by either their common name or scientific name. Each plant entry in the API includes a comprehensive list of properties, such as genus, species, category, family, growth habit, duration, and growth rate. \n\nSome of the most important properties included in the API for each plant entry are mature height, foliage texture, flower color, fruit color, toxicity, drought tolerance, shade tolerance, te...", - "score": { - "avgServiceLevel": 98, - "avgLatency": 1943, - "avgSuccessRate": 58, - "popularityScore": 9, - "__typename": "Score" - } - }, - "testGetApi": { - "tool_description": "test api for project batman", - "score": { - "avgServiceLevel": 100, - "avgLatency": 7, - "avgSuccessRate": 100, - "popularityScore": 7.6, - "__typename": "Score" - } - }, - "Indian Bank Statement": { - "tool_description": "The bank statement API helps banks and lenders make decisions b providing outputs about Salary frequency and estimation, current financial health of the individual, any risky behaviour associated with the transactions.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 128, - "avgSuccessRate": 97, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "hhside": { - "tool_description": "none", - "score": { - "avgServiceLevel": 100, - "avgLatency": 415, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Roman Gods By Pizza API": { - "tool_description": "With the Roman Gods API, you can access information about gods such as Jupiter, the king of the gods, and his wife Juno, the goddess of marriage and childbirth. You can also learn about other prominent gods, such as Mars, the god of war, Venus, the goddess of love and beauty, and Mercury, the messenger of the gods. \n\nThis API is ideal for anyone looking to build applications centered around ancient mythology, history, or culture. Whether you're developing a website, a mobile app, or a game, ...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 675, - "avgSuccessRate": 97, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "World History Timeline": { - "tool_description": "Introducing the World History Timeline API by Pizza API - an extensive resource for exploring world historical events from 3200 BCE to the year 2000. This API gives you access to a vast database of information on the most significant moments in human history, including the dates and events all organized in an easy-to-use format for developers. \n\nWith the World History Timeline API, you can delve into the history of ancient civilizations, witness the key events of the Middle Ages, and underst...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 610, - "avgSuccessRate": 100, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "Pan Card Verification at Lowest price": { - "tool_description": "Instant PAN Card Verification using government database check. (Made in India).\n\nPAN Card Verification API instantly verifies details of a PAN Card by confirming them from the Government database.\n\nThis makes your onboarding process faster, safer and smarter. With our PAN verification, you can be confident that the individuals or merchants you onboard hold a valid PAN card and have provided you with the right identity proof.", - "score": { - "avgServiceLevel": 33, - "avgLatency": 639, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "light switch": { - "tool_description": "", - "score": { - "avgServiceLevel": 100, - "avgLatency": 760, - "avgSuccessRate": 100, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "Consulta CPF CNPJ Brasil": { - "tool_description": "api consulta cpf cnpj diretamente na base do serasa, otimize suas aplicaçÔes", - "score": { - "avgServiceLevel": 0, - "avgLatency": 30049, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "Student": { - "tool_description": "students", - "score": { - "avgServiceLevel": 100, - "avgLatency": 7, - "avgSuccessRate": 100, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "expense data": { - "tool_description": "expense data", - "score": { - "avgServiceLevel": 0, - "avgLatency": 940, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "IP Netblocks": { - "tool_description": "IP Netblocks API gives you extensive information about IP ranges and IP address owners.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 761, - "avgSuccessRate": 42, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "Dati Comuni": { - "tool_description": "API Dati Comuni", - "score": null - }, - "Data Axle Consumer Address Search": { - "tool_description": "Find relevant People in the Data Axle database", - "score": { - "avgServiceLevel": 100, - "avgLatency": 645, - "avgSuccessRate": 10, - "popularityScore": 1.8, - "__typename": "Score" - } - }, - "Lista de empresas por segmento": { - "tool_description": "Lista de empresas segmentadas | Leads segmentadas", - "score": { - "avgServiceLevel": 48, - "avgLatency": 1213, - "avgSuccessRate": 48, - "popularityScore": 8, - "__typename": "Score" - } - }, - "List Movies v3": { - "tool_description": "This Movies API contains the data of the best movies ever made in a very easy-to-use and organized format.\n\nGreat choice for REST API based Frontend Developer Projects.\n\nIn the case of accessing the complete list, the Cover image, Rank, Title, Thumbnail, Rating, Id, Year, Images, Description, Trailer, Genre, Director, Writer and ID of the movies are listed.\n\nThis is a lightweight web service, (REST interface), which provides an easy way to access our database.\n\nAn API (Application programming...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1004, - "avgSuccessRate": 100, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "Data Axle Consumer Search": { - "tool_description": "Find relevant listings in the database", - "score": { - "avgServiceLevel": 100, - "avgLatency": 572, - "avgSuccessRate": 50, - "popularityScore": 7.5, - "__typename": "Score" - } - }, - "Card Databse": { - "tool_description": "Hearthstone", - "score": { - "avgServiceLevel": 100, - "avgLatency": 154, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "Summery": { - "tool_description": "Dashboard summery", - "score": { - "avgServiceLevel": 0, - "avgLatency": 0, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Database on Entities Sanctioned for Compliance (DESC)": { - "tool_description": "The DESC provides sanctions data on a global scale. The data is collected from a variety of open sources, such as national governments and third-parties. Sanctions are ever-changing, so the DESC has been developed with automated data processing to have the most up-to-date and useful sanctions data. This data is combined into a single file to provide a simple and effective way for users to interact with the data, and most importantly, stay compliant with active sanctions.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 4894, - "avgSuccessRate": 100, - "popularityScore": 6.7, - "__typename": "Score" - } - }, - "Taekwondo_Athlete_World_Ranking": { - "tool_description": "Taekwondo_Athlete_World_Ranking", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1342, - "avgSuccessRate": 100, - "popularityScore": 7.1, - "__typename": "Score" - } - }, - "Website Categorization": { - "tool_description": "Website Categorization API lets you define the website category of a given URL. ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 662, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "Passport Verification": { - "tool_description": "Instant Passport Verification using government database check.\n\nIDfy’s Passport Verification API instantly verifies details of a Passport by confirming them from the Government database.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 111, - "avgSuccessRate": 98, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "CatBreedDB": { - "tool_description": "Get the basic metadata on all breeds of cats from around the world.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 685, - "avgSuccessRate": 100, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "Countries Population": { - "tool_description": "An API that returns the estimated population, from a selected country.", - "score": { - "avgServiceLevel": 0, - "avgLatency": 674, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "HSN TSN": { - "tool_description": "With this API you can find out the key number of over ~30,000 vehicles. The available vehicle data includes: \nInsurance classes (liability, partial, comprehensive), vehicle name, year of manufacture, power (hp), engine displacement (cc), fuel, HSN and TSN.\n\nSupported manufacturers are: \nAiways, Alfa Romeo, Alpina, Audi, Barkas, BMW, Borgward, Buick, Cadillac, Chevrolet, Chrysler, CitroĂ«n, Cupra, Dacia, Daewoo, DAF, Daihatsu, Datsun, Dodge, DS, e. GO, Fiat, Ford, Genesis, Glass, Great Wall, Ha...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1165, - "avgSuccessRate": 100, - "popularityScore": 7.7, - "__typename": "Score" - } - }, - "Dados CNPJ": { - "tool_description": "Busca os dados de um CNPJ diretamente na base de dados da Receita Federal.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1196, - "avgSuccessRate": 100, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Reverse MX": { - "tool_description": "Reverse MX API lets you see the list of domains using the same mail server so that you can avoid your website sharing its server with dangerous or even blacklisted domains.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 598, - "avgSuccessRate": 0, - "popularityScore": 0, - "__typename": "Score" - } - }, - "GetTempMail": { - "tool_description": "Getting temp mail pr", - "score": { - "avgServiceLevel": 100, - "avgLatency": 357, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "siteDomain": { - "tool_description": "site adm domain", - "score": { - "avgServiceLevel": 100, - "avgLatency": 7, - "avgSuccessRate": 100, - "popularityScore": 6.4, - "__typename": "Score" - } - }, - "Data Breach Checker": { - "tool_description": "The Data Breach Checker API allows users to check if their data has been compromised in any known data breaches. By simply entering an email address, the API searches through a vast database of known data breaches using the reputable \"Have I Been Pwned\" backend. The API is easy to integrate into existing applications, making it an essential tool for companies and individuals seeking to enhance their cybersecurity posture. ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2387, - "avgSuccessRate": 100, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "Python Libraries tst": { - "tool_description": "Testing for mock api endpointss", - "score": { - "avgServiceLevel": 100, - "avgLatency": 6, - "avgSuccessRate": 100, - "popularityScore": 6.3, - "__typename": "Score" - } - }, - "Data Axle Consumer Phone Search": { - "tool_description": "Find relevant people in real-time.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 858, - "avgSuccessRate": 25, - "popularityScore": 1.7, - "__typename": "Score" - } - }, - "Data Axle Business Phone Search": { - "tool_description": "Find relevant businesses by phone number.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 643, - "avgSuccessRate": 100, - "popularityScore": 5.2, - "__typename": "Score" - } - }, - "Response WebHook": { - "tool_description": "Accept response pushed from VP", - "score": null - }, - "Winget API": { - "tool_description": "Uses the Winget database to fetch informations. Updated every 3 hours.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 724, - "avgSuccessRate": 100, - "popularityScore": 7.3, - "__typename": "Score" - } - }, - "TEAS": { - "tool_description": "Managements about teas .", - "score": { - "avgServiceLevel": 100, - "avgLatency": 662, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "timedb": { - "tool_description": "Store sensor data in managed/cloud database compatible to InfluxDB. Tested to work with Grafana, Node-RED, and other platforms. Each plan provides data retention up to 10 years. Use webhooks to trigger events in systems like n8n or other low-code environments.", - "score": { - "avgServiceLevel": 98, - "avgLatency": 186, - "avgSuccessRate": 98, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "VCT Global Contract Database": { - "tool_description": "Get the VCT contract information for all 3 regions via this API. Updated every few hours.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 538, - "avgSuccessRate": 100, - "popularityScore": 7.3, - "__typename": "Score" - } - }, - "Felina Multisig Wallet API": { - "tool_description": "Handles the database of the wallet", - "score": { - "avgServiceLevel": 98, - "avgLatency": 3832, - "avgSuccessRate": 98, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "DogBreedDB": { - "tool_description": "Get the basic metadata on all breeds of dogs from around the world. Check out encurate.app to manage content on your mobile apps. Contact to feature your app on encurate.app website.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 769, - "avgSuccessRate": 100, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Weed Strain": { - "tool_description": "Basic information on all weed strain. Build mobile apps for weed strains.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 463, - "avgSuccessRate": 100, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "Watch Database": { - "tool_description": "Our Watch Models API is a comprehensive and accurate data source of more than 20,000 watch models. This API allows users to retrieve detailed information about each model, including brand, model name, release date, features, and more. This data can be easily integrated into a wide range of use cases, such as e-commerce, watch retailers, watch collectors, research and development and watch repair. Our API is constantly updated and maintained to ensure that the data provided is accurate and co...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 435, - "avgSuccessRate": 100, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "WHOIS v2": { - "tool_description": "WHOIS API (v2) returns well-parsed WHOIS records with fields in XML and JSON formats for any IPv4, IPv6 address, domain name, or email.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1730, - "avgSuccessRate": 90, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "Udyam Aadhaar Verification": { - "tool_description": "Make your onboarding process safer, faster, and smarter by verifying the legitimacy of the MSME merchants operating in the manufacturing or service sectors, on your platform.\n\nWith IDfy’s Udyam Aadhaar verification API, you can now confidently onboard merchants knowing that the merchant exists, is genuine and is authorized to partake in the manufacture or service sector by the Ministry of MSME.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 129, - "avgSuccessRate": 99, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "gcfen": { - "tool_description": "cinema test", - "score": { - "avgServiceLevel": 100, - "avgLatency": 591, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Restaurants near me USA": { - "tool_description": "USA Restaurants database. Find restaurants near you by querying this complete and comprehensive restaurant API. The API will return 10 results per page. Please use the \"page\" field for pagination.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 384, - "avgSuccessRate": 86, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Domain Reputation": { - "tool_description": "Domain Reputation API lets you build a risk profile for a given domain or IP address with a single score based on multiple data sources.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1108, - "avgSuccessRate": 42, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "PageantDB": { - "tool_description": "Metadata on publicly available information on various pageant contests. ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 450, - "avgSuccessRate": 100, - "popularityScore": 7.7, - "__typename": "Score" - } - }, - "EPFO Employee Verification": { - "tool_description": "This API that takes company and employee information as input and returns if the employee name is found in the PF list of the employer", - "score": { - "avgServiceLevel": 100, - "avgLatency": 146, - "avgSuccessRate": 97, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "ICMAI Verification": { - "tool_description": "IDfy’s ICMA Verification API enables you to verify if a user is actually a member of ICMA. The verification API is real-time and non-intrusive in nature.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 171, - "avgSuccessRate": 96, - "popularityScore": 7.6, - "__typename": "Score" - } - }, - "fwd-api": { - "tool_description": "resource forwarding api powered by Firebase storage & Heroku", - "score": { - "avgServiceLevel": 98, - "avgLatency": 1200, - "avgSuccessRate": 98, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "Reverse IP": { - "tool_description": "Reverse IP API lets you see all the connected domains currently hosted on a given IP address. That way, you can make sure your or someone else's website doesn't share an IP address with undesirable hosts and therefore prevent overblocking. ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 647, - "avgSuccessRate": 0, - "popularityScore": 0, - "__typename": "Score" - } - }, - "Data Axle Business Address Search": { - "tool_description": "Find relevant businesses in real-time.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1233, - "avgSuccessRate": 25, - "popularityScore": 1.5, - "__typename": "Score" - } - }, - "Website Contacts": { - "tool_description": "Website Contacts API delivers well-structured contact information from domain owners based on data parsed from websites, social media, and SSL certificates in addition to other sources. Contact points gathered include phone numbers, emails, social media links, and others. ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 689, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Motorcycle Specs Database": { - "tool_description": "--- DEMO http://api-motorcycle.makingdatameaningful.com/ ----\n\nThe complete Motorcycle Database with specifications for all Makes & Models [year 1900 to 2023]. Full specs & images included. Real-Time updated.\nWe provide a motorcycle database delivered through API. There are more than 35,000 moto models available along with 20+ technical information fields. One image per model is also included. Our fast API is delivered through several endpoints in order to satisfy different request types. ...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 208, - "avgSuccessRate": 100, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "Customer": { - "tool_description": "Test", - "score": null - }, - "All Cars Names, Image and Variants Info": { - "tool_description": "Search All Cars Names, Image and Variants Info with this api ,search once and get list of all cars. use it for auto-suggestion", - "score": { - "avgServiceLevel": 100, - "avgLatency": 684, - "avgSuccessRate": 96, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "Whois History": { - "tool_description": "WHOIS History API lets you find out about current and past domain owners and all other relevant registration details that can be gathered from WHOIS records. ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 749, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "capitall_fitness": { - "tool_description": "fitness calculator", - "score": { - "avgServiceLevel": 50, - "avgLatency": 9, - "avgSuccessRate": 50, - "popularityScore": 5.6, - "__typename": "Score" - } - }, - "Website Screenshot": { - "tool_description": "Website Screenshot API lets you get the screenshots of any site pages of your choice as a file in jpg, png, or PDF file (with embedded links) in just one API call.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 649, - "avgSuccessRate": 0, - "popularityScore": 0, - "__typename": "Score" - } - }, - "MongoDB Wix": { - "tool_description": "Adapter for MongoDb Atlas", - "score": { - "avgServiceLevel": 100, - "avgLatency": 678, - "avgSuccessRate": 56, - "popularityScore": 9, - "__typename": "Score" - } - }, - "Indian RTO's Names Search ": { - "tool_description": "Search all India's RTO names by name, city PREFIX, like MH (for maharashtra), GA, CA, TA, etc", - "score": { - "avgServiceLevel": 100, - "avgLatency": 698, - "avgSuccessRate": 100, - "popularityScore": 9, - "__typename": "Score" - } - }, - "Voter Card Verifications": { - "tool_description": "With the Voter Card Verification API, you can now onboard with confidence knowing that the individuals you onboard are holding a valid Voter Card issued by the Government of India, are eligible to vote, and have provided you with reliable identity and address proofs.\n\nCouple it with our Voter Card OCR API to make your identity verification process seamless and instant!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 99, - "avgSuccessRate": 0, - "popularityScore": 0, - "__typename": "Score" - } - }, - "Portfolio": { - "tool_description": "Sami Malik Portfolio", - "score": { - "avgServiceLevel": 100, - "avgLatency": 167, - "avgSuccessRate": 83, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "Bank Account Verification": { - "tool_description": "With the Bank Account Verification solution, you can now onboard with confidence knowing that that the individual’s/ merchant’s account details you have are genuine and indeed belong to the individual/ merchant that you are onboarding, thereby reducing the potential of fraud. Couple it with our Cheque OCR API to make your bank account verification process seamless and instant.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 184, - "avgSuccessRate": 93, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "Reverse NS": { - "tool_description": "Reverse NS API lets you see the list of domains using the same name server.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 643, - "avgSuccessRate": 0, - "popularityScore": 0, - "__typename": "Score" - } - }, - "Mocking Rock ": { - "tool_description": "An APIs collection for getting sample profiles and city Data for testings for frontend or mock testings. ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 660, - "avgSuccessRate": 100, - "popularityScore": 7.6, - "__typename": "Score" - } - }, - "Test1": { - "tool_description": "HadiAali", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1005, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "India Bankruptcy Verification": { - "tool_description": "IDfy’s IBBI Verification API will enable you to understand if an Indian corporation is under bankruptcy.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 103, - "avgSuccessRate": 97, - "popularityScore": 7.5, - "__typename": "Score" - } - }, - "gsaauction": { - "tool_description": "gsaauction", - "score": { - "avgServiceLevel": 100, - "avgLatency": 844, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "Real_Estate_Heroku": { - "tool_description": "Real Estate", - "score": { - "avgServiceLevel": 100, - "avgLatency": 204, - "avgSuccessRate": 100, - "popularityScore": 6.2, - "__typename": "Score" - } - }, - "Women in Tech": { - "tool_description": "A dataset of Women-led startups worldwide", - "score": { - "avgServiceLevel": 100, - "avgLatency": 9, - "avgSuccessRate": 100, - "popularityScore": 7.8, - "__typename": "Score" - } - }, - "List oF Philosophers": { - "tool_description": "With the Philosophers API, you can learn about philosophers such as Socrates, Plato, and Aristotle, as well as lesser-known but equally important thinkers. You can access information on the philosophies of these thinkers, as well as the historical context in which they lived. This API is perfect for anyone looking to build applications centered around philosophy, history, or culture. Whether you're developing a website, a mobile app, or a game, the Philosophers API by Pizza API will provide ...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 617, - "avgSuccessRate": 100, - "popularityScore": 7.6, - "__typename": "Score" - } - }, - "Legend of Takada Kenshi": { - "tool_description": "An API that randomly returns the legend of Takada Kenshi", - "score": { - "avgServiceLevel": 100, - "avgLatency": 50, - "avgSuccessRate": 100, - "popularityScore": 8, - "__typename": "Score" - } - }, - "MCI NMC Doctor Verification": { - "tool_description": "This API allows the client to verify the integrity and validity of a medical certificate", - "score": { - "avgServiceLevel": 100, - "avgLatency": 170, - "avgSuccessRate": 97, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "India NCVT ITI Cerificate Verification": { - "tool_description": "NCVT Certificate is a certificate awarded for the completion of ITI courses under the purview of the NCVT. The full form of NCVT is the National Council of Vocational Training. Exams conducted by the NCVT include Craftsman Training Scheme (CTS), Apprentice Training Scheme (ATS), and All India Trade Test (AITT).", - "score": { - "avgServiceLevel": 100, - "avgLatency": 184, - "avgSuccessRate": 96, - "popularityScore": 8, - "__typename": "Score" - } - }, - "ICAI Chartered Accountant Verification": { - "tool_description": "This API checks the genuineness of the CA membership", - "score": { - "avgServiceLevel": 100, - "avgLatency": 164, - "avgSuccessRate": 97, - "popularityScore": 8, - "__typename": "Score" - } - }, - "Nurse Verification": { - "tool_description": "Nurse verification is used to verify whether an individual is a registered nurse with the Indian Nurse Council (INC).\n\nUse GET Call API to fetch results, using the request_id received in response.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 103, - "avgSuccessRate": 96, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "Test": { - "tool_description": "Test", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2621, - "avgSuccessRate": 100, - "popularityScore": 7.6, - "__typename": "Score" - } - }, - "IoTVAS": { - "tool_description": "IOTVAS API enables you to detect IoT devices in the network and provides detailed firmware risk analysis without requiring the user to upload the firmware file.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 782, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "football": { - "tool_description": "api-football", - "score": { - "avgServiceLevel": 100, - "avgLatency": 361, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "Spam Number Checker": { - "tool_description": "Simple API that runs is the number spam or not.", - "score": null - }, - "Geolocation Simulation For Mobile Apps": { - "tool_description": "Tired of field testing your geolocation based mobile apps? Wish you could see how your app would work if a user is walking or driving around with it? Want an easy way to test your app in random areas (geofences), random streets? Use our REST APIs in your app. Code locally, test globally. \r\n\r\nUse our web platform to buy API credits: https://apps.geolocationtech.com/login", - "score": { - "avgServiceLevel": 100, - "avgLatency": 381, - "avgSuccessRate": 100, - "popularityScore": 7.5, - "__typename": "Score" - } - }, - "CellPhones": { - "tool_description": "Welcome to the GSMarena API! Our API allows you to easily access and consume the vast array of data available on the GSMarena website. \n\nWith our API, you can access detailed information about any phone or tablet, including technical specifications, images, and more. \n\nWith the GSMarena API, you can quickly and easily: \n‱ Retrieve detailed information about any phone or tablet \n‱ Access images of any device \n‱ Get full specifications and features of any device \n‱ Check prices, ratings, and re...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 305, - "avgSuccessRate": 100, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "lottery": { - "tool_description": "lottery studio", - "score": { - "avgServiceLevel": 60, - "avgLatency": 253, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Ubidots": { - "tool_description": "Build your own sensor application. Ubidots simplifies the making of Internet of Things applications for data capturing, real-time remote monitoring and getting insights from sensor data.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 451, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "asdasd": { - "tool_description": "fsafsafsa", - "score": { - "avgServiceLevel": 100, - "avgLatency": 88, - "avgSuccessRate": 100, - "popularityScore": 7.7, - "__typename": "Score" - } - }, - "MAC Address to Manufacturer": { - "tool_description": "MAC Address Lookup to find the hardware manufacturer and its postal address of a specific MAC Address", - "score": { - "avgServiceLevel": 100, - "avgLatency": 75, - "avgSuccessRate": 13, - "popularityScore": 2.2, - "__typename": "Score" - } - }, - "mmm": { - "tool_description": "android", - "score": null - }, - "openHUB": { - "tool_description": "Smart Home aplication", - "score": { - "avgServiceLevel": 100, - "avgLatency": 997, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "Mobile Phone Specs Database": { - "tool_description": "Our cell phones / mobile phones specs database (GSM specs) is a collection of specifications and features of different models of mobile phones (more than 10,000 models). This information includes the device's dimensions, images, weight, display size and type, processor, memory, storage, camera specifications, battery capacity, operating system, and connectivity options, among others. \nThe purpose of this database is to provide a comprehensive source of information for consumers to compare an...", - "score": { - "avgServiceLevel": 99, - "avgLatency": 825, - "avgSuccessRate": 99, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "Disposable Email Validation": { - "tool_description": "Disposable Email Validation and Verification check against >150K unique domains. Detect if an Email is from a Disposable Email Address Services.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 95, - "avgSuccessRate": 100, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "Validect - Email Verification": { - "tool_description": "Email address validation API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1073, - "avgSuccessRate": 100, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "Get emails from url": { - "tool_description": "Get all unique email address by url.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1892, - "avgSuccessRate": 100, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "Email Disposable Generator API": { - "tool_description": "The Email Disposable Generator API is a tool designed for developers to create temporary email addresses for testing and development purposes. The API generates unique and disposable email addresses that ensure the privacy and security of the user.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 878, - "avgSuccessRate": 100, - "popularityScore": 7.4, - "__typename": "Score" - } - }, - "Mailcheap": { - "tool_description": "HTTPS API for managing dedicated email servers from Mailcheap, providing complete API support for email administration.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1197, - "avgSuccessRate": 100, - "popularityScore": 7.1, - "__typename": "Score" - } - }, - "Email Utilities": { - "tool_description": "API to validate email and normalize email", - "score": { - "avgServiceLevel": 100, - "avgLatency": 773, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Email Validation_v3": { - "tool_description": "Check disposable email addresses", - "score": { - "avgServiceLevel": 100, - "avgLatency": 57041, - "avgSuccessRate": 100, - "popularityScore": 5.2, - "__typename": "Score" - } - }, - "Blaze Verify": { - "tool_description": "Email Verification by Emailable is astonishingly easy and low-cost. Simple, reliable, and affordable list cleaning shouldn’t be hard to find. Emailable helps marketers and developers build powerful and effective marketing campaigns.
View API Docs | Click Here to Sign Up for an API Key", - "score": { - "avgServiceLevel": 100, - "avgLatency": 245, - "avgSuccessRate": 17, - "popularityScore": 1.7, - "__typename": "Score" - } - }, - "Email Verifier/Validator": { - "tool_description": "This API uses SMTP Callback Verification technique to check if an email really exists or not.", - "score": { - "avgServiceLevel": 73, - "avgLatency": 3114, - "avgSuccessRate": 73, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "Validate Email": { - "tool_description": "“Validate Email” before you send. Discover deliverability of email addresses by our most popular email verification API.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1061, - "avgSuccessRate": 100, - "popularityScore": 7.4, - "__typename": "Score" - } - }, - "Bouncer Email Checker": { - "tool_description": "This API is a fast and check email address syntax and deliverability validator", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1582, - "avgSuccessRate": 100, - "popularityScore": 8, - "__typename": "Score" - } - }, - "Email Validator_v9": { - "tool_description": "Clean your email list now!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 337, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "Mail Temple": { - "tool_description": "temporary mail", - "score": { - "avgServiceLevel": 100, - "avgLatency": 349, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Verify Email": { - "tool_description": "This API provides a solution for email validation and mail server availability check. The API accepts an email address as input and returns a response indicating whether the email address is valid and the status of the email server. The response can be used to confirm the validity of an email address before sending an email or to check if an email server is functioning properly. This API helps to ensure the accuracy and deliverability of emails, making it a useful tool for businesses and orga...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1019, - "avgSuccessRate": 100, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "Alpha Email Verification": { - "tool_description": "Email Validation Service. check if a specific e-mail address is valid. Is it a proper domain? Is the e-mail a temporary/disposable e-mail? Our API contains 180k disposable email domains and gives the most valid email", - "score": { - "avgServiceLevel": 100, - "avgLatency": 777, - "avgSuccessRate": 100, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "Ishan": { - "tool_description": "Ishan", - "score": { - "avgServiceLevel": 100, - "avgLatency": 22, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Email Validator_v2": { - "tool_description": "Deep email verify. Supports: Gmail, Mail.Ru, iCloud, Hotmail, Yahoo, Outlook, Rambler, Yandex and more.", - "score": { - "avgServiceLevel": 77, - "avgLatency": 10557, - "avgSuccessRate": 77, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "Domain Emails And Contacts": { - "tool_description": "Get email addresses, phones, and social links from the domains that you are interested in.", - "score": null - }, - "Disposable & Invalid Email Verifier": { - "tool_description": "Our email validation tool makes it simple for you to verify the authenticity of any e-mail address. With just a few clicks, you can confirm if the e-mail address is associated with a valid domain and if it is a temporary or disposable e-mail. These are common indicators of spamming or trolling, which is why we have created an API to help you easily block these unwanted e-mails. Our advanced algorithms and techniques are designed to thoroughly validate each e-mail address, ensuring that you ha...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1795, - "avgSuccessRate": 89, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "fast Email verifier": { - "tool_description": "APISOLUTION services provide a comprehensive API for fast email validation and verification for any developer to use on start-ups and staff projects.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 4445, - "avgSuccessRate": 100, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "Emails Verifier": { - "tool_description": "Allows verifying email addresses. Checks if emails are deliverable.", - "score": null - }, - "MatinApi": { - "tool_description": "its for matin", - "score": null - }, - "Email Address Validator": { - "tool_description": "Stop guessing if an email is valid or full. With this API, you can determine first hand if the email is deliverable and working. Not only can this API detect if an email is formatted correctly, it also uses various methods to verify if the email is actually valid", - "score": { - "avgServiceLevel": 100, - "avgLatency": 10877, - "avgSuccessRate": 100, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "Email validator_v5": { - "tool_description": "This API will validate email with domain name, it is use to filter out invalid email and invalid domain, to perfact match delivery rate and minimum email bounce.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 763, - "avgSuccessRate": 100, - "popularityScore": 5.3, - "__typename": "Score" - } - }, - "apimail10": { - "tool_description": "apimail10", - "score": { - "avgServiceLevel": 100, - "avgLatency": 228, - "avgSuccessRate": 100, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "Email Temporary Generator": { - "tool_description": "The Email Temporary Generator API generates temporary email addresses that can be used to protect the privacy and avoid spam. This API is easy to use and can be integrated with any application. Users can create temporary email addresses and check their inboxes to view incoming emails.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 677, - "avgSuccessRate": 100, - "popularityScore": 8, - "__typename": "Score" - } - }, - "Easy Email Validation": { - "tool_description": "Use this API to quickly and effectively validate an email addresses. This API runs the following checks: valid email format, mx Record, and disposable email.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 501, - "avgSuccessRate": 100, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "EmailBounceAPI": { - "tool_description": "FREE 20,000 , Email Debounce , Our bounce email API is a powerful tool that helps you manage your email deliverability by detecting, monitoring, and handling bounced emails from a range of ISPs. With our API, you can ensure your messages are delivered effectively, and that your sender reputation stays in good standing. Whether you're a small business or a large enterprise, our API is designed to simplify your email management and help you achieve better email performance. Contact us today to ...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1262, - "avgSuccessRate": 100, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "Emails Validator": { - "tool_description": "Allows validating email addresses. Checks if emails are deliverable.", - "score": null - }, - "MARCOM Robot - Email Validation Bot": { - "tool_description": "MARCOM Robot - https://www.marcomrobot.com/. Email Validation Bot performs a series of real-time checks for each email address such as MX record check, SMTP record check, RFC syntax check and many more. ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1061, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "MailSlurp Email Testing": { - "tool_description": "Email sandbox testing API.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 412, - "avgSuccessRate": 5, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Temp Mail": { - "tool_description": "Create a temp mail", - "score": { - "avgServiceLevel": 84, - "avgLatency": 6904, - "avgSuccessRate": 83, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "account verifyer": { - "tool_description": "to verify Instagram account", - "score": null - }, - "Email API": { - "tool_description": "This Email API is helpful to validate email addresses(single or bulk, using txt and csv), detect temporary, get fake emails, check free emails, check MX records and identify free/paid email service providers.", - "score": { - "avgServiceLevel": 94, - "avgLatency": 555, - "avgSuccessRate": 92, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "Email Existence Validator": { - "tool_description": "API which checks if email really exist on server or not.\nIt check for different parameters for giving end results .\nCheck for MX records, SMTP deliverability, Disposable check and many more.", - "score": { - "avgServiceLevel": 99, - "avgLatency": 3175, - "avgSuccessRate": 99, - "popularityScore": 9, - "__typename": "Score" - } - }, - "GetTestMail": { - "tool_description": "Temporary emails in code", - "score": { - "avgServiceLevel": 67, - "avgLatency": 534, - "avgSuccessRate": 8, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Send Sleuth - Email Validation": { - "tool_description": "Easily validate and verify email addresses with our simple API! Start for free and begin validating email addresses", - "score": { - "avgServiceLevel": 100, - "avgLatency": 542, - "avgSuccessRate": 100, - "popularityScore": 8.2, - "__typename": "Score" - } - }, - "EmailQualityPlus": { - "tool_description": "Email Validation", - "score": null - }, - "MailCheck": { - "tool_description": "Check if emails are disposable", - "score": { - "avgServiceLevel": 100, - "avgLatency": 582, - "avgSuccessRate": 98, - "popularityScore": 9, - "__typename": "Score" - } - }, - "Email Validator_v3": { - "tool_description": "Email Validator", - "score": { - "avgServiceLevel": 100, - "avgLatency": 625, - "avgSuccessRate": 100, - "popularityScore": 8, - "__typename": "Score" - } - }, - "E-mail Check Invalid": { - "tool_description": " The Email Check Invalid API is used to verify the validity of an email address.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 416, - "avgSuccessRate": 100, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "Capacitacionangular": { - "tool_description": "Capacitacionangular", - "score": { - "avgServiceLevel": 100, - "avgLatency": 302, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "FraudSentinel": { - "tool_description": "Detect fraud in real time by checking IPs reputation, Proxy/VPN/TOR , BOT, and more... ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1293, - "avgSuccessRate": 96, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "Sigue payout": { - "tool_description": "Sigue Send API is a simple API, allowing consumers to view all information related to integration of methods", - "score": { - "avgServiceLevel": 100, - "avgLatency": 632, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "Zanjir cryptocurrency payment gateway": { - "tool_description": " cryptocurrency payment API service.\n\n", - "score": { - "avgServiceLevel": 100, - "avgLatency": 469, - "avgSuccessRate": 100, - "popularityScore": 7.1, - "__typename": "Score" - } - }, - "Image QR code generator": { - "tool_description": "This API generates Image QR codes", - "score": { - "avgServiceLevel": 86, - "avgLatency": 1732, - "avgSuccessRate": 69, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "Fake Valid CC Data Generator": { - "tool_description": "The API provides you valid and real credit card data for the providers: amex, diners, discover, jcb, maestro, mastercard and visa", - "score": { - "avgServiceLevel": 88, - "avgLatency": 18892, - "avgSuccessRate": 88, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Virtual Accounts API": { - "tool_description": "Use this API to create virtual accounts, manage them, create financial transations, create transaction channels (payment provider).", - "score": { - "avgServiceLevel": 100, - "avgLatency": 6436, - "avgSuccessRate": 7, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "fastmoney": { - "tool_description": "India's Fastest Money Transfer and Recharge Portal ", - "score": null - }, - "NOWPayments": { - "tool_description": "NOWPayments is a non-custodial cryptocurrency payment processing platform. Accept payments in a wide range of cryptos and get them instantly converted into a coin of your choice and sent to your wallet. Keeping it simple – no excess. NOWPayments' API allows you to integrate crypto payments in 50+ assets into any service.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 502, - "avgSuccessRate": 80, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "People photo background removal": { - "tool_description": "", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1492, - "avgSuccessRate": 100, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "Islam & AI API": { - "tool_description": "Islam & AI API for Islamic ChatBot.\n\nThe Best AI for Islam! ", - "score": { - "avgServiceLevel": 65, - "avgLatency": 6756, - "avgSuccessRate": 47, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "Artificial intelligence News API": { - "tool_description": "The Artificial Intelligence News API is a web service that provides access to news articles related to the field of artificial intelligence from around the world. ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 5419, - "avgSuccessRate": 83, - "popularityScore": 7.1, - "__typename": "Score" - } - }, - "Text To Speech_v2": { - "tool_description": "The Multilingual Text To Speech is a powerful tool for converting written text into spoken words in multiple languages. It supports a wide range of languages including English, Spanish, French, Portuguese, Mandarin and Japanese. The API uses state-of-the-art text-to-speech technology to generate high-quality audio files that can be used in a variety of applications such as e-learning, voice assistants, and more. With this API, you can easily convert any text into speech in a matter of seconds...", - "score": { - "avgServiceLevel": 93, - "avgLatency": 3980, - "avgSuccessRate": 91, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Dream Diffusion": { - "tool_description": "Train Stable Diffusion models in 8 minutes and generate custom images.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 7, - "avgSuccessRate": 100, - "popularityScore": 6.9, - "__typename": "Score" - } - }, - "TTSKraken": { - "tool_description": "Introducing our cutting-edge text to speech service, designed to provide you with the most realistic human-sounding voices at an affordable price. Our service is fast and reliable, delivering high-quality audio output in a matter of seconds. Additionally, we offer a wide range of languages and a variety of voice choices, so you can find the perfect fit for your project. Whether you need a voiceover for a video, an audiobook, or any other project, our text to speech service has you covered. Ex...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 603, - "avgSuccessRate": 98, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "Blogzee AI - SEO & Social Content Generator": { - "tool_description": "Blogzee AI is an innovative SEO content generator API powered by advanced machine learning algorithms. It uses OpenAI's cutting-edge language model to produce high-quality, SEO-optimized blog post ideas and content based on the user-specified keywords. Blogzee AI is capable of generating engaging blog posts, incorporating HTML, emojis, and up to five keywords to enhance readability and search engine visibility. Perfect for bloggers, content marketers, and SEO professionals who need a quick bo...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 19817, - "avgSuccessRate": 100, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "AION": { - "tool_description": "Create and chat with your own chatGPT-like chatbots, with personalized instructions and automatic translations.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1477, - "avgSuccessRate": 11, - "popularityScore": 2, - "__typename": "Score" - } - }, - "Text Mood Changer AI": { - "tool_description": "transforms written text into different styles of mood.", - "score": { - "avgServiceLevel": 89, - "avgLatency": 3272, - "avgSuccessRate": 78, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "AI Content Detector_v2": { - "tool_description": "Detect fake news articles, homework, content, and web pages generated by ChatGPT. It is specifically designed to quickly identify if the text has been partially or completely created using a GPT-3 algorithm", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1294, - "avgSuccessRate": 100, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "TextSentAI - AI powered Text Sentiment Analyzer ": { - "tool_description": "📊 Looking for a powerful AI-driven API to analyze the sentiment of your text data? Look no further than TextSentAI! Our API can analyze text in over 140 languages, providing fast and accurate sentiment scores of either POSITIVE or NEGATIVE. Whether you're analyzing social media posts, customer feedback, or any other form of text data, TextSentAI can help you gain valuable insights into your content.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 940, - "avgSuccessRate": 0, - "popularityScore": 0, - "__typename": "Score" - } - }, - "Timeseries Prediction Model": { - "tool_description": "Basic Machine Learning Model wich can predict all sorts of timeseries data in a daily timeframe", - "score": { - "avgServiceLevel": 83, - "avgLatency": 1384, - "avgSuccessRate": 83, - "popularityScore": 7.5, - "__typename": "Score" - } - }, - "ToxDetectAI - AI Powered Toxic Comment Detector ": { - "tool_description": " đŸš«đŸ€Ź Are you concerned about harmful and toxic comments in your online community or platform? Do you want to create a safe and welcoming environment for your users? With ToxDetectAI, you can easily and precisely classify comments as toxic, obscene, insulting, and even containing threats or identity hate. Our cutting-edge AI models are trained on a massive dataset of text data, ensuring that our API provides accurate and reliable results in over 140 languages. Whether you're running a social m...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1584, - "avgSuccessRate": 53, - "popularityScore": 8, - "__typename": "Score" - } - }, - "Speech Recognition": { - "tool_description": "Convert speech to text quickly and easily. Supports 100+ languages", - "score": { - "avgServiceLevel": 100, - "avgLatency": 913, - "avgSuccessRate": 100, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "MidJourney": { - "tool_description": "", - "score": { - "avgServiceLevel": 100, - "avgLatency": 737, - "avgSuccessRate": 85, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "OptiTalk": { - "tool_description": "Create custom highly advanced general AI chatbots and characters with distinct personalities, and knowledgebase. Engage with a vast library of user-generated characters.\n\nhttp://optitalk.net/\n\n## Key Features\n- **Personalized chatbots and characters**: Craft unique and engaging characters with distinct personalities, backstories, and interests to bring your stories, games, or applications to life.\n- **Explore user-generated characters**: Access a vast library of user-created chatbots and char...", - "score": { - "avgServiceLevel": 91, - "avgLatency": 4242, - "avgSuccessRate": 90, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "Review Generator (AI)": { - "tool_description": "Generate testimonial & review using AI. Quickly write candid testimonials and reviews for people and services in 30+ languages", - "score": { - "avgServiceLevel": 91, - "avgLatency": 12179, - "avgSuccessRate": 86, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "AI-writer": { - "tool_description": "Antherica A.I. Writer Is a set of powerful APIs to provide a comprehensive suite of tools for content creation, translation, text revision, newsletter writing, keyword and hashtag searching, and QR code generation. With the assistance of AI algorithms, users can streamline their content-related tasks and achieve professional-level results efficiently. ", - "score": { - "avgServiceLevel": 96, - "avgLatency": 4804, - "avgSuccessRate": 92, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Text Sentiment Analysis ": { - "tool_description": "Introducing the Sentiment Analysis API by Pizza API - a cutting-edge tool that provides instant sentiment analysis of any given text. With this API, you can easily determine whether a piece of text is positive, negative, or neutral in tone. The API uses advanced natural language processing techniques to analyse text and provide accurate results in real-time. The Sentiment Analysis API is incredibly easy to use, simply send a request to the API with the text you want to analyse, and the API w...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 176, - "avgSuccessRate": 100, - "popularityScore": 7.4, - "__typename": "Score" - } - }, - "EmoAI - AI powered Text Emotion Analyzer": { - "tool_description": "đŸ”„ Are you looking for a powerful API that can analyze the emotions of your text data? Look no further than EmoAI! Our AI-powered endpoint can analyze text in over 140 languages, providing fast and accurate emotion scores for six basic emotions plus a neutral class - anger đŸ€Ź, disgust đŸ€ą, fear 😹, joy 😀, neutral 😐, and sadness 😭. Whether you're analyzing social media posts, customer feedback, or any other form of text data, EmoAI can help you gain valuable insights into the emotions of your conte...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 897, - "avgSuccessRate": 0, - "popularityScore": 0, - "__typename": "Score" - } - }, - "Quizy API": { - "tool_description": "The Quizy API is a powerful tool that allows developers to create and customize quizzes programmatically. With this API, you can generate a wide variety of quizzes on different topics, ranging from educational quizzes for students to fun quizzes for entertainment purposes.\n\nThe API provides a simple and intuitive interface to generate quizzes based on parameters such as the number of questions, difficulty level, topic, and format. It leverages a vast repository of questions and answers, ensur...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 15212, - "avgSuccessRate": 100, - "popularityScore": 6.5, - "__typename": "Score" - } - }, - "Text to Speech PRO": { - "tool_description": "Convert text into natural-sounding speech using an API - REALTIME & MULTI LANGUAGE", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1268, - "avgSuccessRate": 94, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "Face Studio": { - "tool_description": "Face Generation: use AI to dynamically generate high-resolution, photo-realistic pictures of faces based on demographic input including gender, age, and ethnicity. Test the interactive version here: https://facestudio.app", - "score": { - "avgServiceLevel": 100, - "avgLatency": 422, - "avgSuccessRate": 98, - "popularityScore": 9, - "__typename": "Score" - } - }, - "ChatGPT Detector - AI Powered ChatGPT Answer Detector ": { - "tool_description": " đŸ•”ïžđŸ“ Are you concerned about distinguishing human-written text from machine-generated text? Look no further than ChatGPT Detector! Our advanced AI text detection tool accurately identifies the origin of text, whether it's written by a human or generated by OpenAI's ChatGPT model. With support for over 140 languages and 6 distinct methods of classification, our tool achieves a 93% accuracy rate. Protect your business from fraudulent text with ChatGPT Detector.", - "score": { - "avgServiceLevel": 96, - "avgLatency": 786, - "avgSuccessRate": 43, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "LexAI API": { - "tool_description": "Images analyser API for multi-label object detection and classification!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 7826, - "avgSuccessRate": 100, - "popularityScore": 5.9, - "__typename": "Score" - } - }, - "Carbon management": { - "tool_description": "GHG accounting", - "score": null - }, - "Face liveness check": { - "tool_description": "Check if the selfie your users take is indeed live, optimally clicked to save in your records, if there are multiple faces detected in the image, and what percentage of the image does the face actually cover. Face liveness detection helps you uncover frauds by ensuring that the image you have been provided isn’t a picture of a picture, a passport sized image, or an image of another individual on a cell phone / laptop screen. Pair it to the Face Compare API to have complete confidence that t...", - "score": { - "avgServiceLevel": 98, - "avgLatency": 865, - "avgSuccessRate": 98, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Microsoft Edge Text to Speech": { - "tool_description": "an easy-to-use API of Microsoft Edge TTS.", - "score": { - "avgServiceLevel": 94, - "avgLatency": 2212, - "avgSuccessRate": 94, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Explor-Arc's Colors API": { - "tool_description": "The Best API for Effortless Color Inspiration, Unleash Limitless Color Possibilities with The Best API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 482, - "avgSuccessRate": 100, - "popularityScore": 7.8, - "__typename": "Score" - } - }, - "Omniinfer": { - "tool_description": "Stable Diffusion API with 1000+ Models\nFast, stable, and cheap API of popular SD (stablediffusion) models for developers to easily integrate and not maintain GPUs. You can use it to build Text to Image, Image Generation applications.\nFor more information, please refer to https://omniinfer.io?ref=rapidapi\n\n", - "score": { - "avgServiceLevel": 100, - "avgLatency": 340, - "avgSuccessRate": 100, - "popularityScore": 8, - "__typename": "Score" - } - }, - "Screening and Matching Resumes": { - "tool_description": "For Recruters that want to go faster in their resumes screening process, and for recrutees that are interested in checking if their profile match a certain job offer", - "score": { - "avgServiceLevel": 95, - "avgLatency": 1946, - "avgSuccessRate": 88, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "Large text to speech": { - "tool_description": "Large text to speech (TTS) API enables you to perform unlimited* text to speech synthesis (English) in single request. With human like voice quality! Read more in About section.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 472, - "avgSuccessRate": 99, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "ARImageSynthesizer": { - "tool_description": "Text to image generator.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 885, - "avgSuccessRate": 98, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "Web Scraping API": { - "tool_description": "The Web Scraping API enables data extraction from websites while simulating a real browser, allowing bypassing of restrictions, solving captchas, and scraping dynamic websites. Ideal for advanced web scraping tasks, this API offers headless browser capability for ease of use.", - "score": { - "avgServiceLevel": 79, - "avgLatency": 759, - "avgSuccessRate": 79, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "Face Animer": { - "tool_description": "Introducing Face Animer API - the cutting-edge facial animation tool that brings your digital avatars and characters to life with 21 dynamic and expressive animation effects. With just a few lines of code, easily integrate our API to add a new level of realism and emotion to your projects.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 756, - "avgSuccessRate": 79, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "LemurBot": { - "tool_description": "Meet Lemurbot - Your Personal AI Chatbot Companion! With advanced features like creating, training and chatting, Lemurbot makes it easy and fun for users to interact and learn from an intelligent conversationalist. Plus, with ChatGPT integration and the ability to create multiple bots, the possibilities for learning and entertainment are endless!", - "score": { - "avgServiceLevel": 87, - "avgLatency": 3644, - "avgSuccessRate": 80, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Article Extractor and Summarizer": { - "tool_description": "This is an API which extracts news/article body from a URL and uses GPT to summarize (and optionally translate) the article content. Useful for text mining purposes. Leverages powerful and flexible web scraping engine (ScrapeNinja.net) with high-quality rotating proxies under the hood. In depth review and API implementation details: https://pixeljets.com/blog/gpt-summary-is-broken/ . My video where ChatGPT summary capabilities are explored: https://youtu.be/hRQqJtgYz_Q", - "score": { - "avgServiceLevel": 70, - "avgLatency": 14394, - "avgSuccessRate": 61, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "Stable Diffusion v2": { - "tool_description": "Generate high-quality images with the latest Stable Diffusion v2.1 model.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2109, - "avgSuccessRate": 100, - "popularityScore": 9, - "__typename": "Score" - } - }, - "The Apophis": { - "tool_description": "AI-powered API for crypto asset price forecasting offers a range of features and benefits that can revolutionize how traders and investors navigate the dynamic and often unpredictable crypto market.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2002, - "avgSuccessRate": 91, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "Midjourney best experience": { - "tool_description": "Connect your project to midjourney | mj contain generate、upsample、variation...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 291, - "avgSuccessRate": 100, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "GST advance": { - "tool_description": "get data from GST and also get owner details with Turnover details", - "score": { - "avgServiceLevel": 100, - "avgLatency": 828, - "avgSuccessRate": 100, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "Amazon Live Data": { - "tool_description": "Get Amazon Live Data - Fast and reliable - The best for dropshipping", - "score": { - "avgServiceLevel": 100, - "avgLatency": 10915, - "avgSuccessRate": 96, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "Used GPU Pricing": { - "tool_description": "The API provides a simple endpoint that allows you to retrieve used prices of gpus on ebay. These prices are refreshed weekly automatically so you can have confidence these are up to date.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 7, - "avgSuccessRate": 100, - "popularityScore": 6.6, - "__typename": "Score" - } - }, - "mrautoparts": { - "tool_description": "find car parts and low pricing", - "score": null - }, - "789club New": { - "tool_description": "789CLUB – NhĂ  cĂĄi game bĂ i đổi thưởng mới nháș„t. Đa dáșĄng trĂČ chÆĄi: game bĂ i, báșŻn cĂĄ, nổ hĆ©. Thiáșżt káșż đáșčp, hệ thống báșŁo máș­t tốt, náșĄp rĂșt tiền nhanh. Hỗ trợ nhanh gọn 24/7\nWebsite: https://789club.news/\nĐịa chỉ: 32 Ng. 1 TĂŽn Tháș„t TĂčng, Kim LiĂȘn, Đống Đa, HĂ  Nội, Việt Nam\nMaps: https://g.page/r/CWHULOinnN9kEBA\nSĐT: 0878967277\nEmail: buithanhphong81070@gmail.com\n#789club #789new #789clubnew\nhttps://hypothes.is/users/789clubnews\nhttps://app.bountysource.com/people/108929-789clubnews\nhttps://www.wed...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2075, - "avgSuccessRate": 100, - "popularityScore": 7.1, - "__typename": "Score" - } - }, - "Ebay Search Result": { - "tool_description": "API Returns necessary information from Ebay search page results, such as the price, title, shipping cost and direct url to the product ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 17927, - "avgSuccessRate": 100, - "popularityScore": 8.2, - "__typename": "Score" - } - }, - "JSMon": { - "tool_description": "JSMon is an interactive tracking & conversion tool.\r\nGet started to understand who is on your site at a particular moment: occasional visitor or potential customer. And interact with him.\r\nOur system will analyze visitor's behavioral factors and offer optimal variants for interaction with him.\r\n1) We help to understand who are your visitors on line.\r\n2) We make it possible to set up behavioral models you like.\r\n3) We offer the visitor what he is interested in.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 703, - "avgSuccessRate": 100, - "popularityScore": 5.9, - "__typename": "Score" - } - }, - "India - Pan card OCR": { - "tool_description": "This API allows you to extract text from an image of a PAN card. ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3994, - "avgSuccessRate": 90, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "test pg prod": { - "tool_description": "123", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1108, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Argaam Data APIs Free": { - "tool_description": "Free APIs By Argaam", - "score": { - "avgServiceLevel": 100, - "avgLatency": 353, - "avgSuccessRate": 99, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "Amazon_API_v2": { - "tool_description": "Amazon_API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1394, - "avgSuccessRate": 100, - "popularityScore": 7.6, - "__typename": "Score" - } - }, - "Vouchery.io": { - "tool_description": "Welcome to Vouchery.io API v2.0! Vouchery provides a REST-oriented API which gives you access to easily create main campaign that includes multiple promo campaigns, add rewards, validate and redeem vouchers. You will find a detailed description of API design, authentication and authorisation, available endpoints, and responses on successful requests and errors at https://docs.vouchery.io/reference", - "score": null - }, - "GST Details API Documentation": { - "tool_description": "get data from GST and also get owner details", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2777, - "avgSuccessRate": 100, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "IP2Proxy": { - "tool_description": "The IP2Proxy Proxy Detection Web Service allows instant detection of anonymous proxy by IP address. The IP2Proxy Proxy Detection Web Service enables you to check proxy servers for anonymity.\r\n\r\nSign up for free license key at http://www.fraudlabs.com/freelicense.aspx?PackageID=3 which allows up to 90 queries a month.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 305, - "avgSuccessRate": 100, - "popularityScore": 6.7, - "__typename": "Score" - } - }, - "sandbox mktplace eu - 04 orders": { - "tool_description": "sandbox.mktplace.eu - 04 orders", - "score": { - "avgServiceLevel": 100, - "avgLatency": 700, - "avgSuccessRate": 100, - "popularityScore": 7.4, - "__typename": "Score" - } - }, - "TokopediaApi": { - "tool_description": "Search & Product Details Api", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1106, - "avgSuccessRate": 100, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "BlockTrail - Bitcoin Developers Platform": { - "tool_description": "BlockTrail is a bitcoin API and developers platform, enabling data and payments for developers, enterprises and service providers", - "score": { - "avgServiceLevel": 100, - "avgLatency": 859, - "avgSuccessRate": 100, - "popularityScore": 6.1, - "__typename": "Score" - } - }, - "sms": { - "tool_description": "var unirest = require(\"unirest\");\n\nvar req = unirest(\"GET\", \"https://branded-sms-pakistan.p.rapidapi.com/send\");\n\nreq.query({\n\t\"message\": \"bonne f%C3%AAte\",\n\t\"email\": \"consty3112%40outlook.com\",\n\t\"to\": \"\"\n});\n\nreq.headers({\n\t\"x-rapidapi-host\": \"branded-sms-pakistan.p.rapidapi.com\",\n\t\"x-rapidapi-key\": \"f7f846a52cmshea137933a83a963p124559jsnd9da280b818b\"\n});\n\n\nreq.end(function (res) {\n\tif (res.error) throw new Error(res.error);\n\n\tconsole.log(res.body);\n});", - "score": { - "avgServiceLevel": 0, - "avgLatency": 0, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Face Compare": { - "tool_description": "This API compares and finds similarity between 2 face images. This is used to authenticate a person and detect an impersonation scenario.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 131, - "avgSuccessRate": 97, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "invoice": { - "tool_description": "Invoice QR", - "score": null - }, - "My Store": { - "tool_description": "My Store API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 417, - "avgSuccessRate": 87, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Test API": { - "tool_description": "Test API", - "score": { - "avgServiceLevel": 0, - "avgLatency": 0, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "QueuingAppApi": { - "tool_description": "Developed for prototype queueing app", - "score": { - "avgServiceLevel": 100, - "avgLatency": 370, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "ClickbankUniversity": { - "tool_description": "clickbank", - "score": null - }, - "Inventory and eCommerce hosted and self-hosted solution": { - "tool_description": "Use this API to establish an omni channel eCommerce website with a full front end JS GUI to interact with it. Customize the way your inventory data is displayed on your website. Automate invoice processing, merchant API integration and item shipment label creator. Join now on https://orkiv.com/inventory/inventory.html", - "score": { - "avgServiceLevel": 100, - "avgLatency": 79, - "avgSuccessRate": 100, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "Name compare": { - "tool_description": "IDfy’s Name Compare API ensures that the documents provided to you belong to the individuals you expect them to. Automate workflows by eliminating the need to manually eyeball and compare names across multiple documents and forms. IDfy’s face compare API takes two names as inputs and returns a match score to help you take decisions faster. Pair it with IDfy’s OCR APIs to completely automate your workflows and get your onboarding process right first time!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 128, - "avgSuccessRate": 97, - "popularityScore": 7.7, - "__typename": "Score" - } - }, - "resumeAPI": { - "tool_description": "Bunch of mein seld descriptions?", - "score": { - "avgServiceLevel": 100, - "avgLatency": 234, - "avgSuccessRate": 100, - "popularityScore": 7.1, - "__typename": "Score" - } - }, - "Check Disposable Email": { - "tool_description": "Easily check if a certain e-mail address is valid. Is it a valid domain? Is the e-mail a temporary/disposable e-mail? That’s a common indicator of spamming/trolling, so now there’s an API for you so you can easily block it!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1275, - "avgSuccessRate": 100, - "popularityScore": 7.7, - "__typename": "Score" - } - }, - "Aliexpress True API": { - "tool_description": "Fetching data from AliExpress instantly using an powerful oracle server. If there will be high demand, I will set up multiple servers in different regions with a load balancer to ensure fast and reliable service. Rest assured, the service will be fast and reliable with no down times.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3141, - "avgSuccessRate": 95, - "popularityScore": 7.3, - "__typename": "Score" - } - }, - "Apfelpreise": { - "tool_description": "market data for used apple products", - "score": { - "avgServiceLevel": 0, - "avgLatency": 10, - "avgSuccessRate": 0, - "popularityScore": 0, - "__typename": "Score" - } - }, - "Movives": { - "tool_description": "movieees", - "score": null - }, - "Free Coupon Codes": { - "tool_description": "Get Free Coupons Code API for your website. Indian website offers. You can offer Cashbacks too, just by adding another parameter. Simply register at cashnjoy.com to generate your Site ID and start earning commissions on E-commerce sales. More than 100 biggest webstores' offers.", - "score": null - }, - "HaloBiru.store": { - "tool_description": "Online Shop HaloBiru.store", - "score": null - }, - "AliExpress unofficial": { - "tool_description": "DEPRECATED. Will deleted after 2023-03-01", - "score": { - "avgServiceLevel": 4, - "avgLatency": 3073, - "avgSuccessRate": 0, - "popularityScore": 0.4, - "__typename": "Score" - } - }, - "sandbox ecombr com - 01 products": { - "tool_description": "sandbox.ecombr.com - 01 products", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1248, - "avgSuccessRate": 100, - "popularityScore": 7.6, - "__typename": "Score" - } - }, - "H30 E-commerce Data scraper": { - "tool_description": "H30 E-commerce Data scraper is the simplest way to get access to product's details from Amazon in JSON format", - "score": null - }, - "Flance AliExpress": { - "tool_description": "API to request the Aliexpress data for dropshipping activity.", - "score": { - "avgServiceLevel": 9, - "avgLatency": 2650, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "Shoes collections": { - "tool_description": "This api provides you 30 random shoes ..", - "score": { - "avgServiceLevel": 92, - "avgLatency": 23409, - "avgSuccessRate": 92, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "Ebay": { - "tool_description": "Get Products from Ebay (Unofficial)", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2378, - "avgSuccessRate": 100, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "E-mail Check Invalid or Disposable Domain_v2": { - "tool_description": "Easily check if a certain e-mail address is valid. Is it a valid domain? Is the e-mail a temporary/disposable e-mail? That's a common indicator of spamming/trolling, so now there's an API for you so you can easily block it!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 273, - "avgSuccessRate": 100, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "Tokopedia Super API": { - "tool_description": "Unleash the Power of Tokopedia: Effortlessly Retrieve Shop and Product Information with Our API!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 8106, - "avgSuccessRate": 100, - "popularityScore": 5.8, - "__typename": "Score" - } - }, - "Direct Wines": { - "tool_description": "The API provides you a way to consume different API's around product, customer and account.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 114, - "avgSuccessRate": 7, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "Etsy": { - "tool_description": "Buy and sell handmade or vintage items, art and supplies on Etsy, the world's most vibrant handmade marketplace.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 257, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "Cartify": { - "tool_description": "Welcome to our e-commerce API! Our API is designed to make it easy for you to build and manage your online store and also build projects you can show on your porfolio. With our API, you can create products, manage orders, track shipments, and more. Our API is built on modern technologies and is easy to integrate with your existing systems. Our API provides a secure and reliable platform for your e-commerce needs. You can trust us to keep your data safe and secure. We also provide a range of ...", - "score": { - "avgServiceLevel": 98, - "avgLatency": 1086, - "avgSuccessRate": 45, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Patreon": { - "tool_description": "Search Creators and get their details and posts from Patreon (Unofficial)", - "score": { - "avgServiceLevel": 100, - "avgLatency": 763, - "avgSuccessRate": 100, - "popularityScore": 8, - "__typename": "Score" - } - }, - "sandbox ecombr com - 04 orders": { - "tool_description": "sandbox.ecombr.com - 04 orders", - "score": { - "avgServiceLevel": 100, - "avgLatency": 943, - "avgSuccessRate": 100, - "popularityScore": 7.8, - "__typename": "Score" - } - }, - "27coupons": { - "tool_description": "27coupons is one of the largest aggregators of coupons and deals data of India. We have been successfully running our website www.27coupons.com since July 2011. Our API framework offers access to data allowing developers to build upon and extend their applications in new and creative ways. Our APIs are constantly evolving and developing as per the industry standards.\r\nOur API framework is built upon REST architecture drawing inspiration from API frameworks of leading websites such as Twitter, Facebook and Salesforce. We support GET and POST methods of http for making API calls to our server. Some methods require you to use POST methods only. We are coming up with new version of API in May 2015.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 482, - "avgSuccessRate": 100, - "popularityScore": 9, - "__typename": "Score" - } - }, - "Azaprime": { - "tool_description": "Date calculator", - "score": { - "avgServiceLevel": 100, - "avgLatency": 360, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "dd": { - "tool_description": "dd", - "score": { - "avgServiceLevel": 0, - "avgLatency": 0, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "API1": { - "tool_description": "API1", - "score": null - }, - "BrowserObject": { - "tool_description": "The BrowserObject Browser Detection Web Service allows instant detection of online visitor's Web Browser information.\r\n\r\nSign up for free license key at http://www.fraudlabs.com/freelicense.aspx?PackageID=8 which allows up to 90 queries a month.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 360, - "avgSuccessRate": 100, - "popularityScore": 5.7, - "__typename": "Score" - } - }, - "togo420": { - "tool_description": "Our Cannabis API is built both for efficiency and simplicity. At togo420.com/apidocs, we have taken a complex ordering process and reduced the number of API endpoints needed to submit an order down to just 3 API endpoints(ie: Create Order, Add Product, and Submit Order). Thus, decreasing the time software developers need to navigate the complex tax structures, cannabis laws, and industry trends inherent to the cannabis business space.\n\nThe end result is a Fully-Automated Direct-to-Consumer platform for ordering cannabis products. Delivering products into the hands of the consumer in a timely manner is our number one priority, usually aiming for delivery within 30 minutes. In addition, our entire supply chain consists of vendors licensed to fulfill deliveries on behalf of our API clients to end-users, the consumers.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 536, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "sandbox mktplace eu 01 products": { - "tool_description": "sandbox.mktplace.eu - 01 products", - "score": { - "avgServiceLevel": 100, - "avgLatency": 633, - "avgSuccessRate": 100, - "popularityScore": 7.7, - "__typename": "Score" - } - }, - "FSSAI License Verification": { - "tool_description": "Used to check if the vendor has a valid fssai certificate to produce and sell food and beverages.", - "score": { - "avgServiceLevel": 91, - "avgLatency": 166, - "avgSuccessRate": 88, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "ddd": { - "tool_description": "ddd", - "score": null - }, - "Social media caption": { - "tool_description": "Generate catchy captions for social media", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1017, - "avgSuccessRate": 100, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "ThisisaPublicAPI_v2": { - "tool_description": "ThisisaPublicAPI", - "score": null - }, - "My API1": { - "tool_description": "Descccc", - "score": null - }, - "versioning-free": { - "tool_description": "versioning-free", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1144, - "avgSuccessRate": 100, - "popularityScore": 6.6, - "__typename": "Score" - } - }, - "versions-paid": { - "tool_description": "versions-paid", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1144, - "avgSuccessRate": 100, - "popularityScore": 7.2, - "__typename": "Score" - } - }, - "a": { - "tool_description": "a", - "score": { - "avgServiceLevel": 100, - "avgLatency": 102, - "avgSuccessRate": 100, - "popularityScore": 6.7, - "__typename": "Score" - } - }, - "Putreq": { - "tool_description": "put req", - "score": { - "avgServiceLevel": 100, - "avgLatency": 911, - "avgSuccessRate": 100, - "popularityScore": 7.1, - "__typename": "Score" - } - }, - "16e0e5f7a076c2f62a2e41f6b5b99d37e5b9b25e": { - "tool_description": "all links", - "score": { - "avgServiceLevel": 100, - "avgLatency": 825, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "20211230 testing upload swagger": { - "tool_description": "20211230 testing upload swagger", - "score": { - "avgServiceLevel": 100, - "avgLatency": 590, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "Abstract IP geolocation": { - "tool_description": "Get the location of any IP along with city, region, country, lat/long data, and more here https://www.abstractapi.com/ip-geolocation-api. Documentation available here: https://www.abstractapi.com/ip-geolocation-api#docs", - "score": { - "avgServiceLevel": 100, - "avgLatency": 598, - "avgSuccessRate": 0, - "popularityScore": 0, - "__typename": "Score" - } - }, - "recash": { - "tool_description": "This is an api created for collect data from amazon promo codes available it update fast so no worry about anything", - "score": { - "avgServiceLevel": 100, - "avgLatency": 918, - "avgSuccessRate": 100, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "asdfadsf": { - "tool_description": "asdfasdf", - "score": { - "avgServiceLevel": 82, - "avgLatency": 412, - "avgSuccessRate": 55, - "popularityScore": 6.9, - "__typename": "Score" - } - }, - "underscore test": { - "tool_description": "underscore test", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1075, - "avgSuccessRate": 100, - "popularityScore": 7.5, - "__typename": "Score" - } - }, - "asd": { - "tool_description": "user url endpoint", - "score": { - "avgServiceLevel": 0, - "avgLatency": 0, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "pe-demo": { - "tool_description": "pe-demo", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1113, - "avgSuccessRate": 69, - "popularityScore": 6.9, - "__typename": "Score" - } - }, - "PetstoreRateLimit": { - "tool_description": "PetstoreRateLimit", - "score": { - "avgServiceLevel": 100, - "avgLatency": 593, - "avgSuccessRate": 26, - "popularityScore": 1.7, - "__typename": "Score" - } - }, - "Frederick": { - "tool_description": "ads", - "score": null - }, - "lets": { - "tool_description": "lets", - "score": null - }, - "ssssss": { - "tool_description": "ssssssssssssssssss", - "score": { - "avgServiceLevel": 100, - "avgLatency": 249, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "route-precedence-test-1": { - "tool_description": "...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1185, - "avgSuccessRate": 100, - "popularityScore": 6.9, - "__typename": "Score" - } - }, - "Facebook Ad": { - "tool_description": "Generate Facebook Ad using AI", - "score": { - "avgServiceLevel": 86, - "avgLatency": 9254, - "avgSuccessRate": 86, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "SEO Automations": { - "tool_description": "Optimize your website effortlessly with SEOOptimizeAPI - the powerful tool that provides valuable insights and automates repetitive tasks. With SEOOptimizeAPI, you can take the guesswork out of website optimization. The API utilizes advanced algorithms and technologies to provide in-depth insights into your website's performance and help you identify areas for improvement. And with its easy-to-use API endpoints, you can automate repetitive tasks and save time and effort.", - "score": { - "avgServiceLevel": 97, - "avgLatency": 4669, - "avgSuccessRate": 88, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "PrivatePublicAPI": { - "tool_description": "This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 864, - "avgSuccessRate": 35, - "popularityScore": 6.8, - "__typename": "Score" - } - }, - "httpbin": { - "tool_description": "httpbin", - "score": { - "avgServiceLevel": 100, - "avgLatency": 41437, - "avgSuccessRate": 100, - "popularityScore": 5.3, - "__typename": "Score" - } - }, - "YouTuber Success Estimator": { - "tool_description": "Estimates how successful a hypothetical video from a given YouTube channel will be in the first 30 days of its lifecycle. Useful for influencer marketers to plan for successful campaigns and publishers to better rank their content", - "score": { - "avgServiceLevel": 86, - "avgLatency": 2598, - "avgSuccessRate": 86, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "Autosub": { - "tool_description": "Auto sub", - "score": { - "avgServiceLevel": 72, - "avgLatency": 11503, - "avgSuccessRate": 72, - "popularityScore": 7.8, - "__typename": "Score" - } - }, - "petstore blitz": { - "tool_description": "asdgasdg", - "score": { - "avgServiceLevel": 100, - "avgLatency": 545, - "avgSuccessRate": 32, - "popularityScore": 7, - "__typename": "Score" - } - }, - "Test_v5": { - "tool_description": "test", - "score": { - "avgServiceLevel": 100, - "avgLatency": 351, - "avgSuccessRate": 0, - "popularityScore": 0, - "__typename": "Score" - } - }, - "hello_v2": { - "tool_description": "qweqw", - "score": null - }, - "URL Link Shortener": { - "tool_description": "API for custom short URLs", - "score": { - "avgServiceLevel": 100, - "avgLatency": 465, - "avgSuccessRate": 0, - "popularityScore": 0.4, - "__typename": "Score" - } - }, - "PublicAPITestingInbox": { - "tool_description": "PublicAPITestingInbox", - "score": { - "avgServiceLevel": 100, - "avgLatency": 585, - "avgSuccessRate": 24, - "popularityScore": 1.6, - "__typename": "Score" - } - }, - "ThisshouldbeFREE": { - "tool_description": "ThisshouldbeFREE", - "score": { - "avgServiceLevel": 100, - "avgLatency": 596, - "avgSuccessRate": 45, - "popularityScore": 6.3, - "__typename": "Score" - } - }, - "March4": { - "tool_description": "ad", - "score": { - "avgServiceLevel": 100, - "avgLatency": 516, - "avgSuccessRate": 100, - "popularityScore": 6.9, - "__typename": "Score" - } - }, - "test_v6": { - "tool_description": "test", - "score": { - "avgServiceLevel": 100, - "avgLatency": 242, - "avgSuccessRate": 0, - "popularityScore": 0, - "__typename": "Score" - } - }, - "AdCopy AI - Google Ads AI Text Generation": { - "tool_description": "AdCopy AI: The perfect solution for SEM and PPC marketers. With its advanced cloud infrastructure and OpenAI's ChatGPT engine, AdCopy AI generates top-notch ad copy tailored to Google's (TM) specifications, ensuring high relevance scores and reducing CPC and CPM costs. Say goodbye to time-consuming ad writing and hello to AdCopy AI - the AI technology that revolutionizes the way you write Ad Copy for your Google Ads (TM), freeing up your time and effort so you can focus on other important tasks.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 384, - "avgSuccessRate": 98, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "FreePlanwithHardLimit": { - "tool_description": "FreePlanwithHardLimit", - "score": { - "avgServiceLevel": 100, - "avgLatency": 764, - "avgSuccessRate": 45, - "popularityScore": 6.4, - "__typename": "Score" - } - }, - "Reqres - dont change!": { - "tool_description": "", - "score": { - "avgServiceLevel": 100, - "avgLatency": 170, - "avgSuccessRate": 100, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "FOOTBALL_API_KEY": { - "tool_description": "Football API key", - "score": { - "avgServiceLevel": 100, - "avgLatency": 342, - "avgSuccessRate": 0, - "popularityScore": 0, - "__typename": "Score" - } - }, - "coupons": { - "tool_description": "coupons", - "score": { - "avgServiceLevel": 100, - "avgLatency": 424, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "People Lookup": { - "tool_description": "People Lookup API helps you search for and find phone, email, linkedin and more information for people in the USA", - "score": null - }, - "JobsApi": { - "tool_description": "List jobs", - "score": null - }, - "Revdl": { - "tool_description": "Revdl", - "score": { - "avgServiceLevel": 43, - "avgLatency": 58583, - "avgSuccessRate": 29, - "popularityScore": 2.2, - "__typename": "Score" - } - }, - "Free IP Geolocation": { - "tool_description": "A Free IP Geolocation service", - "score": { - "avgServiceLevel": 100, - "avgLatency": 50, - "avgSuccessRate": 18, - "popularityScore": 2.3, - "__typename": "Score" - } - }, - "testing": { - "tool_description": "testing", - "score": { - "avgServiceLevel": 100, - "avgLatency": 467, - "avgSuccessRate": 80, - "popularityScore": 7, - "__typename": "Score" - } - }, - "MultipleTeamsCallingTest": { - "tool_description": "MultipleTeamsCallingTest", - "score": { - "avgServiceLevel": 100, - "avgLatency": 590, - "avgSuccessRate": 35, - "popularityScore": 6.8, - "__typename": "Score" - } - }, - "DiceForge": { - "tool_description": "DiceForge is a powerful and versatile dice rolling API designed for tabletop RPG enthusiasts and game developers alike. With an intuitive interface and support for a wide range of dice configurations, DiceForge makes it easy to generate random outcomes for any scenario. Whether you're rolling character stats, simulating combat encounters, or resolving skill checks, DiceForge delivers reliable and customizable results to enhance your gaming experience. Level up your next adventure with DiceFor...", - "score": { - "avgServiceLevel": 91, - "avgLatency": 16689, - "avgSuccessRate": 91, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "Minecraft Servers List": { - "tool_description": "More than 1700 Minecraft Servers List with live status", - "score": { - "avgServiceLevel": 100, - "avgLatency": 941, - "avgSuccessRate": 100, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "Pokemon Unite Pokemons": { - "tool_description": "Pokemon Unite", - "score": { - "avgServiceLevel": 100, - "avgLatency": 349, - "avgSuccessRate": 99, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "Dice Roll Simulator": { - "tool_description": "Roll as many dice of any size as many times you want with the ultimate dice rolling API.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 140, - "avgSuccessRate": 100, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "Dota2 Heroes": { - "tool_description": "This api can give you all dota2 heroes list ands bios images videos role talents and abilities with 20 language.", - "score": { - "avgServiceLevel": 82, - "avgLatency": 121485, - "avgSuccessRate": 82, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "game": { - "tool_description": "download this g develop game ", - "score": null - }, - "World of Tanks Stats": { - "tool_description": "Your can get information about a player like wn8.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3723, - "avgSuccessRate": 100, - "popularityScore": 7.3, - "__typename": "Score" - } - }, - "Raider.IO": { - "tool_description": "Raider.IO API to gather Character information", - "score": { - "avgServiceLevel": 100, - "avgLatency": 458, - "avgSuccessRate": 100, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Pictionary Charades Word Generator": { - "tool_description": "Generate words for Charades and Pictionary Games!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 322, - "avgSuccessRate": 100, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "Videogames NEWS": { - "tool_description": "Curated video games news from top sources", - "score": { - "avgServiceLevel": 100, - "avgLatency": 471, - "avgSuccessRate": 100, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "ContextoGuess": { - "tool_description": "Allows for contexto integration into other services, feature to get second word", - "score": { - "avgServiceLevel": 0, - "avgLatency": 183, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "Rocket League": { - "tool_description": "Ranks, stats, news & more, provided by the fastest and most powerful API for Rocket League.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 73, - "avgSuccessRate": 100, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Warzone 2": { - "tool_description": "Stats", - "score": null - }, - "StonxzyAPI": { - "tool_description": "Stonxzys Custom API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 294, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "Lost Ark Simple": { - "tool_description": "Lost Ark API Documentation", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1038, - "avgSuccessRate": 100, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "Free Epic Games": { - "tool_description": "Get a list of free Epic Games for the week", - "score": { - "avgServiceLevel": 100, - "avgLatency": 394, - "avgSuccessRate": 100, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "Wordle Answers Solutions": { - "tool_description": "Wordle Answers is an api where you can get all the answers of the popular word game Wordle.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 522, - "avgSuccessRate": 100, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "CROSSWORD Solver": { - "tool_description": "Find all missing letters! 6.7 million words in English, Spanish and German. High performance algorithms. Brute-force assisted.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 205, - "avgSuccessRate": 100, - "popularityScore": 7.4, - "__typename": "Score" - } - }, - "taboo-api": { - "tool_description": "Provides a number of different categories to choose from. You can get a random word and its taboo words or you can get taboo words for the word or phrase you provide.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2487, - "avgSuccessRate": 89, - "popularityScore": 7.6, - "__typename": "Score" - } - }, - "League Of Legends Champion Informaion": { - "tool_description": "API that will return a Champion object containing a list of Abilities including the champions passive ability. ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 10364, - "avgSuccessRate": 100, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "Card Draw Simulator": { - "tool_description": "Draw cards from a regular 52 playing cards deck with a variety of options.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 152, - "avgSuccessRate": 100, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "Twitch Channel Clips": { - "tool_description": "An API to get info about the latest 50 clips from a channel, including direct download links", - "score": { - "avgServiceLevel": 99, - "avgLatency": 1451, - "avgSuccessRate": 99, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Weeby": { - "tool_description": "A REST API that features Image Generation, Text, Effects and more!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 784, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "Steam Market and Store": { - "tool_description": "Welcome to the Steam Market API, your gateway to a treasure trove of information about the vibrant world of gaming on Steam! 😄🎼 Our API provides a seamless experience for developers and gamers alike, offering a range of powerful endpoints to retrieve all the juicy details about the Steam market and store. Need up-to-date pricing information for a specific game or item? Look no further! 📈💰 Our endpoints deliver real-time market data, including current prices, historical trends, and volume sta...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1702, - "avgSuccessRate": 100, - "popularityScore": 7.4, - "__typename": "Score" - } - }, - "BingoAPI": { - "tool_description": "Offload your server resources with Bingo API! It is a straightforward API that generates Bingo cards in US and EU game standards (75 or 90 numbers). Feel free to play with it with the free Basic Plan. If you have suggestions or requests just drop me a line.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 646, - "avgSuccessRate": 100, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "Call of Duty: Warzone Stats": { - "tool_description": "Get Warzone gaming data", - "score": { - "avgServiceLevel": 100, - "avgLatency": 323, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "Playstation Store Deals API": { - "tool_description": "Get Playstation Store Deals data that are on Deals which you can find here: https://store.playstation.com/en-us/category/35027334-375e-423b-b500-0d4d85eff784/1?FULL_GAME=storeDisplayClassification\n\nContact me at: vuesdata@gmail.com or visit https://www.vuesdata.com for building custom spiders or custom requests.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 843, - "avgSuccessRate": 100, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "Aposta Ganha Aviator API": { - "tool_description": "This endpoint allows you to retrieve the latest results of the Aviator game on the Aposta Ganha ( apostaganha.bet ) platform. \n\nYou can access the array containing the most recent results of the Aviator game. \n\nEach element of the array represents the numerical value of the result obtained in the game, with the first element being the most recent and the last being the oldest. \n\nThis endpoint can be integrated into other applications to provide up-to-date information on the results of the...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 69, - "avgSuccessRate": 100, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "a56219609685dd9033d060cdbb60093c": { - "tool_description": "online", - "score": null - }, - "Unigamer API": { - "tool_description": "We provide a REST API endpoint which can be used for free for up to 1000 requests per month", - "score": { - "avgServiceLevel": 96, - "avgLatency": 833, - "avgSuccessRate": 96, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "Vai de Bob Aviator API": { - "tool_description": "This endpoint allows you to retrieve the latest results of the Aviator game on the Vai de Bob ( vaidebob.com ) platform. \n\nYou can access the array containing the most recent results of the Aviator game. \n\nEach element of the array represents the numerical value of the result obtained in the game, with the first element being the most recent and the last being the oldest. \n\nThis endpoint can be integrated into other applications to provide up-to-date information on the results of the Avia...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 208, - "avgSuccessRate": 100, - "popularityScore": 9, - "__typename": "Score" - } - }, - "Epic Store Games": { - "tool_description": "Search Games, Editions, Demos on Epic Store", - "score": { - "avgServiceLevel": 97, - "avgLatency": 1048, - "avgSuccessRate": 97, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "League Of Legends Esports": { - "tool_description": "This api gives you all of the lol esports leagues , vods, tournaments, match , game , event details with videos , scheadule , standings, teams and their players. And live game score.", - "score": { - "avgServiceLevel": 85, - "avgLatency": 25391, - "avgSuccessRate": 85, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "Estrelabet Aviator API": { - "tool_description": "This endpoint allows you to retrieve the latest results of the Aviator game on the Estrelabet ( \nestrelabet.com )platform. \n\nYou can access the array containing the most recent results of the Aviator game. \n\nEach element of the array represents the numerical value of the result obtained in the game, with the first element being the most recent and the last being the oldest. \n\nThis endpoint can be integrated into other applications to provide up-to-date information on the results of the Avi...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 171, - "avgSuccessRate": 100, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "Epic Free Games": { - "tool_description": "Epic Games Store - Free Games with details.\n\nGame Name,\nGame Description,\nGame Image Wide - Tall,\nGame Publisher,\nGame Discount Price,\nGame Original Price,\nGame Price Currency Code,\nGame Epic URL\n\n", - "score": { - "avgServiceLevel": 100, - "avgLatency": 576, - "avgSuccessRate": 100, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Plugin.proto": { - "tool_description": "Protocol", - "score": { - "avgServiceLevel": 100, - "avgLatency": 211, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "COD API 2.0": { - "tool_description": "Provides an easy access to the COD api leaderboard endpoints.", - "score": { - "avgServiceLevel": 50, - "avgLatency": 1511, - "avgSuccessRate": 50, - "popularityScore": 9, - "__typename": "Score" - } - }, - "ID Game Checker": { - "tool_description": "Validate or GET username with ID. Available for Free Fire true ID, Mobile Legends true ID, PUBG Mobile true ID, Higgs Domino true ID, AoV true ID etc.", - "score": { - "avgServiceLevel": 99, - "avgLatency": 4891, - "avgSuccessRate": 99, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "Simbrief - Get latest OFP": { - "tool_description": "Get the latest OFP based on username. In xml or JSON", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1203, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Bet7k Aviator API": { - "tool_description": "This endpoint allows you to retrieve the latest results of the Aviator game on the BET7K ( bet7k.com ) platform. \nYou can access the array containing the most recent results of the Aviator game. \n\nEach element of the array represents the numerical value of the result obtained in the game, with the first element being the most recent and the last being the oldest. \n\nThis endpoint can be integrated into other applications to provide up-to-date information on the results of the Aviator game on B...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 189, - "avgSuccessRate": 100, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "GoTW": { - "tool_description": "GoTW commander skills", - "score": { - "avgServiceLevel": 100, - "avgLatency": 27184, - "avgSuccessRate": 100, - "popularityScore": 6.8, - "__typename": "Score" - } - }, - "Fodase": { - "tool_description": "Fodase fodase", - "score": { - "avgServiceLevel": 100, - "avgLatency": 390, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "RPG Items": { - "tool_description": "An api of generated RPG items", - "score": { - "avgServiceLevel": 99, - "avgLatency": 19961, - "avgSuccessRate": 98, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "Play to Earn Blockchain Games": { - "tool_description": "Get hot play to earn blockchain games! Filter by popular blockchains", - "score": { - "avgServiceLevel": 100, - "avgLatency": 298, - "avgSuccessRate": 56, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "OSRS Live prices": { - "tool_description": "Grand exchange data for old school runescape items. ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 7, - "avgSuccessRate": 100, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "Scott": { - "tool_description": "Gate Free", - "score": null - }, - "HleBy6eK": { - "tool_description": "Spring Rest API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1013, - "avgSuccessRate": 100, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "Word Ladder Builder": { - "tool_description": "This word ladder builder API to find the shortest routes between words. Available on several datasets, this API version builds ladders for Collins Scabble Words dictionary of 2019 edition, for word lengths between 2 and 9 characters which cover more than 5 billion combinations.\n\nWord Ladders are also called doublets, word-links, change-the-word puzzles, paragrams, laddergrams and word golf. It is used for brain teaser and puzzle games globally including Wordle, Jotto and their variations. ", - "score": { - "avgServiceLevel": 82, - "avgLatency": 320, - "avgSuccessRate": 12, - "popularityScore": 2, - "__typename": "Score" - } - }, - "GamerPower": { - "tool_description": "Find all free games, loot and giveaways with this giveaway tracker API powered by GamerPower.com! Access programmatically the best giveaways in gaming!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 66, - "avgSuccessRate": 100, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Evosis's Game Database": { - "tool_description": "You can access technical and store information of more than 9100+ games. \nPlaystation (PS1:130,PS2:359,PS3:666,PS4:2399,PS5:527)\nPC (windows:6310, MacOS:2161, Linux:1370)\nXbox (Original:252,Xbox360:681,XOne:2080,XSeries521)\nNintendo Games (GameCube:130,Wii:161,WiiU:107,Switch:1908)", - "score": { - "avgServiceLevel": 100, - "avgLatency": 828, - "avgSuccessRate": 100, - "popularityScore": 8, - "__typename": "Score" - } - }, - "Minecraft UUID Converter": { - "tool_description": "Converts your Mojang Minecraft username into a UUID.", - "score": { - "avgServiceLevel": 96, - "avgLatency": 396, - "avgSuccessRate": 96, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "League of Legends Stats": { - "tool_description": "An API showing all the champions in League of Legends and their base stats.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 664, - "avgSuccessRate": 100, - "popularityScore": 9, - "__typename": "Score" - } - }, - "League Of Legends Champion Generator": { - "tool_description": "API that lets you generate a new League of Legends Champion\nThis API allows you to specify a Champion Name and then will attempt to generate abilities that will match with any theme related to the name.\nIf no name is specified, it will generate a champion name along with all abilities including the passive ability.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 6697, - "avgSuccessRate": 71, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "Trivia by API-Ninjas": { - "tool_description": "Access endless trivia question and answers. See more info at https://api-ninjas.com/api/trivia.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 173, - "avgSuccessRate": 100, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Valorant Weapons": { - "tool_description": "Provides users with all relevant information regarding weapons in Valorant", - "score": { - "avgServiceLevel": 86, - "avgLatency": 566, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "Wordle Game API": { - "tool_description": "The Wordle Game API allows developers to integrate a fun word-guessing game into their applications. Players can make guesses of five-letter English words, and the API will return a string indicating which letters are correct, which are incorrect but present in the word, and which are not present at all. The API generates a new secret word every 24 hours to keep the game fresh and challenging.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 945, - "avgSuccessRate": 99, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "MCAPI": { - "tool_description": "Retrieve information about Minecraft's blocks, items, recipes and advancements.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 980, - "avgSuccessRate": 100, - "popularityScore": 9, - "__typename": "Score" - } - }, - "Dungeons and Dragon 5e": { - "tool_description": "Get data about classes, subclasses, items, spells, and feats from D&D 5e.", - "score": { - "avgServiceLevel": 50, - "avgLatency": 662, - "avgSuccessRate": 50, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "Valorant Esports_v2": { - "tool_description": "The Valorant Esports is a user-friendly tool that allows you to extract data from the website vlr.gg. ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 907, - "avgSuccessRate": 100, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "Tibia Items": { - "tool_description": "this API will helps you find tibia items princes around the worlds\n\nAll endpoints to get items values, this is all we try to get on day.\n\nDiscord Channel for talk.\nhttps://discord.gg/bwZGtaz56P", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1239, - "avgSuccessRate": 100, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "SteamGames Special offers": { - "tool_description": "Get Steam Games List and Data that are on Special Discounted Offers. \nContact me at: vuesdata@gmail.com or visit https://www.vuesdata.com for building custom spiders or custom requests.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 833, - "avgSuccessRate": 99, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "League of Legends Champion Meta": { - "tool_description": "API for fetching the current Meta Data of all League of Legends Champions", - "score": { - "avgServiceLevel": 50, - "avgLatency": 545, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "Trackmania": { - "tool_description": "Get Stats, Matches and Leaderboards from Trackmania (Unofficial).", - "score": { - "avgServiceLevel": 100, - "avgLatency": 830, - "avgSuccessRate": 100, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "FortniteCosmetics": { - "tool_description": "A data base of fortnite cosmetices", - "score": { - "avgServiceLevel": 100, - "avgLatency": 543, - "avgSuccessRate": 100, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "Steam Store API": { - "tool_description": "💎Uncover gaming trends with our Steam API. Download prices, DLCs, discounts, reviews. Fuel your project, outperform rivals!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 124, - "avgSuccessRate": 100, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "MMO Games": { - "tool_description": "MMO Games API - By MMOBomb! Access programmatically the best Multiplayer Online Games, News and Giveaways!", - "score": { - "avgServiceLevel": 96, - "avgLatency": 4991, - "avgSuccessRate": 95, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "big89": { - "tool_description": "daftar big89 dan login big89 judi online indonesia terpercaya", - "score": { - "avgServiceLevel": 100, - "avgLatency": 346, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "Valorant": { - "tool_description": "Best players and teams within the competitive Valorant esports landscape", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1132, - "avgSuccessRate": 100, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Chess Puzzles_v2": { - "tool_description": "Quickly access 1.000.000+ chess puzzles!", - "score": { - "avgServiceLevel": 98, - "avgLatency": 2840, - "avgSuccessRate": 97, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Word Tree": { - "tool_description": "Given a set of letters, generate all the words that can be produced by adding at least one additional letter, arranged hierarchically.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 271, - "avgSuccessRate": 100, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "Hearthstone": { - "tool_description": "This API provides up to date Hearthstone data pulled directly from the game.", - "score": { - "avgServiceLevel": 95, - "avgLatency": 9029, - "avgSuccessRate": 94, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Lost Ark": { - "tool_description": "An API to get information for the game Lost Ark", - "score": { - "avgServiceLevel": 100, - "avgLatency": 413, - "avgSuccessRate": 100, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "Marvel Vs Capcom 2": { - "tool_description": "Get data about characters from Marvel Vs Capcom 2 game.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 7, - "avgSuccessRate": 100, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "CSGO matches and tournaments": { - "tool_description": "", - "score": { - "avgServiceLevel": 100, - "avgLatency": 820, - "avgSuccessRate": 100, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "Chess Puzzles": { - "tool_description": "Query a database of over 2 million Chess Puzzles", - "score": { - "avgServiceLevel": 26, - "avgLatency": 797, - "avgSuccessRate": 26, - "popularityScore": 2.5, - "__typename": "Score" - } - }, - "cs-skin API": { - "tool_description": "retrieve image, price, weapon, class for every released Skin in CS:GO or CS2", - "score": { - "avgServiceLevel": 83, - "avgLatency": 8959, - "avgSuccessRate": 83, - "popularityScore": 9, - "__typename": "Score" - } - }, - "League of Legends API": { - "tool_description": "An league of Legnds API to get all champions, chamption details, champion rotations, league queue, game from summoner, some informtions in a summoner. \nAll information is translated into 28 languages! \nAvailable for all regions!", - "score": { - "avgServiceLevel": 80, - "avgLatency": 34610, - "avgSuccessRate": 12, - "popularityScore": 2.3, - "__typename": "Score" - } - }, - "hitmen2": { - "tool_description": "crea", - "score": null - }, - "Steam Community": { - "tool_description": "Interface with elements on the SteamCommunity.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3817, - "avgSuccessRate": 100, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "Minecraft User Data": { - "tool_description": "Easily get minecraft user info.", - "score": { - "avgServiceLevel": 0, - "avgLatency": 187, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "League Of Legends Galore": { - "tool_description": "Get Details aboat players, champions, and more!\n\nCheck the About page for details on every API!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2853, - "avgSuccessRate": 81, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "VRising Server Query API": { - "tool_description": "This API is designed to query any VRising game server for information, more unique and custom features coming soon!", - "score": { - "avgServiceLevel": 99, - "avgLatency": 671, - "avgSuccessRate": 99, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "SUDOKU All-Purpose PRO": { - "tool_description": "Create, solve, verify. Output to html, image and SVG for newspapers and magazines. Full documentation at: https://myv.at/api/sudoku/", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1055, - "avgSuccessRate": 100, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "Epic Games Store - Free Games": { - "tool_description": "Unofficial API for scraping Free Games Offers from the Epic Games Store", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1895, - "avgSuccessRate": 100, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "wordle-api": { - "tool_description": "An api that can sustain client wordle matches sessions", - "score": { - "avgServiceLevel": 98, - "avgLatency": 759, - "avgSuccessRate": 95, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "CheapShark - Game Deals": { - "tool_description": "CheapShark is a price comparison website for digital PC Games. We keep track of prices across multiple stores including Steam, GreenManGaming, Fanatical, and many others.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 283, - "avgSuccessRate": 100, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "CricketLiveApi": { - "tool_description": "cricket-live-scores", - "score": null - }, - "ESportApi": { - "tool_description": "ESportApi offers eSports results for League of Legends, Dota 2, Counter-Strike providing also eSports standings and tournament live scores.\nFor increased rates and more sports, please look at: https://rapidapi.com/fluis.lacasse/api/allsportsapi2/", - "score": { - "avgServiceLevel": 100, - "avgLatency": 470, - "avgSuccessRate": 99, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "Pokemon TCG Card Prices": { - "tool_description": "Provides a model of the Pokemon Trading Card Game cards.\nEach individual card has a price that is based on recent sales of the card or currently open listings.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1782, - "avgSuccessRate": 100, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Whatsapp Checker PRO": { - "tool_description": "You only have to send us contact mobile numbers and we will filter the numbers registered on whatsapp\nThe service helps you to promote your services efficiently", - "score": { - "avgServiceLevel": 100, - "avgLatency": 641, - "avgSuccessRate": 100, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "lqv68": { - "tool_description": "lqv68", - "score": null - }, - "Rivet SMS": { - "tool_description": "Rivet SMS API offers programmable SMS APIs, so you can get maximum value from your messages. Use our APIs to send single, bulk messages , schedule broadcasts, configure/ triggers messages and much more.", - "score": { - "avgServiceLevel": 83, - "avgLatency": 488, - "avgSuccessRate": 67, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "SMS Receive": { - "tool_description": "Integrate receiving SMS message into your apps and applications, enabling automation based on incoming text messages.\n\nFor a simple demonstration, see https://www.tomwimmenhove.com/sms/\n", - "score": { - "avgServiceLevel": 99, - "avgLatency": 4039, - "avgSuccessRate": 82, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "Zigatext - Global Bulk SMS & OTP": { - "tool_description": "Experience the power of efficient, targeted, and personalized SMS communication with Zigatext. ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 426, - "avgSuccessRate": 4, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "Branded SMS Pakistan": { - "tool_description": "Branded SMS Pakistan provide Mask or Short Code Messaging Gateway in Pakistan", - "score": { - "avgServiceLevel": 100, - "avgLatency": 908, - "avgSuccessRate": 100, - "popularityScore": 9, - "__typename": "Score" - } - }, - "Gunsky": { - "tool_description": "Anjing", - "score": { - "avgServiceLevel": 100, - "avgLatency": 494, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "Virtual Number": { - "tool_description": "Receive SMS for phone verification", - "score": { - "avgServiceLevel": 98, - "avgLatency": 1332, - "avgSuccessRate": 98, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "PhoneNumberValidate": { - "tool_description": "Validate any phone number in any country", - "score": { - "avgServiceLevel": 97, - "avgLatency": 482, - "avgSuccessRate": 97, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "g2API2019": { - "tool_description": "g2API", - "score": { - "avgServiceLevel": 0, - "avgLatency": 0, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "D7 Verify": { - "tool_description": "Elevate your verification process to new heights with D7 Verifier API - the ultimate solution for phone number verification!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1101, - "avgSuccessRate": 97, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "BroadNet SMS": { - "tool_description": "Broadnet is an international leading business messaging solution provider. We are a GSMA associate member, ISO in information security management and quality management system and GDPR Certified; Broadnet is well known for its services: Bulk SMS, A2P SMS, HLR Lookup, SMSC Gateway and SMS Firewall; more than 60,000+ Clients. Direct connection to more than 680+ Operators & Carriers.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1314, - "avgSuccessRate": 100, - "popularityScore": 7.8, - "__typename": "Score" - } - }, - "PhoneNumberValidateFree": { - "tool_description": "Free and easy. Validate any phone number, from any country.\nGet type of number (for example, fixed line or mobile), the location of the number, and also reformat the number into local and international dialing formats.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 487, - "avgSuccessRate": 100, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "D7SMS": { - "tool_description": "Unlock boundless connectivity with D7API Gateway, seamlessly connecting you to the world's vast messaging network through D7's exclusive network access", - "score": { - "avgServiceLevel": 100, - "avgLatency": 623, - "avgSuccessRate": 100, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "SMS_v3": { - "tool_description": "Send SMS using your own android phone as the gateway.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 701, - "avgSuccessRate": 100, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "dedu": { - "tool_description": "dedu", - "score": null - }, - "SMS_v2": { - "tool_description": "Send SMS from your own number (Telekom Slovenije, T-2)", - "score": { - "avgServiceLevel": 100, - "avgLatency": 709, - "avgSuccessRate": 100, - "popularityScore": 9, - "__typename": "Score" - } - }, - "Promotional SMS": { - "tool_description": "API to send promotional using spring edge sms gateway", - "score": { - "avgServiceLevel": 100, - "avgLatency": 543, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "SMSAPI.com": { - "tool_description": "Powerful and easy SMS communication at your fingertips!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 968, - "avgSuccessRate": 47, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "SMSto": { - "tool_description": "Implement SMS notifications, OTP, reminders, etc. into your workflow and build apps that send SMS with our redundant SSL SMS API.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1000, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "Phone verification": { - "tool_description": "Validate any phone number across the USA, in bulk or single. Use free and forever.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 453, - "avgSuccessRate": 29, - "popularityScore": 2, - "__typename": "Score" - } - }, - "sms77io": { - "tool_description": "Send SMS & text-to-speech messages, perform phone number lookups and much more via sms77.io.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 475, - "avgSuccessRate": 99, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "Create Container Tracking": { - "tool_description": "User will be able to initiate the container tracking using this API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 661, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "suivi-colis": { - "tool_description": "L'API de suivi des colis en Nouvelle-CalĂ©donie", - "score": { - "avgServiceLevel": 85, - "avgLatency": 1264, - "avgSuccessRate": 85, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "Kargom Nerede": { - "tool_description": "TĂŒrkiye'deki kargo ßirketlerini Aras Kargo, Yurtiçi Kargo, SĂŒrat Kargo, PTT Kargo, MNG Kargo, HepsiJet, TrendyolExpress, UPS Kargo, ByExpress Kargo, Kolay Gelsin, Horoz Lojistik, CanadaPost, DHL Kargo, Fedex, TNT Kargo, Usps, Yanwen, AliExpress, Ceva Lojistik, İnter Global Kargo, Kargoİst, Jetizz takip edebilirsiniz.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 629, - "avgSuccessRate": 99, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "SQUAKE": { - "tool_description": "SQUAKE helps businesses to build sustainable products! With the most performant API in the market, we help travel, mobility, and logistics companies calculate carbon emissions and purchase certified climate contributions in real-time. Implemented within mins!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 955, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Turkey Postal Codes": { - "tool_description": "Turkey's postal codes.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1369, - "avgSuccessRate": 100, - "popularityScore": 6.1, - "__typename": "Score" - } - }, - "Air Cargo CO2 Track And Trace": { - "tool_description": "Track your Air Cargo shipments and measure CO2 with more than 170 airlines", - "score": { - "avgServiceLevel": 47, - "avgLatency": 2133, - "avgSuccessRate": 36, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Pack & Send": { - "tool_description": "Logistics and Shipment Services", - "score": { - "avgServiceLevel": 100, - "avgLatency": 697, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "GS1Parser": { - "tool_description": "Parse and validate GS1 barcode data", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2318, - "avgSuccessRate": 100, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "Transportistas de Argentina": { - "tool_description": "Obten las oficinas, localidades y precios de tus envios en Argentina para Andreani, Oca y Correo Argentino.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 268, - "avgSuccessRate": 98, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "Amex Australia (Fastway Australia) Tracking": { - "tool_description": "Tracking API for Aramex Australia also know as Fastway Australia. For any questions please contact support@logicsquares.com", - "score": { - "avgServiceLevel": 91, - "avgLatency": 13459, - "avgSuccessRate": 91, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "Transitaires": { - "tool_description": "Transitaires de dĂ©douanement en Nouvelle-CalĂ©donie ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 943, - "avgSuccessRate": 67, - "popularityScore": 6.3, - "__typename": "Score" - } - }, - "Pridnestrovie Post": { - "tool_description": "Transnistria parcel tracking", - "score": { - "avgServiceLevel": 100, - "avgLatency": 574, - "avgSuccessRate": 100, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "CEP Brazil": { - "tool_description": "API gratuita que retorna os dados Correios atravĂ©s de CEP", - "score": { - "avgServiceLevel": 83, - "avgLatency": 80132, - "avgSuccessRate": 67, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "Orderful": { - "tool_description": "API for EDI", - "score": { - "avgServiceLevel": 100, - "avgLatency": 705, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "TrackingMore_v2": { - "tool_description": "All-in-one global package tracking tool. Support track and trace international 472 couriers.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 4670, - "avgSuccessRate": 100, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "Movie Showtimes": { - "tool_description": "Movie showtimes for Cinemas NOS (portuguese movie theaters)", - "score": { - "avgServiceLevel": 0, - "avgLatency": 3273, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "Drinking": { - "tool_description": "API that provides with drinking questions and challenges.", - "score": { - "avgServiceLevel": 89, - "avgLatency": 287, - "avgSuccessRate": 83, - "popularityScore": 8, - "__typename": "Score" - } - }, - "Midknightt": { - "tool_description": "Personal Use Key", - "score": { - "avgServiceLevel": 0, - "avgLatency": 82, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "Random Quote Generator": { - "tool_description": "API serves from large collections of quotes. A GET request will give you quote, author and related tags.", - "score": { - "avgServiceLevel": 99, - "avgLatency": 5716, - "avgSuccessRate": 99, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "Horoscopes AI": { - "tool_description": "Horoscopes by AI in multilingual.", - "score": { - "avgServiceLevel": 89, - "avgLatency": 349, - "avgSuccessRate": 89, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "HTTP Status Cats": { - "tool_description": "HTTP Status Cats API. 'Nuff said! =^..^= =^..^= =^..^= =^..^= =^..^= =^..^=", - "score": { - "avgServiceLevel": 100, - "avgLatency": 563, - "avgSuccessRate": 100, - "popularityScore": 6.3, - "__typename": "Score" - } - }, - "ASE's Quiz API": { - "tool_description": "Question API with 500+ questions, 8 categories and 3 difficulties for your apps.", - "score": { - "avgServiceLevel": 97, - "avgLatency": 1078, - "avgSuccessRate": 97, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "Hummingbird v2": { - "tool_description": "API for Hummingbird, the easiest way to track, share and discover new anime. Free for non-commercial use.\r\n\r\nNote that this is *not* stable at the moment.", - "score": { - "avgServiceLevel": 96, - "avgLatency": 587, - "avgSuccessRate": 96, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "The Dozen - The Yo Mamsa Roast API": { - "tool_description": "Rest API that serves random, catagorized and filteres lighthearted familial insults/jokes", - "score": { - "avgServiceLevel": 98, - "avgLatency": 660, - "avgSuccessRate": 97, - "popularityScore": 9, - "__typename": "Score" - } - }, - "TVMaze": { - "tool_description": "Add TV information to your website or app with our easy to use REST API.\r\nThe TVMaze API uses JSON and conforms to the HATEOAS / HAL principles.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 241, - "avgSuccessRate": 66, - "popularityScore": 9, - "__typename": "Score" - } - }, - "Argentina movie theatres": { - "tool_description": "This api will give you data about the movies and showtimes of the 3 main theatre chains in Argentina", - "score": { - "avgServiceLevel": 50, - "avgLatency": 1996, - "avgSuccessRate": 50, - "popularityScore": 6.5, - "__typename": "Score" - } - }, - "Media-Group": { - "tool_description": "", - "score": { - "avgServiceLevel": 94, - "avgLatency": 1842, - "avgSuccessRate": 75, - "popularityScore": 7.3, - "__typename": "Score" - } - }, - "Fancy text": { - "tool_description": "Ń”Î·Ń‚Ń”Ń ŃƒÏƒÏ…Ń Ń‚Ń”Ï‡Ń‚ αη∂ ÂąĐœÎ±Î·gє Ń‚Ïƒ Æ’Î±Î·ÂąŃƒ Ń‚Ń”Ï‡Ń‚ Ï…Ń•Îčηg Ń‚ĐœÎčѕ ÂąÏƒÏƒâ„“ αρÎč :)", - "score": { - "avgServiceLevel": 100, - "avgLatency": 36, - "avgSuccessRate": 100, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "Poetry DB": { - "tool_description": "PoetryDB is the world's first API for Next Generation internet poets", - "score": { - "avgServiceLevel": 100, - "avgLatency": 50, - "avgSuccessRate": 100, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "cubiculus - managing LEGO set collection": { - "tool_description": "API allows manage LEGO set collection. User can specify which items you own and how many of them. Through this API could be persist collection.", - "score": { - "avgServiceLevel": 0, - "avgLatency": 127685, - "avgSuccessRate": 0, - "popularityScore": 0, - "__typename": "Score" - } - }, - "Throne of Glass API 2": { - "tool_description": "API for Throne of Glass Characters", - "score": { - "avgServiceLevel": 100, - "avgLatency": 141, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "MDBList": { - "tool_description": "Get Movies and TV Shows data with ratings from multiple providers in JSON format", - "score": { - "avgServiceLevel": 100, - "avgLatency": 217, - "avgSuccessRate": 100, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "XXXtremeLightningRouletteAPI": { - "tool_description": "XXXTremeLightningRoulette is a real-time API that provides developers with a way to integrate live data into their applications.This API is designed to be fast, reliable, and easy to use, allowing developers to quickly and easily access real-time lightning roulette game outcome data so they can integrate in any strategy", - "score": { - "avgServiceLevel": 100, - "avgLatency": 9574, - "avgSuccessRate": 100, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "Random Yes/No": { - "tool_description": "Get some random Yes or No", - "score": { - "avgServiceLevel": 100, - "avgLatency": 306, - "avgSuccessRate": 100, - "popularityScore": 7.6, - "__typename": "Score" - } - }, - "Jet Set Radio API": { - "tool_description": "A data provider for all things Jet Set Radio in JSON format!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1051, - "avgSuccessRate": 100, - "popularityScore": 9, - "__typename": "Score" - } - }, - "Football Live Stream Api": { - "tool_description": "Live Football Streaming HD", - "score": { - "avgServiceLevel": 99, - "avgLatency": 2460, - "avgSuccessRate": 99, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "Epic Games store": { - "tool_description": "Search games/bundles/editors in Epic Games store, get latest news from the platform and present free games.", - "score": { - "avgServiceLevel": 99, - "avgLatency": 4493, - "avgSuccessRate": 99, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Joke1": { - "tool_description": "Get a Random joke", - "score": { - "avgServiceLevel": 100, - "avgLatency": 521, - "avgSuccessRate": 100, - "popularityScore": 9, - "__typename": "Score" - } - }, - "Wisdom Quotes": { - "tool_description": "Last update: February 11, 2023.\nAn API providing a lot of different wisdom quotes. You will love it!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 10496, - "avgSuccessRate": 96, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "Anime Jokes": { - "tool_description": "The Anime Jokes API provides access to a collection of jokes related to anime. ", - "score": { - "avgServiceLevel": 97, - "avgLatency": 10039, - "avgSuccessRate": 97, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "DaddyJokes": { - "tool_description": "The Dad Joke API with over 700+ Dad jokes! Get random endless dadjokes!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 485, - "avgSuccessRate": 100, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Show Air Dates": { - "tool_description": "Find which shows are airing today, tomorrow, in the next 7 days, or in the next 31 days", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3048, - "avgSuccessRate": 100, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - " Jokester": { - "tool_description": "Your Source for Endless Laughter - Jokester API is your go-to source for hilarious jokes and puns.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1347, - "avgSuccessRate": 100, - "popularityScore": 7.6, - "__typename": "Score" - } - }, - "60K Radio Stations": { - "tool_description": "More than 68,000 radio stations from different countries and various genres", - "score": { - "avgServiceLevel": 100, - "avgLatency": 558, - "avgSuccessRate": 100, - "popularityScore": 6.4, - "__typename": "Score" - } - }, - "TuneIn": { - "tool_description": "AIR is our broadcaster API. It offers several simple methods to allow broadcasters and other publishers to send radio directory content to TuneIn in realtime.\r\nWhen you implement the AIR API, your listeners will:\r\nSee current artist album artwork on TuneIn.com player\r\nDiscover your station by searching for your artists\r\nBrowse station playlist history on TuneIn mobile and TuneIn.com\r\nPlease e-mail broadcaster-support@tunein.com your TuneIn station URL (search for your station on TuneIn.com) for permission to use the API, and we will grant a partnerId and partnerKey. If you use a special broadcaster software, let us know as well.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 178, - "avgSuccessRate": 0, - "popularityScore": 0, - "__typename": "Score" - } - }, - "Hummingbird APIv1": { - "tool_description": "APIv1 is the old Hummingbird API that is already implemented in multiple applications, its syntax and functionality will surely not change in the future so it is recommended to use this for any long-running projects.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 337, - "avgSuccessRate": 100, - "popularityScore": 6.8, - "__typename": "Score" - } - }, - "kast": { - "tool_description": "free apis for everyone!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1039, - "avgSuccessRate": 100, - "popularityScore": 5.6, - "__typename": "Score" - } - }, - "jokes ": { - "tool_description": "This API provides 1536 English funny jokes.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 390, - "avgSuccessRate": 100, - "popularityScore": 9, - "__typename": "Score" - } - }, - "Wisdom API": { - "tool_description": "Use this API to retrieve quotes filled with wisdom!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 421, - "avgSuccessRate": 98, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "LightningRoulletteAPI": { - "tool_description": "APILightningRoulette is a real-time API that provides developers with a way to integrate live data into their applications.This API is designed to be fast, reliable, and easy to use, allowing developers to quickly and easily access real-time lightning roulette game outcome data so they can integrate in any strategy", - "score": { - "avgServiceLevel": 100, - "avgLatency": 8813, - "avgSuccessRate": 100, - "popularityScore": 8, - "__typename": "Score" - } - }, - "Text similarity calculator": { - "tool_description": "This calculates the similarity between two texts in percentage. It is an implementation as described in Programming Classics: Implementing the World's Best Algorithms by Ian Oliver). Note that this implementation does not use a stack as in Oliver's pseudo code, but recursive calls which may or may not speed up the whole process. Note also that the complexity of this algorithm is O(N**3) where N is the length of the longest string.\r\n\r\nFor more details: \r\nhttps://en.wikipedia.org/wiki/Approximate_string_matching", - "score": { - "avgServiceLevel": 99, - "avgLatency": 222, - "avgSuccessRate": 99, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "Wordle Today": { - "tool_description": "Get today's wordle word", - "score": { - "avgServiceLevel": 100, - "avgLatency": 360, - "avgSuccessRate": 100, - "popularityScore": 7.6, - "__typename": "Score" - } - }, - "StarLoveMatch": { - "tool_description": "This API uses the birth as well as progressed astrological charts of people to determine their basic as well as current compatibility.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1011, - "avgSuccessRate": 100, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "beyblade-api": { - "tool_description": "A Beyblade API, providing access to information about various Beyblades, their product information, parts and other related data", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1481, - "avgSuccessRate": 90, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "Youtube Search and Download": { - "tool_description": "Get info about channel, playlist, video, get trendings or search everything you want in YouTube", - "score": { - "avgServiceLevel": 100, - "avgLatency": 541, - "avgSuccessRate": 100, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "Anime Quotes_v4": { - "tool_description": "An API for serving high-quality anime quotes", - "score": { - "avgServiceLevel": 0, - "avgLatency": 2016, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Football Highlight": { - "tool_description": "Best Live", - "score": { - "avgServiceLevel": 100, - "avgLatency": 392, - "avgSuccessRate": 100, - "popularityScore": 7.7, - "__typename": "Score" - } - }, - "Twitter video downloader mp4": { - "tool_description": "Twitter video downloader in mp4 is Iframe & button API ( https://mp3downy.com/twitter-video-downloader-API ) is now providing you the best ever fastest Downloader API(Application Programming Interface) all of free. We provide you the best health status of 99.99% productive uptime and we assure the best speeds all over the time with all kinds of video types supported and you can use it in the ease with customization provision inbuilt.", - "score": { - "avgServiceLevel": 0, - "avgLatency": 276, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "PAPI - PornstarsAPI": { - "tool_description": "Trying to be the most comprehensive and accurate source of data for pornstars and movies.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 247, - "avgSuccessRate": 98, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "stapi - showerthoughts": { - "tool_description": "stapi or showerthoughts api is an api which makes use of the posts on subreddit r/showerthoughts and fetches results for the end user.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2385, - "avgSuccessRate": 100, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Would You Rather": { - "tool_description": "Get random fun 'Would You Rather' questions that are up to date! :) Data is constantly being updated/added!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2119, - "avgSuccessRate": 100, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "top free apps": { - "tool_description": "shows top free apps in app store", - "score": { - "avgServiceLevel": 100, - "avgLatency": 348, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Chinese Zodiacs - AI": { - "tool_description": "Chinese Zodiacs in Simplified & Traditional languages.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2264, - "avgSuccessRate": 100, - "popularityScore": 6.7, - "__typename": "Score" - } - }, - "Interesting Facts API": { - "tool_description": "This API returns facts about anything. You pass name of the topic, and the API returns list of the facts. It uses Chat GPT to generate the answer.", - "score": { - "avgServiceLevel": 50, - "avgLatency": 1536, - "avgSuccessRate": 50, - "popularityScore": 7.2, - "__typename": "Score" - } - }, - "Web - Novel API": { - "tool_description": "Looking for the latest and greatest in Korean, Chinese, and Japanese web novels? Look no further than Web - Novel API! Our platform offers access to thousands of titles and millions of chapters, all translated into English for your reading pleasure. We provide metadata, ratings, and other important information to help you find the perfect web novel. Our content is carefully crawled and formatted using Mozilla Readability to ensure the best reading experience possible. Join us today and discov...", - "score": { - "avgServiceLevel": 54, - "avgLatency": 398, - "avgSuccessRate": 54, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "Burning Series API": { - "tool_description": "Get all shows, Details about a show, Seasons, Episodes and Streams", - "score": { - "avgServiceLevel": 100, - "avgLatency": 407, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Reddit meme": { - "tool_description": "An API for showing the best memes on the internet using Reddit", - "score": { - "avgServiceLevel": 100, - "avgLatency": 7, - "avgSuccessRate": 100, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "Cash4Life": { - "tool_description": "Do you want to get paid for the rest of your life? This is your game! Introducing the latest winning numbers and the best statistics!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 261, - "avgSuccessRate": 100, - "popularityScore": 9, - "__typename": "Score" - } - }, - "Jokes by API-Ninjas": { - "tool_description": "Access a large collection of jokes from the internet. See more info at https://api-ninjas.com/api/jokes.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 405, - "avgSuccessRate": 100, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "Waifu": { - "tool_description": "Talk to cute waifu chatbot!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2345, - "avgSuccessRate": 96, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "Hummingbird v1": { - "tool_description": "API for Hummingbird, the easiest way to track, share and discover new anime. \r\n\r\nFree for non-commercial use.", - "score": { - "avgServiceLevel": 99, - "avgLatency": 616, - "avgSuccessRate": 99, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Riddlie ": { - "tool_description": "API that provides access to a collection of thousands of riddles (and growing). Fetch a random riddle or a riddle of the day. You can build a perfect app to entertain kids and families for dinner times. You can also pull riddles by their ID, difficulty level and keyword of your interest. API also collects feedback such as upvotes, and flags to fine-tune the library of riddles. I will constantly be adding more riddles to the API as I come across them. \nThe Basic plan is completely FREE with a ...", - "score": { - "avgServiceLevel": 85, - "avgLatency": 1714, - "avgSuccessRate": 65, - "popularityScore": 8, - "__typename": "Score" - } - }, - "Facebook video downloader MP4": { - "tool_description": "Facebook video downloader API Iframe and button API will allow adding FB video downloading option on any website. Check this link https://mp3downy.com/facebook-video-downloader-api", - "score": { - "avgServiceLevel": 0, - "avgLatency": 471, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "Memes brasileiros": { - "tool_description": "API simples e rĂĄpida que retorna posts de humor dos sites de meme mais populares do Brasil, como Ah NegĂŁo!, Humordido e NĂŁo Intendo.", - "score": { - "avgServiceLevel": 0, - "avgLatency": 11, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "gogoanime-data-api": { - "tool_description": "data from gogoanime website for anime website building and stuff.", - "score": { - "avgServiceLevel": 83, - "avgLatency": 1961, - "avgSuccessRate": 83, - "popularityScore": 7.7, - "__typename": "Score" - } - }, - "Disney worlds": { - "tool_description": "Download and stream Seasonal movies and full movies without buffering, from the official company of Disney Inc.", - "score": null - }, - "Img to ASCII": { - "tool_description": "Convert picture to ASCII image by URL or upload your own image.\nSet the specific size for the ASCII result.", - "score": { - "avgServiceLevel": 83, - "avgLatency": 401, - "avgSuccessRate": 67, - "popularityScore": 7.2, - "__typename": "Score" - } - }, - "Words of Wisdom - The Famous Quotes API": { - "tool_description": "Unlock the wisdom of the ages with our Famous Quotes API! Discover thought-provoking and inspirational quotes from great minds of the past and present.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2686, - "avgSuccessRate": 75, - "popularityScore": 7.1, - "__typename": "Score" - } - }, - "Steam": { - "tool_description": "Search, and get app/reviews/news data from store.steampowered.com", - "score": { - "avgServiceLevel": 99, - "avgLatency": 1597, - "avgSuccessRate": 99, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "AudioCloud": { - "tool_description": "Sound Share", - "score": null - }, - "Poker Cards Cartomancy": { - "tool_description": "Giving meaning to each playing poker cards", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1075, - "avgSuccessRate": 100, - "popularityScore": 7.8, - "__typename": "Score" - } - }, - "Anime Streaming": { - "tool_description": "Get a catalogue of newly added anime and episodes along with working streaming links .", - "score": { - "avgServiceLevel": 97, - "avgLatency": 1290, - "avgSuccessRate": 0, - "popularityScore": 0.4, - "__typename": "Score" - } - }, - "Mixy Word Guess Api": { - "tool_description": "", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2100, - "avgSuccessRate": 97, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "Programming Memes Reddit": { - "tool_description": "Scraping various programming subbreddits everyday to deliver best programming memes out there.", - "score": { - "avgServiceLevel": 0, - "avgLatency": 127271, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "Watchmode": { - "tool_description": "Universal OTT Streaming Service Availability API (Netflix, HBO Max, Peacock, Hulu, Amazon Prime Video, AppleTV+, Disney+ & over 100 more)", - "score": { - "avgServiceLevel": 100, - "avgLatency": 473, - "avgSuccessRate": 100, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "Marvel Heroic API: Unlock the MCU Legendary Characters.": { - "tool_description": "Welcome to the Marvel Cinematic Universe Character Database API! This comprehensive API provides you with detailed information about the iconic characters from the beloved Marvel Cinematic Universe (MCU). Explore the fascinating world of superheroes and villains with ease and access vital details on their backgrounds, powers, affiliations, and more.", - "score": { - "avgServiceLevel": 98, - "avgLatency": 1823, - "avgSuccessRate": 96, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "Events Linz": { - "tool_description": "API that provides events in Linz, Austria", - "score": { - "avgServiceLevel": 100, - "avgLatency": 500, - "avgSuccessRate": 100, - "popularityScore": 7.7, - "__typename": "Score" - } - }, - "Meme Generator and Template Database": { - "tool_description": "Meme Generator with support of adding captions and text directly on images to over 1.8k meme templates in 10+ fonts (works in multiple languages).", - "score": { - "avgServiceLevel": 100, - "avgLatency": 713, - "avgSuccessRate": 94, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Hobbies by API-Ninjas": { - "tool_description": "Access thousands of awesome hobby ideas. See more info at https://api-ninjas.com/api/hobbies.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 421, - "avgSuccessRate": 95, - "popularityScore": 9, - "__typename": "Score" - } - }, - "Bruno Jokes": { - "tool_description": "Generates a Bruno joke", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1129, - "avgSuccessRate": 100, - "popularityScore": 6.8, - "__typename": "Score" - } - }, - "Random Cat Fact": { - "tool_description": "Get some random cat facts", - "score": { - "avgServiceLevel": 98, - "avgLatency": 544, - "avgSuccessRate": 98, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Official World Cup": { - "tool_description": "The Official Match Schedule for the 2014 FIFA World Cup Brazil.", - "score": { - "avgServiceLevel": 0, - "avgLatency": 13, - "avgSuccessRate": 0, - "popularityScore": 0, - "__typename": "Score" - } - }, - "YouTube to Mp4": { - "tool_description": "An online service that grabs YouTube video file from the unique server address on Google.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 352, - "avgSuccessRate": 0, - "popularityScore": 0.4, - "__typename": "Score" - } - }, - "CrazyTimeAPI": { - "tool_description": "CrazyTimeAPI is a real-time API that provides developers with a way to integrate live data into their applications.This API is designed to be fast, reliable, and easy to use, allowing developers to quickly and easily access real-time game outcome data so they can integrate in any strategy", - "score": { - "avgServiceLevel": 100, - "avgLatency": 8204, - "avgSuccessRate": 100, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "World of Jokes": { - "tool_description": "Get over 10 millions jokes from around the world falling under 60+ categories.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1486, - "avgSuccessRate": 100, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "Chuck Norris by API-Ninjas": { - "tool_description": "Access thousands of funny Chuck Norris Jokes! See more info at https://api-ninjas.com/api/worldtime", - "score": { - "avgServiceLevel": 99, - "avgLatency": 475, - "avgSuccessRate": 99, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "Guinness-World-Records-Api": { - "tool_description": "An API To Fetch World Records Based On A Term, Or Details For A Specific Record.", - "score": { - "avgServiceLevel": 95, - "avgLatency": 959, - "avgSuccessRate": 95, - "popularityScore": 7.7, - "__typename": "Score" - } - }, - "DOTA 2 Steam Web": { - "tool_description": "A WebAPI for match history is now available on Dota 2. Web developers can now retrieve the match history and match details in JSON or XML format for use in their own applications.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 337, - "avgSuccessRate": 100, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "retrieve info": { - "tool_description": "to retrieve information", - "score": { - "avgServiceLevel": 0, - "avgLatency": 8, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "69bd0c7193msh3c4abb39db3a82fp18c336jsn8470910ae9f0": { - "tool_description": "Red Social de MĂșsicos Amateur.", - "score": { - "avgServiceLevel": 0, - "avgLatency": 66, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "Daily Cat Facts": { - "tool_description": "This APIs and Services from the web to do just one thing... send cat facts.", - "score": { - "avgServiceLevel": 0, - "avgLatency": 127406, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Riddles by API-Ninjas": { - "tool_description": "Quality riddles perfect for entertainment apps. See more info at https://api-ninjas.com/api/riddles", - "score": { - "avgServiceLevel": 100, - "avgLatency": 470, - "avgSuccessRate": 100, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "Meowfacts": { - "tool_description": " a simple api which returns a catfact ", - "score": { - "avgServiceLevel": 97, - "avgLatency": 486, - "avgSuccessRate": 94, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "Anime Quotes": { - "tool_description": "A free restful API serving quality anime quotes", - "score": { - "avgServiceLevel": 78, - "avgLatency": 526, - "avgSuccessRate": 60, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "mydailyinspiration": { - "tool_description": "Sync API for the My Daily Inspiration App", - "score": { - "avgServiceLevel": 100, - "avgLatency": 278, - "avgSuccessRate": 100, - "popularityScore": 5.7, - "__typename": "Score" - } - }, - "IMDb Top 100 Movies": { - "tool_description": "Top 100 Greatest Movies of All Time. Easy to use. It also includes the YouTube trailers.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 343, - "avgSuccessRate": 97, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "CsC e-Sim": { - "tool_description": "E-Sim is an online modern world simulation wherein the player becomes a citizen of one of 50 virtual countries. Players can take on a role such as soldier or business owner in order to affect the politics, economics, and military standing of their country.", - "score": null - }, - "TVView": { - "tool_description": "Live FREE to Air Tv Channel Streaming Links. For Development Purpose Only.", - "score": { - "avgServiceLevel": 83, - "avgLatency": 81366, - "avgSuccessRate": 83, - "popularityScore": 9, - "__typename": "Score" - } - }, - "Dad Jokes by API-Ninjas": { - "tool_description": "Thousands of hilarious dad jokes for your entertainment apps. See more info at https://api-ninjas.com/api/dadjokes", - "score": { - "avgServiceLevel": 100, - "avgLatency": 264, - "avgSuccessRate": 100, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "vadym-rock-paper-scissors-api": { - "tool_description": "Rock Paper Scissors game!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 158, - "avgSuccessRate": 100, - "popularityScore": 7.6, - "__typename": "Score" - } - }, - "SimAPI Movies": { - "tool_description": "Simapi (Simple Movies API) is a system that allows developers to integrate movie information retrieval with applications. Information such as movie title, movie year, actors and IMDb movie ID can be obtained in JSON format.", - "score": null - }, - "Sholltna": { - "tool_description": "Sholltna Website", - "score": { - "avgServiceLevel": 100, - "avgLatency": 506, - "avgSuccessRate": 100, - "popularityScore": 6.5, - "__typename": "Score" - } - }, - "Fun Facts": { - "tool_description": "This simple API returns radom fun facts", - "score": { - "avgServiceLevel": 100, - "avgLatency": 649, - "avgSuccessRate": 100, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "rapid-porn": { - "tool_description": "If you're looking for a random adult picture, our API is just what you need. Simply send a request to our API and you'll receive a random adult picture in return. Whether you need a picture for a project or just for fun, our API is perfect.", - "score": { - "avgServiceLevel": 89, - "avgLatency": 447, - "avgSuccessRate": 89, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "Throne of Glass API_v2": { - "tool_description": "Throne of Glass API", - "score": null - }, - "Love Quotes by LoveMelon": { - "tool_description": "#1 Love Quotes with images API that you can use on your app or download and share.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 884, - "avgSuccessRate": 100, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "MagicMirrorAPI": { - "tool_description": "MagicMirror", - "score": { - "avgServiceLevel": 0, - "avgLatency": 10, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "GMC Radio": { - "tool_description": "GMC Radio", - "score": { - "avgServiceLevel": 0, - "avgLatency": 374, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "Direct Porn_v2": { - "tool_description": "Find porn videos from popular direct download file hosting services.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 114, - "avgSuccessRate": 99, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "Love Calculator": { - "tool_description": "", - "score": { - "avgServiceLevel": 97, - "avgLatency": 463, - "avgSuccessRate": 97, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "Coin Flip": { - "tool_description": "API that flips a coin", - "score": { - "avgServiceLevel": 100, - "avgLatency": 254, - "avgSuccessRate": 100, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "SongMeanings": { - "tool_description": "Easily follow and track your favorite artists on SongMeanings!\r\nBe the first to know about new lyrics, song meanings & more!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 274, - "avgSuccessRate": 100, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "Deezer": { - "tool_description": "Deezer is the No. 1 site for listening to music on demand. Discover more than 30 million tracks, create your own playlists, and share your favourite tracks.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 159, - "avgSuccessRate": 100, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "YouTube Data": { - "tool_description": "Use the API for search, videos, playlists, channels and more.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 863, - "avgSuccessRate": 99, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "Fantasy 5": { - "tool_description": "Do you live for the Fantasy 5? Well, you’ve just found your match! Get the latest winning numbers and statistics for your game!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 390, - "avgSuccessRate": 100, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "MangaVerse API": { - "tool_description": "Unleash the World of Manga with MangaVerse API! Discover a captivating universe of manga from Japan, Korea, and China, all conveniently translated into English. ", - "score": { - "avgServiceLevel": 95, - "avgLatency": 622, - "avgSuccessRate": 69, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "Dung Bui": { - "tool_description": "OpenAPI Dung Bui", - "score": null - }, - "Porn Movies": { - "tool_description": "Best Movies", - "score": { - "avgServiceLevel": 98, - "avgLatency": 537, - "avgSuccessRate": 98, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Allbet Online Casino in Singapore": { - "tool_description": "With an simple-to-direct user border, large cards, and fast gameplay. Casinos have been one of the best famous entertaining businesses of the last 100 years.", - "score": { - "avgServiceLevel": 0, - "avgLatency": 568, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "Dad Jokes_v2": { - "tool_description": "This API returns wide range of dad jokes. New jokes are added monthly.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 559, - "avgSuccessRate": 95, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Euro Millions": { - "tool_description": "A rich API to get EuroMillions results. With this API you can consult the last result, submit the numbers of one or more bets and check how many numbers you hit. As it has a track record since 2004, you can even get statistics on the numbers that have been drawn the most, check if your lucky numbers have ever come out in previous draws or consult the results of a specific draw. For the most recent draws, you can find out how many bets matched the numbers and how much money each one received. ...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 224, - "avgSuccessRate": 99, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Manga Scrapper": { - "tool_description": "Get webtoon / comic data from favourite scanlation websites.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 580, - "avgSuccessRate": 95, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "erpk": { - "tool_description": "It is eRepublik unofficial API which gives you many missing features and allows create your own tools easy.", - "score": { - "avgServiceLevel": 0, - "avgLatency": 81, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "Game of Thrones": { - "tool_description": "List of all Game of Thrones characters' names, families, images, and more.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 987, - "avgSuccessRate": 100, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "Anime, manga and Novels Api": { - "tool_description": "Get the complete data of 14k Novels, 1k animes and 1k mangas.\nwe updated our data daily\n", - "score": { - "avgServiceLevel": 99, - "avgLatency": 1654, - "avgSuccessRate": 96, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "Soft-cat-quiz": { - "tool_description": "An API Service returning data for a Quiz Web Application about cats.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 32051, - "avgSuccessRate": 100, - "popularityScore": 7.1, - "__typename": "Score" - } - }, - "ImmersiveRouletteAPI": { - "tool_description": "ImmersiveRouletteAPI is a real-time API that provides developers with a way to integrate live data into their applications.This API is designed to be fast, reliable, and easy to use, allowing developers to quickly and easily access real-time lightning roulette game outcome data so they can integrate in any strategy", - "score": { - "avgServiceLevel": 100, - "avgLatency": 6910, - "avgSuccessRate": 100, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "Minecraft-Forge-Optifine": { - "tool_description": "This api is used to get version list and download for Minectaft, Forge and Optifine.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 825, - "avgSuccessRate": 100, - "popularityScore": 7.7, - "__typename": "Score" - } - }, - "Webtoon": { - "tool_description": "This API provides the largest webcomics data in the world to create a comic site/application such as webtoons.com", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2515, - "avgSuccessRate": 100, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "ClientWars": { - "tool_description": "ClientWars game API", - "score": { - "avgServiceLevel": 0, - "avgLatency": 23, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "Humor-Jokes-and-Memes": { - "tool_description": "Humor API lets you search through 50,000 jokes, over 200,000 memes, and gifs. From Chuck Norris, over Knock Knock to Yo Mama jokes, you'll find something for every occasion.", - "score": { - "avgServiceLevel": 95, - "avgLatency": 3517, - "avgSuccessRate": 92, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "Programming Memes Images": { - "tool_description": "Get random endless programming memes images. You can also see https://memes.semanticerror.com for the usage example.\n\nIn case of any issues, please start discussion here or just send me a mail at kaushalsharma880@gmail.com and I will try to help you as much as I can. Also feature requests are welcomed. \n\nYou can also connect with me on twitter for any issues or feature requests: https://twitter.com/kaushalhere\n\nThank you for visiting my API.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 671, - "avgSuccessRate": 100, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "HeyWatch Video Encoding": { - "tool_description": "Encode videos in the cloud with the HeyWatch Video Encoding API", - "score": { - "avgServiceLevel": 0, - "avgLatency": 643, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "Lotto America": { - "tool_description": "Do you live for the Lotto America? Well, you’ve just found your match! Get the latest winning numbers and statistics for your game!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 259, - "avgSuccessRate": 100, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "SHIMONETA": { - "tool_description": "This api can check if the input word is risky or not on global. It supports Japanese and English.", - "score": { - "avgServiceLevel": 50, - "avgLatency": 1044, - "avgSuccessRate": 50, - "popularityScore": 6.5, - "__typename": "Score" - } - }, - "Pipotronic": { - "tool_description": "This application is perfect for generating funny and ironic textual content in French to use in your powerpoints, meetings, corporate brochures, and more! Simply call the get request with no parameter, and the app will generate a random selection of text for you.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 113, - "avgSuccessRate": 100, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "Netflix Original Series Top 100 (ranked)": { - "tool_description": "The Netflix orginal Series Top 100 API contains information on movies, including the release year, duration, cast, brief summaries, and ratings . This data can be used for recommendation systems, data analysis, and research. ", - "score": { - "avgServiceLevel": 76, - "avgLatency": 820, - "avgSuccessRate": 54, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "New York Lottery": { - "tool_description": "Live draw results of New York Lottery", - "score": { - "avgServiceLevel": 95, - "avgLatency": 736, - "avgSuccessRate": 95, - "popularityScore": 8.2, - "__typename": "Score" - } - }, - "Flames Love Calculator": { - "tool_description": "Simple API to Calculate Flames score", - "score": { - "avgServiceLevel": 100, - "avgLatency": 291, - "avgSuccessRate": 100, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "IMDB Charts": { - "tool_description": "IMDB charts of most popular movies and tv shows. Titles, ranks, ratings, votes, covers and more. Fast and reliable!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 975, - "avgSuccessRate": 96, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "Outking": { - "tool_description": "All the latest movie posters as well as an extensive database of older posters.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 383, - "avgSuccessRate": 17, - "popularityScore": 2, - "__typename": "Score" - } - }, - "Tiktok Video Downloader": { - "tool_description": "Tiktok Downloader.The fastest way to download without watermark video from tiktok.", - "score": { - "avgServiceLevel": 0, - "avgLatency": 761, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "Ten Secrets About Mega888 Ios Download That Has Never Been Revealed For The Past Years": { - "tool_description": "You can also select games from Mega888 slot game, and Blackjack. Mega888 table games are very best and easy for you to knowledge the global game.", - "score": null - }, - "Dark Humor Jokes": { - "tool_description": "Over 300k dark humor jokes. ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1074, - "avgSuccessRate": 100, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "Cinema API": { - "tool_description": "Welcome to our exciting new API! 🎉 Our API provides a seamless experience for accessing a treasure trove of information about catalogs, actors, movies, and streaming platforms. With just a few simple requests, you can unlock a world of entertainment possibilities! Retrieve comprehensive details about catalogs, including genres, release dates, and more. Dive into the captivating lives of actors by exploring their biographies, filmography, and achievements. Discover the latest blockbusters, ti...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 739, - "avgSuccessRate": 100, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "yurna": { - "tool_description": "yurna discord bot", - "score": { - "avgServiceLevel": 0, - "avgLatency": 455, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "SimSimi Conversation": { - "tool_description": "SimSimi database consists of simple \"Request - Response\" set.\r\nWhen you request \"Hi\", SimSimi API send \"response\" by similarity with request sentence\r\n\r\nConversation API enables you to get SimSimi's response data", - "score": { - "avgServiceLevel": 100, - "avgLatency": 332, - "avgSuccessRate": 100, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "Chart Lyrics": { - "tool_description": "The API provides 3 functions. SearchLyric and SearchLyricsText to search the available lyric(s) and GetLyric to retrieve the lyric.\r\nSOAP API (beta)\r\nOur Simple Object Access Protocol Application Programming Interface is available to developers and end users who wish to use our database for their music project, website or application.\r\nCalls to the API are done using SOAP 1.1 or 1.2. The WSDL Service Description file can be found on api.chartlyrics.com/apiv1.asmx?WSDL\r\nFor additional information please visit the API webpage. api.chartlyrics.com/apiv1.asmx and/or download example code using the SOAP web service from chartlyrics.codeplex.com", - "score": null - }, - "mbar": { - "tool_description": "mbar offers a free, read only REST API for access to its programme data, including event, artist and club series information", - "score": { - "avgServiceLevel": 0, - "avgLatency": 10797, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "VOD App": { - "tool_description": "API for video on demand app", - "score": { - "avgServiceLevel": 100, - "avgLatency": 9, - "avgSuccessRate": 100, - "popularityScore": 7.3, - "__typename": "Score" - } - }, - "Follow Youtube Channel": { - "tool_description": "An API that shows all videos and notifies you that was lanced new videos of any channel", - "score": { - "avgServiceLevel": 100, - "avgLatency": 13, - "avgSuccessRate": 100, - "popularityScore": 5, - "__typename": "Score" - } - }, - "Memeados": { - "tool_description": "Generate custom image, gif and video memes.", - "score": { - "avgServiceLevel": 97, - "avgLatency": 1748, - "avgSuccessRate": 97, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "PixelStix": { - "tool_description": "PixelStix is a suite of technologies for locating and interacting with physical objects.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 309, - "avgSuccessRate": 100, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "HAPI Books": { - "tool_description": "HAPI Books is an API about books. It gives information about thousands of books from all around the world. Search by name, by genre, get the best books by year, and more!", - "score": { - "avgServiceLevel": 99, - "avgLatency": 2285, - "avgSuccessRate": 99, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "4D Results": { - "tool_description": "Live 4D results for Malaysia and Singapore.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 261, - "avgSuccessRate": 100, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Meme Generator_v2": { - "tool_description": "Generate over 500 meme per day. Free And Paid! ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 661, - "avgSuccessRate": 0, - "popularityScore": 0, - "__typename": "Score" - } - }, - "Celebrity by API-Ninjas": { - "tool_description": "Get information on all your favorite celebrities. See more info at https://api-ninjas.com/api/celebrity.", - "score": { - "avgServiceLevel": 99, - "avgLatency": 490, - "avgSuccessRate": 99, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "New Girl": { - "tool_description": "This api provides data for the tv show called New Girl. There is also data & details for each character. ", - "score": { - "avgServiceLevel": 96, - "avgLatency": 319, - "avgSuccessRate": 96, - "popularityScore": 8, - "__typename": "Score" - } - }, - "Comedy(KK)": { - "tool_description": "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with deskto...", - "score": null - }, - "Boggle": { - "tool_description": "A Boggle solver - supply 16 letters representing the tiles on a Boggle board and the service will return all allowable words that can be found. Letters from the first row of the board should be listed first reading from left to right, followed by letters from the second row and so on down the board. On a traditional Boggle board, the letters 'Q' and 'U' appear together on a single square, in order to be consistent with this rule the web service will interpret the single letter 'Q' as the sequence 'QU'.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 360, - "avgSuccessRate": 25, - "popularityScore": 1.8, - "__typename": "Score" - } - }, - "The Love Calculator": { - "tool_description": "A fun api that shows the compatibility of your crush!", - "score": { - "avgServiceLevel": 99, - "avgLatency": 546, - "avgSuccessRate": 99, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "animes": { - "tool_description": "Get all data from your favorite anime, and the chapter or tomo of the manga or the light novel that the anime adapted", - "score": { - "avgServiceLevel": 99, - "avgLatency": 426, - "avgSuccessRate": 99, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "NameForge": { - "tool_description": "Unleash your imagination and create any name you can dream up. Generate unique names for children, companies, characters, and usernames, literally anything using descriptive queries. The possibilities are endless - see where your creativity takes you!", - "score": { - "avgServiceLevel": 86, - "avgLatency": 1531, - "avgSuccessRate": 71, - "popularityScore": 7.1, - "__typename": "Score" - } - }, - "Wrestling API": { - "tool_description": "Shows results for wrestling matches", - "score": { - "avgServiceLevel": 100, - "avgLatency": 397, - "avgSuccessRate": 100, - "popularityScore": 6.1, - "__typename": "Score" - } - }, - "Nguyễn Hữu KhÆ°ÆĄng": { - "tool_description": "i like any free", - "score": null - }, - "Covid-19 by API-Ninjas": { - "tool_description": "Covid-19 case count and death data for every country in the world. See more info at https://api-ninjas.com/api/covid19.", - "score": { - "avgServiceLevel": 98, - "avgLatency": 1165, - "avgSuccessRate": 98, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "eGFR Calculator (Glomerular filtration rate calculator) ": { - "tool_description": "This API helps calculate eGFR (Estimated Glomerular Filtration Rate) for assessing renal function, utilizing the 2021 CKD-EPI formula. To use, you'll need to input the patient's creatinine level, age, and gender. The creatinine value can be entered in either mg/dL or ÎŒmol/L.", - "score": { - "avgServiceLevel": 17, - "avgLatency": 1068, - "avgSuccessRate": 17, - "popularityScore": 1.8, - "__typename": "Score" - } - }, - "ZomiDictionary": { - "tool_description": "Zomi Dictionary", - "score": null - }, - "Hapihub": { - "tool_description": "Healthcare infrastructure for compliance, interoperability, & building applications", - "score": { - "avgServiceLevel": 100, - "avgLatency": 261, - "avgSuccessRate": 100, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "Body Shape Analyzer": { - "tool_description": "Extract body shapes from full-body photos on the front and side and provide the body shape analysis results.", - "score": { - "avgServiceLevel": 92, - "avgLatency": 420, - "avgSuccessRate": 92, - "popularityScore": 7.8, - "__typename": "Score" - } - }, - "Eczanem": { - "tool_description": "il ve ilçe bilgisine göre nöbetçi eczaneleri görĂŒntĂŒleyin!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 370, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "EndlessMedicalAPI": { - "tool_description": "From patient's symptoms and results to diagnosis (COVID-19 included) - free to use in 2020. It not only has symptoms, but also allows you to enter a detailed review of systems, physical examination findings and testing (i.e. blood work, chest x-ray) results. It has standard functions like “next best step” in diagnosis, etc
We are looking for beta testers, for whom, we prepared Goodies, like lifetime free access to the key of API functionalities.", - "score": { - "avgServiceLevel": 87, - "avgLatency": 393, - "avgSuccessRate": 87, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "The Cancer Imaging Archive": { - "tool_description": "NOTE: You need an API-Key to use this API. See README for more details.\r\nThe Cancer Imaging Archive (TCIA) is a public repository of cancer images and related clinical data for the express purpose of enabling open science research. Currently over 26 million radiologic images of cancer are contained in this repository. The API allows you to query metadata and download images from the various public collections available on TCIA", - "score": { - "avgServiceLevel": 71, - "avgLatency": 49038, - "avgSuccessRate": 71, - "popularityScore": 7.4, - "__typename": "Score" - } - }, - "23andMe": { - "tool_description": "23andMe's OAuth 2.0 API lets developers build apps and tools on the human genome.\r\n\r\nOur customers are genotyped for over 1,000,000 SNPs, conveniently accessible through our free REST API. Not genotyped? We have demo endpoints.\r\n\r\nNo need for a Ph.D.\r\nOur scientists have analyzed disease risk, calculated ancestry, and found relatives for genotyped customers. You could use this data without even knowing what a gene is!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 239, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "Konviere DrugsAPI": { - "tool_description": "Konviere Drugs API serves public FDA data about National Drug Code (NDC) and Adverse Event Reporting System (FAERS)", - "score": null - }, - "GetGuidelines": { - "tool_description": "https://getguidelines.com -- Free REST API for Medical Guidelines. Use biometric and demographic data to search the same medical references used by healthcare professionals. Get personalized clinical recommendations using parameters such as weight, blood pressure, age, etc.", - "score": null - }, - "Drug Info and Price History": { - "tool_description": "An API to rapidly retrieve information about drug prices and history across a variety of sources", - "score": { - "avgServiceLevel": 97, - "avgLatency": 865, - "avgSuccessRate": 93, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "dev-to-api": { - "tool_description": "API that fetches the latest blogs from dev.to website", - "score": { - "avgServiceLevel": 100, - "avgLatency": 989, - "avgSuccessRate": 100, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "Live world futbol news": { - "tool_description": "An API showing all the latest world football news.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 530, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Smart Curator": { - "tool_description": "Top breaking news/trends from around the globe featuring sentiment analysis and specified major headlines as well as many more datapoints to come. Updated every 20 minutes.", - "score": null - }, - "Crypto News_v11": { - "tool_description": "An API that shows the latest news articles from over 70 different websites around the world for Crypto, Bitcoin, and Ethereum", - "score": { - "avgServiceLevel": 0, - "avgLatency": 813, - "avgSuccessRate": 0, - "popularityScore": 0, - "__typename": "Score" - } - }, - "German Police and Crime News Live": { - "tool_description": "An API showing all the latest Police, Crime, Accident etc. News in Germany", - "score": { - "avgServiceLevel": 50, - "avgLatency": 188450, - "avgSuccessRate": 50, - "popularityScore": 5.5, - "__typename": "Score" - } - }, - "NewsData": { - "tool_description": "Best News API To Search And Collect Worldwide News", - "score": { - "avgServiceLevel": 100, - "avgLatency": 743, - "avgSuccessRate": 96, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "Greek News in English": { - "tool_description": "An API showing all the latest Greek news in English", - "score": { - "avgServiceLevel": 93, - "avgLatency": 7028, - "avgSuccessRate": 93, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "AR VR News": { - "tool_description": "Get the latest news on Augmented Reality and Virtual Reality.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1286, - "avgSuccessRate": 100, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "Pakistan News API": { - "tool_description": "This API will give you latest news only about Pakistan politics.", - "score": { - "avgServiceLevel": 0, - "avgLatency": 28030, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Climate Change News_v5": { - "tool_description": "An API showing latest Climate Change News around the world", - "score": { - "avgServiceLevel": 100, - "avgLatency": 42091, - "avgSuccessRate": 100, - "popularityScore": 5.8, - "__typename": "Score" - } - }, - "Football-API": { - "tool_description": "Football-API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1025, - "avgSuccessRate": 100, - "popularityScore": 6.3, - "__typename": "Score" - } - }, - "Moka News": { - "tool_description": "A scrapper / scraper API to get latest news every minute from more than 30 sources all over the world as a start ( sources will be increased with time to be hundreds of different sources of live news ) ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 906, - "avgSuccessRate": 100, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Google News": { - "tool_description": "Provide real-time news and articles sourced from Google News.", - "score": { - "avgServiceLevel": 96, - "avgLatency": 2223, - "avgSuccessRate": 95, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Malaysia Kini": { - "tool_description": "Live News by Malaysia Kini", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2496, - "avgSuccessRate": 100, - "popularityScore": 5.8, - "__typename": "Score" - } - }, - "berita": { - "tool_description": "belajar", - "score": { - "avgServiceLevel": 100, - "avgLatency": 34, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "pollution-news-api": { - "tool_description": "An API service returning news articles about pollution in african countries.\nTry using another project of mine to summarize the articles - \nhttps://soft-summarizer.vercel.app/ ", - "score": { - "avgServiceLevel": 50, - "avgLatency": 182397, - "avgSuccessRate": 50, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "News_v3": { - "tool_description": "News Scrapper", - "score": { - "avgServiceLevel": 100, - "avgLatency": 8, - "avgSuccessRate": 100, - "popularityScore": 9, - "__typename": "Score" - } - }, - "Climate Change Live_v3": { - "tool_description": "An API shows all the latest climate change news around the world.", - "score": { - "avgServiceLevel": 94, - "avgLatency": 14557, - "avgSuccessRate": 94, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "Reuters Business and Financial News": { - "tool_description": "Our Financial News API is a comprehensive and accurate data source of financial news from Reuters. This API allows users to retrieve the latest financial news articles and updates from Reuters, covering topics such as stocks, bonds, commodities, currencies, and more. The API is designed to provide real-time financial news updates, and allows users to filter news based on keywords, location, and date range. This data can be easily integrated into a wide range of use cases, such as financial an...", - "score": { - "avgServiceLevel": 70, - "avgLatency": 1709, - "avgSuccessRate": 70, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "Medium": { - "tool_description": "Unofficial API to search and find the latest stories written on medium.com", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1276, - "avgSuccessRate": 100, - "popularityScore": 5.7, - "__typename": "Score" - } - }, - "Movies details": { - "tool_description": "we will provide movies details", - "score": { - "avgServiceLevel": 100, - "avgLatency": 4300, - "avgSuccessRate": 100, - "popularityScore": 8, - "__typename": "Score" - } - }, - "Election2020 Smartable": { - "tool_description": "The Election API offers the 2020 U.S. election news, events, important people, FAQs, and other information. The data is tagged with democratic voice and republican voice, so it's up to the user to decide which opinion to follow.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 242, - "avgSuccessRate": 52, - "popularityScore": 7.4, - "__typename": "Score" - } - }, - "ALL Crypto News Feed": { - "tool_description": "All news about crypto. Tweets, listing news, .gov announcements, blogs etc.", - "score": { - "avgServiceLevel": 99, - "avgLatency": 638, - "avgSuccessRate": 99, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "Targeted Keyword trend": { - "tool_description": "Google Trends and Search count.\nWonder what the world is searching from past to now ( (present time )? Try our simple API Friends.....", - "score": { - "avgServiceLevel": 99, - "avgLatency": 7090, - "avgSuccessRate": 99, - "popularityScore": 9, - "__typename": "Score" - } - }, - "US Presidential Election": { - "tool_description": "API for US Presidential Election results, by state (from 1976-) and county (eventually, from 2000-)", - "score": { - "avgServiceLevel": 81, - "avgLatency": 3202, - "avgSuccessRate": 81, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "Political Bias Database": { - "tool_description": "A database containing data allsides.com and mediabiasfactcheck.com.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 292, - "avgSuccessRate": 100, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "Webit News Search": { - "tool_description": "40+ Languages News Search, Trending articles feed.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2013, - "avgSuccessRate": 100, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "Fashion Industry News Data Collection": { - "tool_description": "Our Fashion Industry Data Collection provides access to millions of news, articles, opinions and reports from media and blogs sources around the world, all in real time. With this comprehensive resource, you can stay up-to-date on a wide range of topics related to the fashion industry, including information on companies, brands, products, consumer opinions, legislation, and industry news, among others. Plus, our data collection is available in multiple languages, making it easy to access rele...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1361, - "avgSuccessRate": 89, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Narco in Mexico": { - "tool_description": "Narco in Mexico News", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1609, - "avgSuccessRate": 100, - "popularityScore": 7.2, - "__typename": "Score" - } - }, - "Cote Ivoire news": { - "tool_description": "Toute l'actualitĂ© instantanĂ©e politique, Ă©conomique, sportive, culturelle, sociĂ©tale de la CĂŽte d'Ivoire, issues plusieurs sources. Ivory Coast news.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 6906, - "avgSuccessRate": 100, - "popularityScore": 6.6, - "__typename": "Score" - } - }, - "Green Gold": { - "tool_description": "An API aggregating news articles related to green technology, stocks, start-ups, and trends.", - "score": { - "avgServiceLevel": 50, - "avgLatency": 2500, - "avgSuccessRate": 50, - "popularityScore": 7.5, - "__typename": "Score" - } - }, - "Live Climate Change_v2": { - "tool_description": "An API showing all the latest Climate Change news around the world", - "score": { - "avgServiceLevel": 100, - "avgLatency": 355, - "avgSuccessRate": 50, - "popularityScore": 5.9, - "__typename": "Score" - } - }, - "Climate change_v31": { - "tool_description": "API showing climate events around the world", - "score": { - "avgServiceLevel": 100, - "avgLatency": 609, - "avgSuccessRate": 0, - "popularityScore": 0, - "__typename": "Score" - } - }, - "Anime News Net": { - "tool_description": "This anime news API allows users to get details about the latest anime news, including the news headline, category, publication date and a brief introduction. It also provides an image relevant to the news item and the full content of the news item. Users can use this API to stay updated on the latest anime news easily and quickly", - "score": { - "avgServiceLevel": 99, - "avgLatency": 1955, - "avgSuccessRate": 99, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "A.I. Smartable": { - "tool_description": "The A.I. Smartable API offers the artificial intelligence news, learning resources, companies, influencers, events and other information.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 263, - "avgSuccessRate": 94, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "Global Recession Live": { - "tool_description": "An API showing all the latest recession news around the world, collected from The New York Times, The Guardian, World Economic Forum, The Economist, AP News, Reuters, and Politico.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 51811, - "avgSuccessRate": 100, - "popularityScore": 6.9, - "__typename": "Score" - } - }, - "Climate Change Live_v27": { - "tool_description": "An API showing all the latest climate change news around the world", - "score": { - "avgServiceLevel": 100, - "avgLatency": 37707, - "avgSuccessRate": 100, - "popularityScore": 5.5, - "__typename": "Score" - } - }, - "OneLike": { - "tool_description": "Getting News in real-time via API from Social Medias like Twitter, Facebook, Instagram, etc", - "score": null - }, - "New climate": { - "tool_description": "Climate data sd", - "score": { - "avgServiceLevel": 91, - "avgLatency": 77, - "avgSuccessRate": 91, - "popularityScore": 7.5, - "__typename": "Score" - } - }, - "Google News API": { - "tool_description": "By using the Google News API, which is a straightforward REST API, you may look through over 1,000,000 news sources, both current and archived. You may also aggregate and arrange today's most talked-about news stories in accordance with Google News's rating with the help of this news API. You can also use filters and a keyword search to sift through all the articles.\n\nWe have compiled tens of millions of articles from over 250,000 sources in ten different languages for inclusion in our databa...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 573, - "avgSuccessRate": 88, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Crypto News_v2": { - "tool_description": "Shows recent news articles in the cryptocurrency market. Find article by keyword search to find related news or return general information about crypto market. ", - "score": { - "avgServiceLevel": 99, - "avgLatency": 4738, - "avgSuccessRate": 99, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "article-api": { - "tool_description": "Normalize article from a url", - "score": { - "avgServiceLevel": 100, - "avgLatency": 515, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Live Climate Change News_v2": { - "tool_description": "An API to get all the latest news on Climate Change around the world.", - "score": { - "avgServiceLevel": 56, - "avgLatency": 4805, - "avgSuccessRate": 56, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "Online Movie Database": { - "tool_description": "This API helps to query for all information about films, actors, characters,etc... to create a movie/series/streaming content site/application", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1566, - "avgSuccessRate": 100, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "Top Stories of Kuensel": { - "tool_description": "Generates top stories of Kuensel", - "score": { - "avgServiceLevel": 100, - "avgLatency": 370, - "avgSuccessRate": 100, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "Covid news_v2": { - "tool_description": "News about Covid 19 from different sources including WHO, guardian, CNN, etc", - "score": { - "avgServiceLevel": 100, - "avgLatency": 33591, - "avgSuccessRate": 100, - "popularityScore": 5.7, - "__typename": "Score" - } - }, - "Crypto News Live_v2": { - "tool_description": "A Crypto News API pulling data from around the world about the latest news in crypto", - "score": { - "avgServiceLevel": 85, - "avgLatency": 28, - "avgSuccessRate": 85, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "H Crypto News": { - "tool_description": "Crypto News API gives you the latest news on cryptocurrency from several newspapers", - "score": { - "avgServiceLevel": 100, - "avgLatency": 14113, - "avgSuccessRate": 100, - "popularityScore": 8, - "__typename": "Score" - } - }, - "IMDb": { - "tool_description": "", - "score": { - "avgServiceLevel": 100, - "avgLatency": 826, - "avgSuccessRate": 100, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "Climate Change API_v5": { - "tool_description": "An API showing all the latest climate change news around the world", - "score": { - "avgServiceLevel": 100, - "avgLatency": 11, - "avgSuccessRate": 100, - "popularityScore": 5.7, - "__typename": "Score" - } - }, - "depuertoplata": { - "tool_description": "tu ciudad en la red", - "score": null - }, - "Kubric: The Comprehensive Movie News API": { - "tool_description": "Stay up-to-date with Kubric, your ultimate movie news API. Access top sources, search by title or keyword, and experience visually engaging cinema updates and insights.", - "score": { - "avgServiceLevel": 94, - "avgLatency": 621, - "avgSuccessRate": 94, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "News Sentiment": { - "tool_description": "English news sentiment API, only $0.00001 per extra requests", - "score": { - "avgServiceLevel": 100, - "avgLatency": 10060, - "avgSuccessRate": 100, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "Climate News Feed": { - "tool_description": "Climate Change news from the most trusted sources. Nasa, UN, and more. Flexible, reliable, and fast with low latency. Includes thumbnails, filtering, and pagination", - "score": { - "avgServiceLevel": 100, - "avgLatency": 369, - "avgSuccessRate": 100, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "India Today Unofficial": { - "tool_description": "The India Today Unofficial API is a third-party web service that provides access to news content from the India Today platform. It allows developers to retrieve articles, videos, images, and other information related to various topics. Please note that it is not an official API provided by India Today.", - "score": { - "avgServiceLevel": 96, - "avgLatency": 97978, - "avgSuccessRate": 96, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "Kenyan News Api": { - "tool_description": "", - "score": { - "avgServiceLevel": 100, - "avgLatency": 8415, - "avgSuccessRate": 100, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "Climate News API_v2": { - "tool_description": "An API showing all the Climate change related news around the world.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 35542, - "avgSuccessRate": 100, - "popularityScore": 6.4, - "__typename": "Score" - } - }, - "AI News - Global": { - "tool_description": "Global News produced by AI", - "score": { - "avgServiceLevel": 96, - "avgLatency": 1013, - "avgSuccessRate": 79, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "News API_v2": { - "tool_description": "Google News and Bing News Alternative. The Best API to Search News from the 2500+ Publishers Around The World. ", - "score": { - "avgServiceLevel": 97, - "avgLatency": 2861, - "avgSuccessRate": 96, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "Goverlytics": { - "tool_description": "The Goverlytics API.", - "score": { - "avgServiceLevel": 63, - "avgLatency": 10983, - "avgSuccessRate": 55, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "IEEE Spectrum API": { - "tool_description": "The IEEE Spectrum News API is a simple HTTP-based API that allows developers and students to access the latest news and articles from the IEEE Spectrum website as well as integrate them as data into their own websites web applications or mobile apps. The API uses \"REST-Like\" operations over HTTP GET requests with parameters Header encoded into the request and its response encoded in JSON format.This API has been created for bringing the latest technology news provided by the IEEE Spectrum Ne...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 7437, - "avgSuccessRate": 100, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "climate-change-api_v2": { - "tool_description": "Get links about the climate changes ", - "score": { - "avgServiceLevel": 33, - "avgLatency": 1599, - "avgSuccessRate": 33, - "popularityScore": 5.7, - "__typename": "Score" - } - }, - "LGBTQ World News Live": { - "tool_description": "API showing all the latest LGBTQ+ News around the World", - "score": { - "avgServiceLevel": 91, - "avgLatency": 20815, - "avgSuccessRate": 91, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "TRW - news": { - "tool_description": "Get millions of news and articles from media sources around the world and in multiple languages ​​in real time. Download news documents with: headlines, dates, authors, media, audiences, advertising value, sentiment and content.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1185, - "avgSuccessRate": 100, - "popularityScore": 7.3, - "__typename": "Score" - } - }, - "PAC API": { - "tool_description": "An API for collecting political articles for Biden and Trump", - "score": { - "avgServiceLevel": 100, - "avgLatency": 6597, - "avgSuccessRate": 100, - "popularityScore": 7.6, - "__typename": "Score" - } - }, - "Crypto News_v3": { - "tool_description": "Get the latest crypto news incl. sentiment analysis and keyword extraction", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1627, - "avgSuccessRate": 100, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "papercliff": { - "tool_description": "Papercliff looks at the world's largest news agencies, reads articles, identifies and shares keywords", - "score": { - "avgServiceLevel": 100, - "avgLatency": 65, - "avgSuccessRate": 100, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "Climate Change API Tutorial": { - "tool_description": "An API showing all the latest Climate Change News around the world", - "score": { - "avgServiceLevel": 89, - "avgLatency": 9243, - "avgSuccessRate": 89, - "popularityScore": 7.8, - "__typename": "Score" - } - }, - "East China News": { - "tool_description": "Api that filters through notable news networks for China, Japan, and Korea news", - "score": { - "avgServiceLevel": 57, - "avgLatency": 1964, - "avgSuccessRate": 57, - "popularityScore": 7.1, - "__typename": "Score" - } - }, - "Pharma Industry Data Collection": { - "tool_description": "ENG: \nOur Pharma Industry Data Collection provides access to millions of news, articles, opinions and reports from media and blogs sources around the world, all in real time. With this comprehensive resource, you can stay up-to-date on a wide range of topics related to the pharmaceutical industry, including information on companies, brands, products, medicines, consumer opinions, legislation, and industry news, among others. Plus, our data collection is available in multiple languages, making...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1207, - "avgSuccessRate": 100, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "Spaceflight News": { - "tool_description": "Spaceflight News is a platform that provides the latest news and updates related to space exploration, space technology, space science, and astronomy. It covers a wide range of topics including spacecraft launches, space missions, space discoveries, space research, space policy, space tourism, and much more. The platform aims to keep its audience informed about the latest developments in the space industry, and it caters to space enthusiasts, professionals, and researchers alike. The platform...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 553, - "avgSuccessRate": 100, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "AI News_v2": { - "tool_description": "This handy tool allows you to access the latest news about artificial intelligence from around the world, all in one place. Whether you're a business interested in keeping up with the latest trends, or just curious about what's going on, the AI news API is perfect for you.", - "score": { - "avgServiceLevel": 27, - "avgLatency": 10100, - "avgSuccessRate": 27, - "popularityScore": 1.9, - "__typename": "Score" - } - }, - "Klimawandel Live": { - "tool_description": "Diese API zeigt die aktuellsten Klimawandel-News von diversen Schweizer Medien.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3656, - "avgSuccessRate": 100, - "popularityScore": 7.3, - "__typename": "Score" - } - }, - "Movie Articles and News": { - "tool_description": "An API that shows you all the latest news happening in and around Hollywood.", - "score": { - "avgServiceLevel": 40, - "avgLatency": 2258, - "avgSuccessRate": 20, - "popularityScore": 1.6, - "__typename": "Score" - } - }, - "Telegrapher": { - "tool_description": "Repost a blog post or article on Telegra.ph from a given URL. Clean up a bit the reading and encourage users to visit official sources at the same time.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 4697, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "News Network": { - "tool_description": "Global network of news.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1032, - "avgSuccessRate": 100, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "Philippine News": { - "tool_description": "An unofficial API to find the latest and top Philippine stories and news.", - "score": { - "avgServiceLevel": 99, - "avgLatency": 483, - "avgSuccessRate": 99, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "BizToc": { - "tool_description": "Official BizToc.com API — The Web's most comprehensive hub for business & finance news.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 550, - "avgSuccessRate": 99, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "Climate Change API_v3": { - "tool_description": "An API showing all the latest climate change news around the world.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 66389, - "avgSuccessRate": 100, - "popularityScore": 5.7, - "__typename": "Score" - } - }, - "getMedia": { - "tool_description": "Get media files", - "score": { - "avgServiceLevel": 0, - "avgLatency": 0, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "Book Cover API": { - "tool_description": "Simple api to get book cover by isbn code.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 453, - "avgSuccessRate": 58, - "popularityScore": 8, - "__typename": "Score" - } - }, - "SB Weather": { - "tool_description": "Weather", - "score": null - }, - "The Onion Api": { - "tool_description": "Pulls JSON data from the onion articles", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3223, - "avgSuccessRate": 100, - "popularityScore": 4.9, - "__typename": "Score" - } - }, - "Latest IPL News": { - "tool_description": "An API showing all the latest IPL News around the world.", - "score": { - "avgServiceLevel": 73, - "avgLatency": 66662, - "avgSuccessRate": 73, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "LIVE TV API": { - "tool_description": "An API that has all live tv stations in Kenya and uganda **NOTE for educational purposes only**", - "score": { - "avgServiceLevel": 100, - "avgLatency": 879, - "avgSuccessRate": 100, - "popularityScore": 9, - "__typename": "Score" - } - }, - "Coronavirus Smartable": { - "tool_description": "The coronavirus Stats and News API offers the latest and historic COVID-19 stats and news information per country or state. ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 118, - "avgSuccessRate": 98, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "Arabic news API": { - "tool_description": "this API gets you headlins and links to the latest news from the most famous arabic news websites such as Aljazeera, BBC Arabic, CNN Arabic, Alarabiya. and more.\nÙ‡Ű°Ű§ Ű§Ù„Ű§ÙŠ ŰšÙŠ ŰąÙŠ ÙŠŰłŰȘ۱ۏŰč ۹۟۱ Ű§Ù„ŰŁŰźŰšŰ§Ű± من ۣۚ۱ŰČ Ű§Ù„Ù…ÙˆŰ§Ù‚Űč Ű§Ù„Ű„ŰźŰšŰ§Ű±ÙŠŰ© Ű§Ù„ŰčŰ±ŰšÙŠŰ©ŰŒ يŰȘم ŰȘŰ­ŰŻÙŠŰ« Ű§Ù„ŰšÙŠŰ§Ù†Ű§ŰȘ ÙˆŰ§Ű¶Ű§ÙŰ© Ù…Ű”Ű§ŰŻŰ± ŰšŰŽÙƒÙ„ Ù…ŰłŰȘÙ…Ű±", - "score": { - "avgServiceLevel": 73, - "avgLatency": 3683, - "avgSuccessRate": 73, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "Sri Lanka News Api": { - "tool_description": "A simple API that allows you to obtain the most recent news from Sri Lankan media sites in Sinhala. ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 80848, - "avgSuccessRate": 97, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "Flixster": { - "tool_description": "This API helps to query for movies, actors, theaters, showtime, etc... to create a site/application, such as : rottentomatoes.com, flixster.com", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1661, - "avgSuccessRate": 100, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "NFT API News": { - "tool_description": "This NFT API will keep you up to date on the NFT space. Built for effeciency.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 6, - "avgSuccessRate": 100, - "popularityScore": 6.7, - "__typename": "Score" - } - }, - "Energy Price News": { - "tool_description": "Tracking multiple news sources for articles about energy prices", - "score": { - "avgServiceLevel": 0, - "avgLatency": 217, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "Newscatcher": { - "tool_description": "API to find news articles by any topic, country, language, website, or keyword", - "score": { - "avgServiceLevel": 100, - "avgLatency": 539, - "avgSuccessRate": 99, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "Instant Cameroon News": { - "tool_description": "Instantly provide the latest news and the latest information on Cameroon. It is the easier way to get latest news about Cameroon.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 25471, - "avgSuccessRate": 60, - "popularityScore": 7, - "__typename": "Score" - } - }, - "Indonesia News": { - "tool_description": "We are focused on delivering data from major news websites in Indonesia.", - "score": { - "avgServiceLevel": 90, - "avgLatency": 141, - "avgSuccessRate": 80, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "Postput": { - "tool_description": "Store & perform on-the-fly operations on your files", - "score": { - "avgServiceLevel": 99, - "avgLatency": 2278, - "avgSuccessRate": 92, - "popularityScore": 9, - "__typename": "Score" - } - }, - "Web Image Storage": { - "tool_description": "Store images in web and get URL back. Deprecated, please use \"Image CDN\" API now.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 989, - "avgSuccessRate": 56, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "Simple File Storage": { - "tool_description": "The easiest cloud file storage api", - "score": { - "avgServiceLevel": 43, - "avgLatency": 1439, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "lab": { - "tool_description": "lab schedule", - "score": null - }, - "Image CDN": { - "tool_description": "Upload images & access them in your application.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1398, - "avgSuccessRate": 77, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "Aniku": { - "tool_description": "Aniku Files Storage", - "score": null - }, - "Bruzu": { - "tool_description": "Image Generation API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2212, - "avgSuccessRate": 100, - "popularityScore": 7.4, - "__typename": "Score" - } - }, - "Youtube video info": { - "tool_description": "\nThe YouTube API is a powerful tool that provides developers with access to a wide range of information about videos on the YouTube platform. With the API, developers can retrieve data such as video views, likes, dislikes, and other relevant information. This allows them to create applications and services that leverage this data to enhance user experiences or perform various analytical tasks.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 119, - "avgSuccessRate": 50, - "popularityScore": 7.7, - "__typename": "Score" - } - }, - "Images Infos - API2": { - "tool_description": "Get palette from image, get metadata from image and extract texts from image", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2334, - "avgSuccessRate": 100, - "popularityScore": 6.8, - "__typename": "Score" - } - }, - "News In Bay": { - "tool_description": "*for my personal study purposes*\nAn API showing all front-page news in the Bay area for the day, keyword can be customized.\neg: https://sfnews-api.herokuapp.com/news/safe (keyword \"safe\")\nScrapping from San Francisco Chronicle / SFGATE / abc7News\nHeroku: https://sfnews-api.herokuapp.com/", - "score": { - "avgServiceLevel": 100, - "avgLatency": 5344, - "avgSuccessRate": 40, - "popularityScore": 7.4, - "__typename": "Score" - } - }, - "Open Library": { - "tool_description": "An unofficial API for Open Library.", - "score": { - "avgServiceLevel": 43, - "avgLatency": 6852, - "avgSuccessRate": 43, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "Online Video Downloader": { - "tool_description": "Free online video downloader for Vimeo, Dailymotion, Twitter, Tiktok, Instagram, Facebook and many other sites.", - "score": { - "avgServiceLevel": 92, - "avgLatency": 712, - "avgSuccessRate": 50, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "tiktok download video ": { - "tool_description": "Tiktok Best Spider. Fast. HD Quality. Without Watermark Download. Video Full Detail. Signature X-Argus,X-Ladon,X-Gorgon \nmail: nb429429@gmail.com\n", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1194, - "avgSuccessRate": 100, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "riordanverse-api": { - "tool_description": "An API for RiordanVerse", - "score": { - "avgServiceLevel": 50, - "avgLatency": 2731, - "avgSuccessRate": 0, - "popularityScore": 0, - "__typename": "Score" - } - }, - "getQRcode": { - "tool_description": "Free QR Code Generator - Online QR Code Maker", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1285, - "avgSuccessRate": 100, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "Vimeo": { - "tool_description": "Vimeo API", - "score": { - "avgServiceLevel": 100, - "avgLatency": 257, - "avgSuccessRate": 100, - "popularityScore": 7.8, - "__typename": "Score" - } - }, - "convm": { - "tool_description": "download video / audio", - "score": { - "avgServiceLevel": 100, - "avgLatency": 688, - "avgSuccessRate": 100, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "Twitch": { - "tool_description": "Retrieve or update Twitch content via REST API. 50char", - "score": { - "avgServiceLevel": 100, - "avgLatency": 29, - "avgSuccessRate": 0, - "popularityScore": 0, - "__typename": "Score" - } - }, - "Instagram Reels and post Downloader": { - "tool_description": "Download instagram reels and post uing API", - "score": { - "avgServiceLevel": 97, - "avgLatency": 1816, - "avgSuccessRate": 97, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "Magisto": { - "tool_description": "Magically transform your videos. Magisto turns your everyday videos into exciting, memorable movies you'll want to watch again and again.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 278, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "Twitch API": { - "tool_description": "Detailed API for twitch. Stream data, streamer data, chat data, streamer cards data etc.\nfor twitch.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 624, - "avgSuccessRate": 100, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "9GAG API (Detailed)": { - "tool_description": "Detailed 9GAG API. Scraping posts, categories, users. Includes download videos/photos.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 602, - "avgSuccessRate": 98, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "YTS.am Torrent": { - "tool_description": "This is a lightweight web service, (REST interface), which provides an easy way to access the YTS website. An API (Application programming interface) is a protocol intended to be used as an interface by software components to communicate with each other. Our API supports many methods, so there should not be a problem coding some nice applications. ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 47, - "avgSuccessRate": 100, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "Colorful": { - "tool_description": "Get random colors with information, convert between color codes, and more.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 27271, - "avgSuccessRate": 88, - "popularityScore": 7.7, - "__typename": "Score" - } - }, - "placekitten": { - "tool_description": "A quick and simple service for getting pictures of kittens for use as placeholders in your designs or code. Just put your image size (width & height) after our URL and you'll get a placeholder.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 233, - "avgSuccessRate": 100, - "popularityScore": 7, - "__typename": "Score" - } - }, - "StreamlineWatch - Streaming Guide": { - "tool_description": "StreamlineWatch's streaming guide APIs for Movies and Shows", - "score": { - "avgServiceLevel": 99, - "avgLatency": 937, - "avgSuccessRate": 93, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "🚀 Cheap YouTube API đŸ”„": { - "tool_description": "100% Uptime & Reliable | Blazing fast | Fully Featured | 1000x cheaper than Youtube API v3", - "score": { - "avgServiceLevel": 98, - "avgLatency": 3935, - "avgSuccessRate": 98, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "AOL On Network": { - "tool_description": "Welcome to The AOL On Network’s API developer documentation. It enables you to integrate our video content, display and functionality into your website.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 393, - "avgSuccessRate": 100, - "popularityScore": 5.9, - "__typename": "Score" - } - }, - "Easy QR Code Generator": { - "tool_description": "Turn any URL or even text into a downloadable and printable QR code with ease.Simply provide a URL or TEXT and the API will generate a QR Code for you. The returned file will be cached for continuous use", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1953, - "avgSuccessRate": 100, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "Giphy": { - "tool_description": "Giphy is an animated GIF search engine.\r\n\r\nThe Giphy API implements a REST-like interface. Connections can be made with any HTTP enabled programming language. The Giphy API also implements CORS, allowing you to connect to Giphy from JavaScript / Web browsers on your own domain.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 251, - "avgSuccessRate": 93, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "Rijksmuseum": { - "tool_description": "The Rijksmuseum is a Dutch national museum dedicated to arts and history in Amsterdam in the Netherlands.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1883, - "avgSuccessRate": 0, - "popularityScore": 0, - "__typename": "Score" - } - }, - "Text-to-Speech (TTS Engine)": { - "tool_description": "The Voice Text-to-Speech (TTS) API allows conversion of textual content to speech easier than ever. Just connect to our Text-to-Speech (TTS) API with a few lines of code and get verbal representation of a textual content.\n\nLanguages Supported: ru, en, de, fr, es, it, nl, zh\nDemo: https://soundcloud.com/company-video/sets/output-audio-samples?si=72cdf2fe56164e038ea002dac1b5bed0&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing", - "score": { - "avgServiceLevel": 100, - "avgLatency": 865, - "avgSuccessRate": 100, - "popularityScore": 8.2, - "__typename": "Score" - } - }, - "Baby Pig Pictures": { - "tool_description": "Jazz up your Applications / content with all the baby pigs it can handle. Random piglet image generator / permalink generator. Create a placeholder system, or default avatars!", - "score": { - "avgServiceLevel": 0, - "avgLatency": 411, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Bing Image Search": { - "tool_description": "An AI service from Microsoft Azure that turns any app into an image search resource.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 493, - "avgSuccessRate": 96, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "Music Trivia": { - "tool_description": "A Music Trivia API driven by listeners of ZPlayer, a media player on Android", - "score": { - "avgServiceLevel": 100, - "avgLatency": 92125, - "avgSuccessRate": 100, - "popularityScore": 7.6, - "__typename": "Score" - } - }, - "Pikwy": { - "tool_description": "Capture a website screenshot online", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1016, - "avgSuccessRate": 100, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "Hacker News": { - "tool_description": "This is the first iteration of YCombinator's Hacker News API which provides read only access to Hacker News data near real-time, including stories, comments, user data, top stories, etc.", - "score": null - }, - "public-url-share": { - "tool_description": "public-url-share", - "score": { - "avgServiceLevel": 98, - "avgLatency": 2931, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "Youtube Video/Stream Download": { - "tool_description": "Get Download Youtube Audio/Video/Captions/shorts Link & stream", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2228, - "avgSuccessRate": 100, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "NewApi": { - "tool_description": "new", - "score": { - "avgServiceLevel": 93, - "avgLatency": 996, - "avgSuccessRate": 80, - "popularityScore": 6.9, - "__typename": "Score" - } - }, - "Images Infos - API1": { - "tool_description": "Get screenshot or PDF from a website", - "score": { - "avgServiceLevel": 100, - "avgLatency": 6718, - "avgSuccessRate": 80, - "popularityScore": 6.5, - "__typename": "Score" - } - }, - "Long Translator": { - "tool_description": "Translate text into other languages. \nCan translate long texts, fast processing, cost-effective.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 604, - "avgSuccessRate": 100, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Translate it": { - "tool_description": "Api translator, with this api you could get translate your text easily from one of the supported languages to another one", - "score": { - "avgServiceLevel": 100, - "avgLatency": 63, - "avgSuccessRate": 100, - "popularityScore": 9, - "__typename": "Score" - } - }, - "Simple & Elegant Translation Service": { - "tool_description": "Simple & Elegant Translation Service. This translation service is similar to similar. You can actually do a lot of things with the help of the Google Translate API ranging from detecting languages to simple text translation, setting source and destination languages, and translating entire lists of text phrases", - "score": { - "avgServiceLevel": 50, - "avgLatency": 459, - "avgSuccessRate": 50, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "Microsoft Translator Text": { - "tool_description": "An AI service from Microsoft Azure that enables you to easily conduct real-time text translation.", - "score": { - "avgServiceLevel": 83, - "avgLatency": 752, - "avgSuccessRate": 77, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "Text Translator_v2": { - "tool_description": "Translate text to 100+ languages ​. Fast processing, cost saving. Free up to 100,000 characters per month", - "score": { - "avgServiceLevel": 100, - "avgLatency": 399, - "avgSuccessRate": 99, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "Bidirectional Text Language Translation": { - "tool_description": "Per request pricing, not character based. 30 languages to translate to and from. Simple request and response.", - "score": { - "avgServiceLevel": 0, - "avgLatency": 1141, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Deep Translate": { - "tool_description": "100x cheaper than Google Translate. Same API. Same quality.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 910, - "avgSuccessRate": 100, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "Neuro High-quality Translation": { - "tool_description": "High-quality text translation based on neural networks and our own multi-model", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3264, - "avgSuccessRate": 100, - "popularityScore": 7.7, - "__typename": "Score" - } - }, - "Fast And Highly Accurate Language Detection": { - "tool_description": "Fast and highly accurate (99.9% accuracy for most major languages*) language detection in 176 languages based on the Fast Text Machine Learning model. Please see the \"About\" section for details on languages and accuracy data.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 235, - "avgSuccessRate": 89, - "popularityScore": 8.2, - "__typename": "Score" - } - }, - "navicon1": { - "tool_description": "sg", - "score": null - }, - "Translef - translator": { - "tool_description": "Translate text to 85+ languages. 0.3$ for million symbols \nFree translation of 50.000 characters.\nSimple and intuitive API.\nFor all questions, please contact telegram - https://t.me/translef", - "score": { - "avgServiceLevel": 100, - "avgLatency": 552, - "avgSuccessRate": 88, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "English synonyms": { - "tool_description": "Get all english synonyms from a given word", - "score": { - "avgServiceLevel": 71, - "avgLatency": 112376, - "avgSuccessRate": 42, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "Translate_v3": { - "tool_description": "Easy and reliable Machine Translation and Language Detection", - "score": { - "avgServiceLevel": 100, - "avgLatency": 343, - "avgSuccessRate": 100, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "Google Translate_v3": { - "tool_description": "Use Google Translate API, Same quality result but x100 cheaper. Fast and stable translation service", - "score": { - "avgServiceLevel": 100, - "avgLatency": 519, - "avgSuccessRate": 100, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "Tribal Mail - Translate": { - "tool_description": "A fast, affordable, and accurate translation API for publishers, websites, and businesses. Translate into 75 different languages/variants using one of the most advanced translation machine learning algorithms in the world.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2021, - "avgSuccessRate": 100, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "AI Translation APIs": { - "tool_description": "The AI Translate API supports more than 60 different languages. Obtain a better translation! The biggest translation services in the world are the AI Translate APIs. Real-time language translation is available. PLAIN/HTML/JSON/XML/SRT/YAML/ANDROID/IOS/XAMARIN It contains many billions of professionally translated words.", - "score": { - "avgServiceLevel": 99, - "avgLatency": 847, - "avgSuccessRate": 83, - "popularityScore": 9, - "__typename": "Score" - } - }, - "JoJ Translate": { - "tool_description": "Fast and scalable API service from the world's most used translation service!", - "score": { - "avgServiceLevel": 50, - "avgLatency": 652, - "avgSuccessRate": 25, - "popularityScore": 1.7, - "__typename": "Score" - } - }, - "Bing_Translate": { - "tool_description": "Dịch", - "score": null - }, - "13f918yf19o1t1f1of1t9": { - "tool_description": "rrrrrrr", - "score": { - "avgServiceLevel": 0, - "avgLatency": 1367, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "ceviri": { - "tool_description": "dil ceviri", - "score": null - }, - "AIbit translator": { - "tool_description": "✓ Blazing Speed, Reliability, Availability.\n✓ 110+ Languages Supported.\n✓ Stay Ahead with Regular Weekly Updates.\n✓ Join our Discord: https://discord.gg/tawdu5rG", - "score": { - "avgServiceLevel": 100, - "avgLatency": 672, - "avgSuccessRate": 98, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "Indic-Translator": { - "tool_description": "Indic Translator is an advance AI based Translator Indian languages translator API. It has outperformed Google and other translators for tricky Indian languages. Indic Translator has been especially designed for Indian languages, and has been trained on advance deep learning algorithm to perform well on nuanced Indian languages.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1387, - "avgSuccessRate": 100, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "Cheap Translate": { - "tool_description": "translate via google translate, bing translate", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1170, - "avgSuccessRate": 100, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "01": { - "tool_description": "translation", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2103, - "avgSuccessRate": 100, - "popularityScore": 6.9, - "__typename": "Score" - } - }, - "Dictionary by API-Ninjas": { - "tool_description": "Look up any word in the English dictionary. See more info at https://api-ninjas.com/api/dictionary.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 463, - "avgSuccessRate": 99, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "Language Detection_v2": { - "tool_description": "Detection of all possible languages with probability scores.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1124, - "avgSuccessRate": 87, - "popularityScore": 7.3, - "__typename": "Score" - } - }, - "Translate All Languages": { - "tool_description": "Translate All Language - Text Translator\n\n100x cheaper than Google Translate. Same API. Same quality. Translate All Languages provides a simple API for translating plain text between any of 100+ supported languages. If you don’t know what language the text is written in, our API will detect the language of the original request. \n\ntelegram DM: @justapi1", - "score": { - "avgServiceLevel": 100, - "avgLatency": 990, - "avgSuccessRate": 100, - "popularityScore": 7.3, - "__typename": "Score" - } - }, - "Nitro": { - "tool_description": "The Nitro API provides automated access to Nitro, a professional human-powered translation service with support for 70+ languages. ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 313, - "avgSuccessRate": 9, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "Translate Language": { - "tool_description": "Translate Language - Quickly translate your text into all the different languages .\n\nThe Translate Language API is a service that enables the translation of a text passage into various languages. This API allows users to input a text that needs to be translated and select the desired target language.\n\nThe API provides a convenient way to automatically translate text between different languages without the need for manual translation work. By utilizing the API, users can translate sentences, p...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 563, - "avgSuccessRate": 100, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "Translator": { - "tool_description": "Text Translation", - "score": { - "avgServiceLevel": 33, - "avgLatency": 40299, - "avgSuccessRate": 33, - "popularityScore": 6.4, - "__typename": "Score" - } - }, - "RushTranslate": { - "tool_description": "Human powered document translation API.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 687, - "avgSuccessRate": 7, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "Translate Plus": { - "tool_description": "Dynamically Translate between languages with the Translate Plus API. Our API is much cheaper & faster than Google Translate and other translation providers! Get Started Free!\nIf you are using a very high volume and with our new service, you can translate more efficiently and cost-effectively on https://translateplus.io", - "score": { - "avgServiceLevel": 100, - "avgLatency": 417, - "avgSuccessRate": 99, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "Anime Voice Waifu Ai Api": { - "tool_description": "With this app, you can easily convert Japanese text to voice", - "score": { - "avgServiceLevel": 93, - "avgLatency": 50441, - "avgSuccessRate": 93, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "Webit Language": { - "tool_description": "A.I. Text Paraphrase (Rewrite), Dictionary (Lookup, Examples, Bilingual, Synonyms, Antonyms), Key Phrases, Sentences Breaker.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2518, - "avgSuccessRate": 100, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "Rapid Translate": { - "tool_description": "Translate texts between 50+ natural languages.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 267, - "avgSuccessRate": 100, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "WebLasso": { - "tool_description": "Scan the web for a diverse range of data including subdomains, IP Addresses, web technologies and emails!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 336, - "avgSuccessRate": 70, - "popularityScore": 6.8, - "__typename": "Score" - } - }, - "XSS Shield": { - "tool_description": "The XSS Shield API provides a realtime cross-site scripting (XSS) detection service that scans input data for suspicious characters and prevents XSS attacks. It offers two endpoints for handling GET and POST requests.", - "score": { - "avgServiceLevel": 95, - "avgLatency": 198, - "avgSuccessRate": 38, - "popularityScore": 8.2, - "__typename": "Score" - } - }, - "Greip": { - "tool_description": "Deploy AI-Powered modules to prevent payment fraud", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1147, - "avgSuccessRate": 100, - "popularityScore": 7.1, - "__typename": "Score" - } - }, - "NetDetective": { - "tool_description": "NetDetective is an easy-to-use API that provides information about an IP address, including, but not limited to, whether it's known for spam, brute-force attacks, bot-nets, VPN endpoints, data center endpoints, and more. With DetectiveIP, you can quickly and easily gather information about any IP address to help filter requests and avoid potential attacks.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1212, - "avgSuccessRate": 100, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "Token Scanner Multichain | Honeypot Checker Multichain": { - "tool_description": "Token scanner and honeypot checker multichain. Buy/sell tax, suspicious functions, liquidity, ownership etc.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 345, - "avgSuccessRate": 100, - "popularityScore": 9, - "__typename": "Score" - } - }, - "TweetFeed": { - "tool_description": "Free feed with IOCs - malicious URLs, domains, IPs, and hashes. [Website: https://tweetfeed.live]", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1107, - "avgSuccessRate": 100, - "popularityScore": 7.8, - "__typename": "Score" - } - }, - "Auther Check": { - "tool_description": "Plug and play the facial authentication into: point of sale, mobile app, self-checkouts, kiosk, ATM.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 465, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "Microsoft Computer Vision": { - "tool_description": "An AI service from Microsoft Azure that analyzes content in images", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1863, - "avgSuccessRate": 93, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Brand Recognition": { - "tool_description": "This ready-to-use API provides high-accuracy brand detection and logo recognition. [![Examples](https://img.shields.io/badge/View%20examples-gray?logo=gitlab&style=flat)](https://gitlab.com/api4ai/examples/brand-det) [![API4AI](https://img.shields.io/badge/api4.ai%20platform-fee33c?logo=icloud&flat&logoColor=black)](https://api4.ai/apis/brand-recognition?utm_source=brand_det_rapidapi&utm_medium=endpoints&utm_campaign=rapidapi) [![Telegram](https://img.shields.io/badge/-Telegram%20demo-white?l...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 967, - "avgSuccessRate": 100, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "VIN Recognition/Decoder": { - "tool_description": "This API extract vin from a ID cards, labels, receipts, invoices, documents, barcodes, etc and returns the information such as the manufacturer, model, year, country of origin and much more.. ", - "score": { - "avgServiceLevel": 50, - "avgLatency": 13429, - "avgSuccessRate": 50, - "popularityScore": 7.8, - "__typename": "Score" - } - }, - "General Detection": { - "tool_description": "This ready-to-use API offers high-accuracy detection of different types of objects, framing them with bounding boxes and predicting their class. [![Examples](https://img.shields.io/badge/View%20examples-gray?logo=gitlab&style=flat)](https://gitlab.com/api4ai/examples/general-det) [![API4AI](https://img.shields.io/badge/api4.ai%20platform-fee33c?logo=icloud&flat&logoColor=black)](https://api4.ai/apis/object-detection?utm_source=general_det_rapidapi&utm_medium=endpoints&utm_campaign=rapidapi) ...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1070, - "avgSuccessRate": 99, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Everypixel Image Recognition": { - "tool_description": "Use all the power of AI and machine learning to reduce your costs on image recognition and moderation in your apps\tand products. The Everypixel Image Recognition is a set of pre-trained models available through the API. Thanks to easy algorithms assignment, developers can start using them once they sign up.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 879, - "avgSuccessRate": 100, - "popularityScore": 7.1, - "__typename": "Score" - } - }, - "Document Image Validation": { - "tool_description": "Ensure you have a high percentage of right-first-time document collection and a straight pass-through by validating in real-time that the documents your customers submit are the same you expect them to be.\n\nThe Document Validation API enables you to qualify the images before your customers submit them to you, in terms of classification of the document, clarity of document, and whether a document has a face present on it or not.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 105, - "avgSuccessRate": 97, - "popularityScore": 7.5, - "__typename": "Score" - } - }, - "Label Detection": { - "tool_description": "Extract labels from image using (google vision label detection) ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 380, - "avgSuccessRate": 100, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "Aspose OCR Cloud": { - "tool_description": "Text Extraction REST API that uses OCR to recognize and extract characters of various languages from images.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 408, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Voltox OCR": { - "tool_description": "Ocr for voltox ocr", - "score": { - "avgServiceLevel": 100, - "avgLatency": 358, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Fashion": { - "tool_description": "This Fashion API offers an image class-prediction algorithm for clothes and accessories. [![Examples](https://img.shields.io/badge/View%20examples-gray?logo=gitlab&style=flat)](https://gitlab.com/api4ai/examples/fashion) [![API4AI](https://img.shields.io/badge/api4.ai%20platform-fee33c?logo=icloud&flat&logoColor=black)](https://api4.ai/apis/fashion?utm_source=fashion_rapidapi&utm_medium=endpoints&utm_campaign=rapidapi) [![Telegram](https://img.shields.io/badge/-Telegram%20demo-white?logo=tele...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1149, - "avgSuccessRate": 100, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "Face Recognition": { - "tool_description": "All-in-one Face recognition & analysis with dedicated database. Output location of human faces, recognized UID, liveness detection, age, gender, expression (emotion), and facemask detection", - "score": { - "avgServiceLevel": 78, - "avgLatency": 750, - "avgSuccessRate": 77, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Mantis Object Detection": { - "tool_description": "Reliable and Accurate Face and Object Detection via ResNet-50", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2416, - "avgSuccessRate": 90, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "NSFW": { - "tool_description": "This API processes images and detects sexual content in them, marking the images as Safe For Work (SFW) or Not Safe For Work (NSFW). [![Examples](https://img.shields.io/badge/View%20examples-gray?logo=gitlab&style=flat)](https://gitlab.com/api4ai/examples/nsfw) [![API4AI](https://img.shields.io/badge/api4.ai%20platform-fee33c?logo=icloud&flat&logoColor=black)](https://api4.ai/apis/nsfw?utm_source=nsfw_rapidapi&utm_medium=endpoints&utm_campaign=rapidapi) [![Telegram](https://img.shields.io/ba...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1094, - "avgSuccessRate": 100, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "Background Remover": { - "tool_description": "PixCleaner offers a REST API that allows you to easily use and interact with our service programmatically. Using our HTTP interface integrate our background removal features into any business or application.", - "score": { - "avgServiceLevel": 40, - "avgLatency": 775, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "Liquor Recognition": { - "tool_description": "Recognize labels on liquor bottles quickly, with over 25,000 different labels to choose from. The results include information on the liquor brand and the kind of spirit.", - "score": { - "avgServiceLevel": 60, - "avgLatency": 9333, - "avgSuccessRate": 50, - "popularityScore": 7.8, - "__typename": "Score" - } - }, - "Masks detection": { - "tool_description": "High-accuracy solution for medical masks detection. This solution analyzes a given image, detects people in it and reports if they wear protective masks or not. [![Examples](https://img.shields.io/badge/View%20examples-gray?logo=gitlab&style=flat)](https://gitlab.com/api4ai/examples/med-mask) [![API4AI](https://img.shields.io/badge/api4.ai%20platform-fee33c?logo=icloud&flat&logoColor=black)](https://api4.ai/apis/mask-detection?utm_source=med_mask_rapidapi&utm_medium=endpoints&utm_campaign=rap...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1463, - "avgSuccessRate": 99, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "Web Detection": { - "tool_description": "Extract list of entities, full matches urls, partial matches urls, visual matches urls, pages, locale and dimensions from image using (google vision web detection)", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2280, - "avgSuccessRate": 100, - "popularityScore": 7.4, - "__typename": "Score" - } - }, - "Face Detection_v3": { - "tool_description": "This ready-to-use API provides a pack of options in human face detection: face and landmarks detection, face re-identification of an already detected face. [![Examples](https://img.shields.io/badge/View%20examples-gray?logo=gitlab&style=flat)](https://gitlab.com/api4ai/examples/face-analyzer) [![API4AI](https://img.shields.io/badge/api4.ai%20platform-fee33c?logo=icloud&flat&logoColor=black)](https://api4.ai/apis/face-analysis?utm_source=face_analyzer_rapidapi&utm_medium=endpoints&utm_campaign...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 898, - "avgSuccessRate": 100, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "NSFW Image Classification_v2": { - "tool_description": "Use our Content Moderation API to flag possible inappropriate/ nude / adult content in your images.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 595, - "avgSuccessRate": 100, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "OCR": { - "tool_description": "This API processes images and performs Optical Character Recognition. [![Examples](https://img.shields.io/badge/View%20examples-gray?logo=gitlab&style=flat)](https://gitlab.com/api4ai/examples/ocr) [![API4AI](https://img.shields.io/badge/api4.ai%20platform-fee33c?logo=icloud&flat&logoColor=black)](https://api4.ai/apis/ocr?utm_source=ocr_rapidapi&utm_medium=endpoints&utm_campaign=rapidapi) [![Telegram](https://img.shields.io/badge/-Telegram%20demo-white?logo=telegram&style=flat)](https://t.me/...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1234, - "avgSuccessRate": 100, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Image Text Recognition": { - "tool_description": "Recognizing text content from images", - "score": { - "avgServiceLevel": 97, - "avgLatency": 2253, - "avgSuccessRate": 74, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "Fast Hcaptcha Solver": { - "tool_description": "Solves hcaptcha using service", - "score": { - "avgServiceLevel": 100, - "avgLatency": 419, - "avgSuccessRate": 100, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "Fast Recaptcha V2 Solver": { - "tool_description": "Solves Recaptcha V2 using service", - "score": { - "avgServiceLevel": 100, - "avgLatency": 360, - "avgSuccessRate": 100, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "OCR - Separate Text From Images": { - "tool_description": "Our OCR - Separate Text From Images API allows you to quickly and accurately extract text from images. Using advanced image processing and optical character recognition technology, our API can identify and separate text from any image format, including scanned documents, photographs, and screenshots. With our easy-to-use API, you can integrate this functionality into your own applications or services, saving time and effort while improving accuracy and efficiency in your workflow.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1495, - "avgSuccessRate": 100, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "General Classification": { - "tool_description": "This Image Labelling API is a ready-to-use solution for image classification. As an output, it gives you the probability of a certain class(es) to be present in a corresponding input image. [![Examples](https://img.shields.io/badge/View%20examples-gray?logo=gitlab&style=flat)](https://gitlab.com/api4ai/examples/general-cls) [![API4AI](https://img.shields.io/badge/api4.ai%20platform-fee33c?logo=icloud&flat&logoColor=black)](https://api4.ai/apis/image-labelling?utm_source=general_cls_rapidapi&u...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 943, - "avgSuccessRate": 100, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Parking places": { - "tool_description": "Analize image to get info about parking places using machine learning!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 330, - "avgSuccessRate": 100, - "popularityScore": 9, - "__typename": "Score" - } - }, - "Wine Recognition": { - "tool_description": "This ready-to-use API provides recognition of labels on wine bottles covering more than 400 000 different labels. The results contain information about the brand of wine and its type. [![Examples](https://img.shields.io/badge/View%20examples-gray?logo=gitlab&style=flat)](https://gitlab.com/api4ai/examples/wine-rec) [![API4AI](https://img.shields.io/badge/api4.ai%20platform-fee33c?logo=icloud&flat&logoColor=black)](https://api4.ai/apis/wine-rec?utm_source=wine_rec_rapidapi&utm_medium=endpoints...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1984, - "avgSuccessRate": 100, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "climate data": { - "tool_description": "climate data worldwide", - "score": { - "avgServiceLevel": 100, - "avgLatency": 950, - "avgSuccessRate": 100, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "havo": { - "tool_description": "obhavouchun", - "score": null - }, - "RapidWeather": { - "tool_description": "The proprietary convolutional neural network collects and processes wide range of data sources to cover any location and consider the local nuances of climate.\n\nWe collect and process weather data from different sources such as global and local weather models, satellites, radars and vast network of weather stations.\n\nFor each point on the globe, RapidWeather provides historical, current and forecasted weather data via light-speed APIs.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 793, - "avgSuccessRate": 99, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "Air Quality": { - "tool_description": "Retrieve current, forecasted, and historical air quality for any point in the world.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 439, - "avgSuccessRate": 99, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Aviation Weather Center": { - "tool_description": "This API provides official aviation weather data, including SIGMETs, AIRMETs, METARs, TAFs and PIREPs from NOAA, available on aviationweather.gov", - "score": { - "avgServiceLevel": 100, - "avgLatency": 120, - "avgSuccessRate": 100, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "National Weather Service": { - "tool_description": "National Weather Service API (api.weather.gov) NOAA (National Oceanic and Atmospheric Administration) provides national weather data as well as past data.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 236, - "avgSuccessRate": 92, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "World Weather Online API": { - "tool_description": "Free Weather API and Geo API for worldwide locations, hourly weather, 14-day weather, historical weather, and Marine and Ski weather API for developers and businesses in XML and JSON format.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 278, - "avgSuccessRate": 100, - "popularityScore": 9, - "__typename": "Score" - } - }, - "The Weather API": { - "tool_description": "Get the updated and hyper-accurate weather/aqi information of any city. ", - "score": { - "avgServiceLevel": 94, - "avgLatency": 3285, - "avgSuccessRate": 94, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "Peak Conditions": { - "tool_description": "Local weather reports are not accurate enough for climbing mountains. Get weather forecasts for the summit of over 10,000 mountains around the world.", - "score": { - "avgServiceLevel": 15, - "avgLatency": 1075, - "avgSuccessRate": 15, - "popularityScore": 2.2, - "__typename": "Score" - } - }, - "Indonesia Latest Weather and Earthquake": { - "tool_description": "This API provides Weather forecast data for districts and cities in Indonesia within 3 days and data on earthquake events that occur throughout Indonesia.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 762, - "avgSuccessRate": 100, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "WeatherAPI.com": { - "tool_description": "WeatherAPI.com is a powerful fully managed free weather and geolocation API provider that provides extensive APIs that range from the weather forecast, historical weather, future weather, weather alerts, air quality data, IP lookup, and astronomy through to sports, time zone, and geolocation.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 175, - "avgSuccessRate": 90, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "Qwiper Weather": { - "tool_description": "Ajoutez les donnĂ©es mĂ©tĂ©orologiques d'aujourd'hui Ă  votre application.", - "score": null - }, - "Groundhog Day API": { - "tool_description": "The GROUNDHOG-DAY.com API is the leading data source for North America's prognosticating groundhogs.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 696, - "avgSuccessRate": 91, - "popularityScore": 7.6, - "__typename": "Score" - } - }, - "OikoWeather": { - "tool_description": "Hourly time-series weather data for any location from 1950", - "score": { - "avgServiceLevel": 100, - "avgLatency": 865, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "Sunrise Sunset Times": { - "tool_description": "Get sunrise and sunset times using date, latitude, and longitude.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 560, - "avgSuccessRate": 100, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Wavebase": { - "tool_description": "Wave, Weather and Tide Conditions for any spot on the Ocean Surface.\n\nXYZ Tiles for Global Wave Conditions\n\nhttps://wavebase.app", - "score": { - "avgServiceLevel": 45, - "avgLatency": 1222, - "avgSuccessRate": 27, - "popularityScore": 1.9, - "__typename": "Score" - } - }, - "Vision Weather Map": { - "tool_description": "Obtain weather forecast and forecast for diverse cities.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 741, - "avgSuccessRate": 100, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "Ouranos": { - "tool_description": "🚀 đ— đ—Œđ˜€đ˜ đ—°đ—Œđ—șđ—œđ—čđ—Č𝘁đ—Č 𝗔𝗣𝗜 đ—¶đ—» đ—źđ˜€đ˜đ—żđ—Œđ—»đ—Œđ—ș𝘆: 7day and 48hour forecast, seeing and transparency, Predict feature, planet currently visible, moon phase and illumination.\n\nComplete Documentation: https://amusing-attic-3a5.notion.site/Ouranos-API-documentation-eef920508881484983e92f2dc7a2f839", - "score": { - "avgServiceLevel": 100, - "avgLatency": 666, - "avgSuccessRate": 100, - "popularityScore": 7.7, - "__typename": "Score" - } - }, - "Plant Hardiness Zone": { - "tool_description": "Retrieve the USDA Plant Hardiness Zone for a ZIP code", - "score": { - "avgServiceLevel": 100, - "avgLatency": 178, - "avgSuccessRate": 100, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "WeatherTest": { - "tool_description": "Get random weather", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1116, - "avgSuccessRate": 100, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "weather forecast 14 days": { - "tool_description": "weather forecast world wide 14 days 6hourly", - "score": { - "avgServiceLevel": 100, - "avgLatency": 671, - "avgSuccessRate": 100, - "popularityScore": 8.3, - "__typename": "Score" - } - }, - "Foreca Weather": { - "tool_description": "Everything you need to build a weather app", - "score": { - "avgServiceLevel": 100, - "avgLatency": 152, - "avgSuccessRate": 99, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "Open Weather Map": { - "tool_description": "Open Weather Map", - "score": { - "avgServiceLevel": 100, - "avgLatency": 258, - "avgSuccessRate": 0, - "popularityScore": 0.4, - "__typename": "Score" - } - }, - "Air Quality API": { - "tool_description": "Retrieve current, forecasted, and extensive measurement data for any city in the world!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 8, - "avgSuccessRate": 100, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "Testing for My Use": { - "tool_description": "Testing for My Use", - "score": { - "avgServiceLevel": 100, - "avgLatency": 144, - "avgSuccessRate": 100, - "popularityScore": 8.2, - "__typename": "Score" - } - }, - "OpenWeather": { - "tool_description": "Openweather", - "score": { - "avgServiceLevel": 100, - "avgLatency": 93, - "avgSuccessRate": 88, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "Monitoring Syatem": { - "tool_description": "Monitor The Weather Details", - "score": { - "avgServiceLevel": 100, - "avgLatency": 8, - "avgSuccessRate": 100, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Weather by API-Ninjas": { - "tool_description": "Get the latest weather data for any region in the world. See more info at https://api-ninjas.com/api/weather.", - "score": { - "avgServiceLevel": 78, - "avgLatency": 3528, - "avgSuccessRate": 77, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "History": { - "tool_description": "Get 20 years historical weather data in Europe + Pollen + UV + Air Quality data", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1625, - "avgSuccessRate": 77, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "KayuloWeather": { - "tool_description": "[DISCOUNT] Weather forecasts to the minute, weather alerts, historical data and astronomy data.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1525, - "avgSuccessRate": 45, - "popularityScore": 8, - "__typename": "Score" - } - }, - "Indonesia Most Accurate Weather and Earthquake": { - "tool_description": "Provide most accurate data of Indonesian cities weather and forecast plus latest earthquake alert.\n\nPrakiraan cuaca, suhu udara, kelembapan udara, kecepatan angin, dan arah angin untuk kota-kota besar di 34 provinsi di Indonesia dalam waktu 3 harian dan gempa terbaru dengan format JSON yang lebih ramah.", - "score": { - "avgServiceLevel": 45, - "avgLatency": 226, - "avgSuccessRate": 45, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "Ambee Air Quality": { - "tool_description": "Global hyperlocal real-time air quality API for 1M+ postcodes. Test an API call. Get accurate & actionable air quality data.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 257, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "Air Quality by API-Ninjas": { - "tool_description": "Get current air quality data for any region. See more info at See more info at https://api-ninjas.com/api/airquality.", - "score": { - "avgServiceLevel": 84, - "avgLatency": 1508, - "avgSuccessRate": 82, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Ski Resort Forecast": { - "tool_description": "Forecast and current snow conditions for nearly every ski resort. Perfect spelling of resort names is NOT required in most cases.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1821, - "avgSuccessRate": 100, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "NOAA Tides": { - "tool_description": "United States NOAA tide height and time predictions in JSON format.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 373, - "avgSuccessRate": 96, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "Hourly Weather Report of Hong Kong": { - "tool_description": "Hourly Weather Report of Hong Kong with rainfall, UV index, humidity, and temperature.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 441, - "avgSuccessRate": 100, - "popularityScore": 7.4, - "__typename": "Score" - } - }, - "Stormglass Complete": { - "tool_description": " API to Complete Stormglass Weather, Bio, Tides, Astronomy, Solar, and Elevation", - "score": { - "avgServiceLevel": 87, - "avgLatency": 625, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "123": { - "tool_description": "2b132288557021aea38577c246496542", - "score": null - }, - "Weather API - By Any City": { - "tool_description": "The API provides current weather information for a specific city worldwide. It allows users to retrieve up-to-date information on weather conditions, such as temperature, humidity, wind speed, and precipitation, for a specified location. ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1582, - "avgSuccessRate": 100, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "weather_v13": { - "tool_description": "weather api", - "score": { - "avgServiceLevel": 100, - "avgLatency": 422, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Visual Crossing Weather": { - "tool_description": "Visual Crossing Weather API provides instant access to both historical weather records and weather forecast data", - "score": { - "avgServiceLevel": 100, - "avgLatency": 420, - "avgSuccessRate": 100, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "Weather_v6": { - "tool_description": "Current weather data API, and Weather forecast API.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 545, - "avgSuccessRate": 100, - "popularityScore": 7.4, - "__typename": "Score" - } - }, - "Easy Weather": { - "tool_description": "Detailed current conditions, hourly forecasts, daily forecasts, and weather alerts by latitude and longitude in JSON format.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 310, - "avgSuccessRate": 100, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "APJOY-Weather Forecast": { - "tool_description": "APJOY-Weather Forecast is a comprehensive and reliable weather forecasting API tailored for your location. Access real-time data, including temperature, humidity, wind speed, and precipitation, as well as short-term and long-term forecasts. Plan your day effortlessly with hourly updates and stay ahead with our 7-day and 14-day predictions. Ideal for developers and businesses in sectors like travel, agriculture, event planning, and more. Enhance your applications and services with accurate, lo...", - "score": { - "avgServiceLevel": 83, - "avgLatency": 62784, - "avgSuccessRate": 61, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Cloud Cast": { - "tool_description": "Cloudcast is a simple and efficient API built with Node.js and Express, designed to provide real-time weather information for any city in the world. It is able to fetch and deliver current weather conditions including temperature, humidity, wind speed, and other vital meteorological data.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1651, - "avgSuccessRate": 86, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "Sun Seeker API": { - "tool_description": "Get live solar position (azimuth and elevation) with a simple API request for given Latitude and Longitude\n", - "score": { - "avgServiceLevel": 100, - "avgLatency": 652, - "avgSuccessRate": 100, - "popularityScore": 9, - "__typename": "Score" - } - }, - "MagicMirror": { - "tool_description": "MagicMirror", - "score": { - "avgServiceLevel": 100, - "avgLatency": 48, - "avgSuccessRate": 100, - "popularityScore": 7.3, - "__typename": "Score" - } - }, - "Forecast": { - "tool_description": "Get 16 days weather forecast data - worldwide - geographical coordinates...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 110, - "avgSuccessRate": 99, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "Ambee Water Vapor Data": { - "tool_description": "World’s first ever water vapor API. Integrate water vapor API for global real-time water vapor information. Test an API call. Get accurate & actionable data insights.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 224, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "Weather with AI": { - "tool_description": "Global weather forecast powered by Artificial Intelligence.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3602, - "avgSuccessRate": 100, - "popularityScore": 6.8, - "__typename": "Score" - } - }, - "daily limit check": { - "tool_description": "daily limit check", - "score": { - "avgServiceLevel": 100, - "avgLatency": 7, - "avgSuccessRate": 100, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "CurrencyConverter": { - "tool_description": "Test api", - "score": null - }, - "Koppen Climate Classification": { - "tool_description": "Get the Köppen climate classificatin for any location in the world using latitude and longitude. Results in JSON format.", - "score": { - "avgServiceLevel": 99, - "avgLatency": 525, - "avgSuccessRate": 91, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "AI Weather by Meteosource": { - "tool_description": "Accurate hyper-local weather forecasts, powered by our cutting-edge machine learning (ML) models. Historical weather, current weather, weather statistics , and hour-by-hour forecast - all weather data updated in real-time!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 487, - "avgSuccessRate": 89, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "weather_v14": { - "tool_description": "weather forecast", - "score": { - "avgServiceLevel": 100, - "avgLatency": 348, - "avgSuccessRate": 0, - "popularityScore": 0, - "__typename": "Score" - } - }, - "Tank01 NFL Live In-Game Real Time Statistics NFL": { - "tool_description": "NFL Live, In-Game Fantasy Stats - NFL (National Football League). Delivering Accurate Real Time Game Statistics. Updated Rosters/Player Information, Current Schedules, and Updated Standings immediately after every game. Very Useful for Fantasy Football Apps. \n\nFully updated with team schedules/games for 2023-2024\n\nNOW ALSO WITH BETTING / GAMBLING ODDS", - "score": { - "avgServiceLevel": 100, - "avgLatency": 130, - "avgSuccessRate": 100, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "2PEAK.com Dynamic TRAINING PLANS for cycling running and Triathlon": { - "tool_description": "Our API enables third-party developers to build applications using 2PEAK's Dynamic Training Platform. You are free to build for the Web, desktops, or mobile devices. Learn how the authentication works and then read the documentation to get started. Please read our API Guidelines before getting started. Monetize your app by creating personalized dynamic and adaptive training plans! The 2PEAK API allows developers to connect with everything 2PEAK offers. From uploading activities to creating state of the art personal dynamic and adaptive training plans, the 2PEAK API opens a new world. Having trouble coming up with an idea for an app? Here are some things we would love to see built: - Mobile clients: develop mobile apps for iPhone, Android, Windows Phone and other devices - Nutrition: integrate calories burned from 2PEAK trainings with intake from a nutrition site - Bulk import: import your history from other services (Nike+, Garmin, other online logs) - Connected Objects : integrate 2PEAK in any connected object you can think of No limits... unless your imagination is !", - "score": null - }, - "Sports Betting API": { - "tool_description": "Get up and running in less than 5 minutes with our comprehensive developer documentation. Get Start - https://bet365soft.com/docs", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1861, - "avgSuccessRate": 100, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "FDJ": { - "tool_description": "Games and pre-game Odds for FDJ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 59, - "avgSuccessRate": 100, - "popularityScore": 6.5, - "__typename": "Score" - } - }, - "All data": { - "tool_description": "all sports data", - "score": null - }, - "Basketball Data": { - "tool_description": "Broadage Basketball API can deliver any type of data for a basketball match, tournament or team; including livescores, play-by-play, boxscore, match statistics & many more. Our Basketball Coverage includes 100+ tournaments from all around the world with in-depth coverage, giving you the opportunity to present the best sports data to users located anywhere.
This is a limited version in RapidApi. Please, click here to start your Free Trial and try the endpoints with live data now!", - "score": { - "avgServiceLevel": 99, - "avgLatency": 140, - "avgSuccessRate": 99, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "Russian Premier League Standings": { - "tool_description": "Russian Premier League Standings & Table", - "score": { - "avgServiceLevel": 0, - "avgLatency": 911, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "Football Data": { - "tool_description": "Broadage Football API can deliver any type of data for a football match, tournament or team; including livescores, play-by-play, boxscore, match statistics and many more. Our Football Coverage includes the biggest football tournaments from all around the world with in-depth coverage, giving you the opportunity to present the best sports data to users located anywhere.
This is a limited version in RapidApi. Please, click here to start your Free Trial and try the endpoints with live data now!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 35, - "avgSuccessRate": 99, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "elvar": { - "tool_description": "el var website", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1226, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "Satellite API": { - "tool_description": "This Read-Only API Allows Users To Access Their Sleeper Fantasy Football Leagues. Lookup Leagues, Check Standings, View Keeper Options And More.", - "score": { - "avgServiceLevel": 0, - "avgLatency": 20000, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "Free NBA": { - "tool_description": "Unofficial NBA API for Historical NBA Data", - "score": { - "avgServiceLevel": 100, - "avgLatency": 770, - "avgSuccessRate": 92, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "WNBA API": { - "tool_description": "This API offer every basketball fan an easy way to stay on top of the latest data for all operations and players in the WNBA. It covers scores, stats, standings, and statistics.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1633, - "avgSuccessRate": 100, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "Rugby Live Data": { - "tool_description": "Rugby fixtures, results, standings and live match coverage from around the world.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 757, - "avgSuccessRate": 100, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Formula 1 Standings": { - "tool_description": "F1 Constructor and Drivers Standings.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1686, - "avgSuccessRate": 100, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Football Betting Odds": { - "tool_description": "Live and Upcoming Football Betting Odds", - "score": { - "avgServiceLevel": 100, - "avgLatency": 84, - "avgSuccessRate": 100, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "SureBets": { - "tool_description": "API for Surebets in sports betting", - "score": { - "avgServiceLevel": 100, - "avgLatency": 216, - "avgSuccessRate": 100, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Premier League Standings": { - "tool_description": "English Premier League Standings & Table", - "score": { - "avgServiceLevel": 98, - "avgLatency": 637, - "avgSuccessRate": 98, - "popularityScore": 9, - "__typename": "Score" - } - }, - "Pinaculo": { - "tool_description": "Pinaculo API provides over 15 different sports odds. \nBelow is a list of top sports you’d find there. The list on the API varies with respect to the active seasons, so you can check from the sports endpoint.\nFootball; eSports; Volleyball; Aussie rules; Formula 1; Boxing; Baseball; Basketball; MMA; Rugby; Golf; Soccer; Tennis; Crossfit;\n\nFor custom plans please contact us.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1749, - "avgSuccessRate": 100, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "Baseball": { - "tool_description": "Baseball Leagues & Cups with Livescore, Odds, Statistics, Historical Data, and more ...", - "score": { - "avgServiceLevel": 85, - "avgLatency": 1099, - "avgSuccessRate": 85, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "Cycling Schedule": { - "tool_description": "Cycling schedule for belgium and the netherlands", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1280, - "avgSuccessRate": 100, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "LiveScore Sports": { - "tool_description": "LiveScore Sports | The number one destination for real time scores for Football, Cricket, Tennis, Basketball, Hockey and more. Support: tipsters@rapi.one / t.me/api_tipsters Other sports api: https://rapi.one ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 82, - "avgSuccessRate": 26, - "popularityScore": 2.5, - "__typename": "Score" - } - }, - "MMA Stats": { - "tool_description": "", - "score": { - "avgServiceLevel": 99, - "avgLatency": 213, - "avgSuccessRate": 99, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "Betigolo Predictions": { - "tool_description": "The Betigolo Predictions API is a powerful tool that provides probability estimates for various sports events, such as football, basketball, and baseball. It can be used for sports betting with EV+ to help users make informed decisions about their bets. The API is easy to use and can be integrated into sports betting applications with the help of detailed documentation and code examples provided by Rapid API. With the Betigolo Predictions API, users can access accurate and up-to-date probabil...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1049, - "avgSuccessRate": 100, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "Bildbet": { - "tool_description": "Games and pre-game Odds for Bildbet", - "score": { - "avgServiceLevel": 100, - "avgLatency": 50, - "avgSuccessRate": 80, - "popularityScore": 6.8, - "__typename": "Score" - } - }, - "adere": { - "tool_description": "adereh", - "score": null - }, - "Football PL": { - "tool_description": "An unofficial api client for pulling player Stats, Fixtures, Tables and Results data from the Premier League", - "score": { - "avgServiceLevel": 100, - "avgLatency": 227, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "Sportsbook Odds": { - "tool_description": "LIVE ODDS W/ PLAYER PROPS from Fanduel, DraftKings, Caesars, BetMGM, Bovada, BetOnline, WynnBet, PointsBet, Sugarhouse/BetRivers, SuperBook, FoxBet, BallyBet and more to come soon.\n\nLeagues: MLB, NBA, NFL, NHL, NCAA Football, NCAA Basketball.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1000, - "avgSuccessRate": 100, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Metrx Factory": { - "tool_description": "Predictive football analytics API. Get expected scores from quantitative models and statistically fair odds for upcoming and historical matches. Find discrepancies by comparing ratings to final results and market prices. Quantify team performance and trends using the Metrx Index algorithm.", - "score": { - "avgServiceLevel": 96, - "avgLatency": 1750, - "avgSuccessRate": 87, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "CricketAPI2": { - "tool_description": "Cricket live score service at CricketApi allows you to follow real time cricket results, standings and fixtures. Live matches from cricket leagues has ball by ball coverage for every inning and detailed tables for fall of the wicket and partnership.\nFor increased rates and more sports, please look at: https://rapidapi.com/fluis.lacasse/api/allsportsapi2/", - "score": { - "avgServiceLevel": 100, - "avgLatency": 281, - "avgSuccessRate": 40, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "Tank01 MLB Live In-Game Real Time Statistics": { - "tool_description": "Tank01 back with an API providing you with MLB (Major League Baseball) STATS!! \nLIVE, IN-GAME, REAL TIME, statistics. \n\nNOW ALSO WITH BETTING / GAMBLING ODDS\n\nGame schedules, game times, and rosters are updated every hour as well.\nPerfect to support your fantasy site or any application that needs MLB data in real time.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 221, - "avgSuccessRate": 100, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Football xG Statistics": { - "tool_description": "Football (soccer) xG statistics. We provide statistics for more than 80 leagues. There are more than 90 000 games and 2 million shots in our database.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 657, - "avgSuccessRate": 100, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Football_v2": { - "tool_description": "More than 315+ competitions implemented (Increasing day by day). The API is dynamic, it gets updated every called endpoint so fresh data is provided to you at any time! Try it with the free plan. \nDocumentation and full competitions list: https://docs.google.com/document/d/1jX1O0w-elFlrNrP_x27vK-8pYrasIGAJjm_XjO8luJw/edit?usp=sharing", - "score": { - "avgServiceLevel": 93, - "avgLatency": 7523, - "avgSuccessRate": 93, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "FootApi": { - "tool_description": "FootApi offers real-time football scores of all live matches that are being played. FootApi covers hundreds of soccer leagues, cups and tournaments with live updated results, statistics, league tables, video highlights and fixtures. From most popular football leagues (UEFA Champions League, UEFA Europa League, Premier League, LaLiga, Bundesliga, Serie A, Ligue 1, Brasileiro SĂ©rie A), top players ratings and statistics to football matches played in a date, our FootApi covers all the informatio...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 597, - "avgSuccessRate": 100, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "RugbyAPI2": { - "tool_description": "Rugby live score service at RugbyApi has all the live scores, results, fixtures, statistics and league tables from the major rugby union leagues like England Aviva Premiership, Australia National Rugby League - NRL, Wales rugby league and France TOP 14.\nFor increased rates and more sports, please look at: https://rapidapi.com/fluis.lacasse/api/allsportsapi2/", - "score": { - "avgServiceLevel": 100, - "avgLatency": 595, - "avgSuccessRate": 100, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Soccerway Feed": { - "tool_description": "Soccerway covers over 1000 football leagues & cups from 134+ countries. It is the world’s largest football database. Data without delay, instant update. Historical data since 1901. **Site:** [soccerway.com](https://int.soccerway.com/) **Support**: [tipsters@rapi.one](mailto:tipsters@rapi.one) / t.me/api_tipsters **Other sports api:** https://rapi.one", - "score": { - "avgServiceLevel": 100, - "avgLatency": 512, - "avgSuccessRate": 90, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Horse Racing": { - "tool_description": "Horse racing API - UK & Ireland races. Racecards, results, stats, Odds comparator and more. ", - "score": { - "avgServiceLevel": 99, - "avgLatency": 991, - "avgSuccessRate": 99, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "v3rankings": { - "tool_description": "Version3 for ranking page", - "score": { - "avgServiceLevel": 100, - "avgLatency": 478, - "avgSuccessRate": 100, - "popularityScore": 7.9, - "__typename": "Score" - } - }, - "LiveScore_v2": { - "tool_description": "This API helps to query for football, cricket, basketball, tennis, hockey matches, leagues, news, etc... to create a sporting site/application such as livescore.com", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2499, - "avgSuccessRate": 100, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "90 Mins": { - "tool_description": "Football News", - "score": null - }, - "Zeus API": { - "tool_description": "This API returns information on the 5 major European football leagues.\nGet standings, matches, scorers and more.", - "score": { - "avgServiceLevel": 97, - "avgLatency": 1158, - "avgSuccessRate": 97, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "168predict VIP Football Predictions": { - "tool_description": "168predict offers \"Daily\" accurate football predictions from 168 football leagues worldwide. Visit www.168predict.site", - "score": null - }, - "Super Lig Standings": { - "tool_description": "Turkish Super Lig Standings", - "score": { - "avgServiceLevel": 97, - "avgLatency": 600, - "avgSuccessRate": 97, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "Daily Betting Tips": { - "tool_description": "We provide 90% hit rate daily soccer and basketball betting predictions, Our predictions are generated by AI powered analysis of previous matches and other factors key to the game's result", - "score": { - "avgServiceLevel": 100, - "avgLatency": 451, - "avgSuccessRate": 100, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "Live Golf Data": { - "tool_description": "PGA Tour and LIV Tour live golf data for your application needs such as rankings, leaderboards, scorecards, and results.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 77, - "avgSuccessRate": 98, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "Betway": { - "tool_description": "Games and pre-game Odds for Betway", - "score": { - "avgServiceLevel": 100, - "avgLatency": 52, - "avgSuccessRate": 100, - "popularityScore": 7.2, - "__typename": "Score" - } - }, - "National Football Players": { - "tool_description": "All active national football players, positions, teams, and numbers. Great for frontend player searches. ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1087, - "avgSuccessRate": 100, - "popularityScore": 7.4, - "__typename": "Score" - } - }, - "Golf Leaderboard Data": { - "tool_description": "Major golf tours, fixtures, results and up to the minute leaderboard data to enhance your applications.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 594, - "avgSuccessRate": 100, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "Global Data": { - "tool_description": "General API to be used for together with other APIs that based on various sports", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1104, - "avgSuccessRate": 100, - "popularityScore": 6.9, - "__typename": "Score" - } - }, - "score": { - "tool_description": "Live Score", - "score": { - "avgServiceLevel": 100, - "avgLatency": 6, - "avgSuccessRate": 100, - "popularityScore": 7, - "__typename": "Score" - } - }, - "Surebets 2": { - "tool_description": "#1 Most Hated API by Bookmakers: Leagues, Games, Odds & Arbitrage Bets for 90+ bookmakers", - "score": { - "avgServiceLevel": 95, - "avgLatency": 2862, - "avgSuccessRate": 95, - "popularityScore": 8.4, - "__typename": "Score" - } - }, - "NBA Stats_v2": { - "tool_description": "Statistics for every NBA player for every season.", - "score": { - "avgServiceLevel": 0, - "avgLatency": 3230, - "avgSuccessRate": 0, - "popularityScore": 0.4, - "__typename": "Score" - } - }, - "Bundesliga Standings": { - "tool_description": "German Bundesliga Standings & Table", - "score": { - "avgServiceLevel": 81, - "avgLatency": 966, - "avgSuccessRate": 81, - "popularityScore": 8.2, - "__typename": "Score" - } - }, - "Football (soccer) team names": { - "tool_description": "Large database of team names, You'll receive 7000+ football (soccer) team names, with their short names from almost every league, nation etc
 This API can be useful for you for ex.: if you want to create football (soccer) statistics based on team names and short names", - "score": { - "avgServiceLevel": 100, - "avgLatency": 206, - "avgSuccessRate": 100, - "popularityScore": 7.3, - "__typename": "Score" - } - }, - "HandballAPI": { - "tool_description": "HandballAPI offers a schedule for live matches and results for top national and international leagues and tournaments. Handball World championship, handball European championship, handball Champions league, LNH Division 1, EHF European league and other leagues are all covered.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 568, - "avgSuccessRate": 100, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "Free Football (Soccer) Videos_v2": { - "tool_description": "Embed codes for the latest goals' videos and video highlights from the matches of the Premier League, La Liga, Bundesliga and many more", - "score": { - "avgServiceLevel": 100, - "avgLatency": 439, - "avgSuccessRate": 100, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "IceHockeyApi": { - "tool_description": "IceHockeyApi offers you real time hockey livescore, tables, statistics, fixtures and results for more than 70 ice hockey leagues, cups and tournaments.\nFor increased rates and more sports, please look at: https://rapidapi.com/fluis.lacasse/api/allsportsapi2/", - "score": { - "avgServiceLevel": 100, - "avgLatency": 457, - "avgSuccessRate": 100, - "popularityScore": 9, - "__typename": "Score" - } - }, - "F1 drivers quotes": { - "tool_description": "An API that provides numerous quotes said by famous Formula 1 drivers and personalities.", - "score": { - "avgServiceLevel": 99, - "avgLatency": 9525, - "avgSuccessRate": 99, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "WOSTI-Futbol TV Spain": { - "tool_description": "GuĂ­a de partidos de fĂștbol televisados en España. Horarios y canales (TV&streaming legales). Futbolenlatv.es Support: info@wosti.com", - "score": { - "avgServiceLevel": 100, - "avgLatency": 5717, - "avgSuccessRate": 69, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "hockey-LIVE.sk data": { - "tool_description": "Get data for top hockey leagues and tournaments as NHL, IIHF World Championships and Olympic Games.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 270, - "avgSuccessRate": 100, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Simple Surf Forecast Api": { - "tool_description": "Surf forecast api very simple to use", - "score": { - "avgServiceLevel": 0, - "avgLatency": 320, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "BetsAPI": { - "tool_description": "bet365 events/scores/stats/odds", - "score": { - "avgServiceLevel": 100, - "avgLatency": 377, - "avgSuccessRate": 100, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "sportapi": { - "tool_description": "Statics of sports", - "score": { - "avgServiceLevel": 100, - "avgLatency": 190, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "Fitness Calculator": { - "tool_description": "Find \"body fat percentage\", \"ideal weight\", \"BMI\", \"daily calory requirement\" and some macro nutrients with this api.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 459, - "avgSuccessRate": 80, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "MLB Data": { - "tool_description": "Baseball MLB Data about players, teams, reports, and other stats.", - "score": { - "avgServiceLevel": 98, - "avgLatency": 91, - "avgSuccessRate": 97, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Ligue 1 Standings": { - "tool_description": "French Ligue 1 Standings & Table", - "score": { - "avgServiceLevel": 40, - "avgLatency": 3427, - "avgSuccessRate": 40, - "popularityScore": 7.4, - "__typename": "Score" - } - }, - "SofaSport": { - "tool_description": "SofaSport has everything, from simple live scores to deep statistics and detailed player analysis. We cover 20+ sports, more than 5000 leagues, tournaments and special events. We use the best sources for statistics and calculate precise player ratings. Heatmaps visually represent player effort on the field. Find all transfers, player strengths and weaknesses. Ratings and video of matches. **Partners and customers**: (Opta sports) statsperform.com , sofascore.com, aiscore.com **Support**: ...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 377, - "avgSuccessRate": 72, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "Spectation Sports Events API": { - "tool_description": "View upcoming events, fighters, fights and more from Spectation Sports.", - "score": { - "avgServiceLevel": 96, - "avgLatency": 228, - "avgSuccessRate": 84, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "Betigolo Tips": { - "tool_description": "Historical results here: https://www.betigolo.com/tips_premium.php\n\nThe Betigolo Tips API is a powerful tool that provides EV+ tips for football matches, based on machine Learning algorithms predictions to helping users make informed decisions about their bets. The API is easy to use and can be integrated into sports betting applications with the help of detailed documentation and code examples provided by Rapid API. With the Betigolo Tips API, users can access accurate and up-to-date tips fo...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 514, - "avgSuccessRate": 100, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Betcity": { - "tool_description": "Games and pre-game Odds for Betcity", - "score": { - "avgServiceLevel": 100, - "avgLatency": 61, - "avgSuccessRate": 100, - "popularityScore": 6.8, - "__typename": "Score" - } - }, - "Gold Standard Sports": { - "tool_description": "for sports feesa", - "score": null - }, - "Serie A Standings": { - "tool_description": "Italian Serie A Standings & Table", - "score": { - "avgServiceLevel": 97, - "avgLatency": 570, - "avgSuccessRate": 97, - "popularityScore": 8.5, - "__typename": "Score" - } - }, - "Serie A": { - "tool_description": "Serie a API! Here you can find all the info you need about the Serie A, the Italian football league among the best ones all over the world. You can ask for team statistics, players statistics and also for info about upcoming matches, also including live scores, live formations, live stats and much more. You can easily build your Serie A related portal or enhance your Ml/AI projects. ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1805, - "avgSuccessRate": 100, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "UFC Fighters_v2": { - "tool_description": "API to get any ufc fighter stats [name, nickname, height, weight, win, loss, draw, champion]", - "score": { - "avgServiceLevel": 85, - "avgLatency": 60463, - "avgSuccessRate": 82, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "SofaScores": { - "tool_description": "SofaScores has everything, from simple live scores to deep statistics and detailed player analysis. We cover 20+ sports, more than 5000 leagues, tournaments and special events. We use the best sources for statistics and calculate precise player ratings. Heatmaps visually represent player effort on the field. Find all transfers, player strengths and weaknesses. Ratings and video of matches. Partners and customers: (Opta sports) statsperform.com , sofascore.com, aiscore.com Support: [tipst...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 262, - "avgSuccessRate": 83, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "Divanscore": { - "tool_description": "The most powerful sports API for live scores and football scores, results and stats. And not just football – choose from more than 20+ sports, 5000+ leagues and tournaments, millions of events and many esports competitions. Analyze almost any live score and statistics on the planet ... This API helps to create a sporting site/application", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1359, - "avgSuccessRate": 100, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "AllScores": { - "tool_description": "Beware! Our live match updates may be faster than other API's.\nEnjoy our 24/7 wide coverage of real time scores data for 10 different sports and over 2,000 competitions worldwide, including Real-time Stats, Breaking News, In-Play Insights, Lineups, Live Tables, Fixtures, Social Buzz, Odds and much more.\nSupported 10 Sports Types: Football, Rugby, Tennis, Basketball, Cricket, Ice Hockey, Baseball, Volleyball, American football and Handball.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 445, - "avgSuccessRate": 100, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Live Sports Odds": { - "tool_description": "Odds data API for NFL, NBA, MLB, EPL, AFL and loads more, from US, UK, EU and Aussie bookmakers. Get started for free!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 142, - "avgSuccessRate": 99, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "BetSports": { - "tool_description": "BetSports Api", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1173, - "avgSuccessRate": 100, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "Greyhound Racing UK": { - "tool_description": "Greyhound Racing API - UK. In realtime! Daily races, race detail, historical data and more.", - "score": { - "avgServiceLevel": 99, - "avgLatency": 3188, - "avgSuccessRate": 99, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "msport": { - "tool_description": "Soccer livescore , results , fixtures , match and everything you need from 7msport \n\n(if you need additional or new feature just contact me)", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3934, - "avgSuccessRate": 100, - "popularityScore": 6.9, - "__typename": "Score" - } - }, - "Chillybets": { - "tool_description": "Games and pre-game Odds for Chillybets", - "score": { - "avgServiceLevel": 100, - "avgLatency": 55, - "avgSuccessRate": 100, - "popularityScore": 6.5, - "__typename": "Score" - } - }, - "MotorsportApi": { - "tool_description": "MotorsportApi has live coverage for most popular motorsports including MotoGP, Nascar, World Rally Championship, Moto2, Moto3, Superbike and Deutsche Tourenwagen Meisterschaft (DTM). \nFor increased rates and more sports, please look at: https://rapidapi.com/fluis.lacasse/api/allsportsapi2/", - "score": { - "avgServiceLevel": 100, - "avgLatency": 410, - "avgSuccessRate": 100, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "Football - DataFeeds by Rolling Insights": { - "tool_description": "Real-time Play by Play, Season Schedule, Weekly Schedules, Daily Schedules, Team Information, Team Stats, Player Information, Player Stats, Injuries and Depth Charts for the NFL.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2203, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "NHL API": { - "tool_description": "This API provides instant access to the latest data for all operations and players in the NHL. It features scores, odds, bookmakers' stats, standings, and historical data.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 684, - "avgSuccessRate": 100, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "SportifyAPI": { - "tool_description": "Real-time sports data platform providing comprehensive information on tournaments, matches, players, and live scores for various sports. ", - "score": { - "avgServiceLevel": 99, - "avgLatency": 723, - "avgSuccessRate": 99, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "Formula 1 - fixed": { - "tool_description": "F1", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1438, - "avgSuccessRate": 45, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "NBA Schedule_v2": { - "tool_description": "Get the stats of past NBA games and the schedule for upcoming ones!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 728, - "avgSuccessRate": 100, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "sport_v2": { - "tool_description": "Live", - "score": null - }, - "LaLiga Standings": { - "tool_description": "Spanish LaLiga Standings & Table", - "score": { - "avgServiceLevel": 88, - "avgLatency": 1042, - "avgSuccessRate": 88, - "popularityScore": 8.2, - "__typename": "Score" - } - }, - "FlashLive Sports": { - "tool_description": "FlashLive Sports provides the fastest live scores, standings and detailed stats. FlashLive covers thousands of competitions in 30+ sports. Soccer, football, baseball, tennis, basketball, hockey, golf mma, cricket, darts. Translation of players, teams and leagues (25 languages). You can make a site like flashscore.com **Support**: [tipsters@rapi.one](mailto:tipsters@rapi.one) / t.me/api_tipsters **Other sports api:** https://rapi.one", - "score": { - "avgServiceLevel": 100, - "avgLatency": 253, - "avgSuccessRate": 70, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "FIA Formula 1 Championship Statistics": { - "tool_description": "FIA Formula 1 Championship Statistics is a REST API. Gain access to statistical data about FIA F1 championships. ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1102, - "avgSuccessRate": 100, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "Handball Data": { - "tool_description": "Broadage Handball API will give you wide range of data of world's top handball leagues, including fixtures, standings, match lists and many more. Our Handball Coverage includes the biggest handball tournaments from all around the world with in-depth coverage, giving you the opportunity to present the best sports data to users located anywhere.
This is a limited version in RapidApi. Please, click here to start your Free Trial and try the endpoints with live data now!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 108, - "avgSuccessRate": 100, - "popularityScore": 7.4, - "__typename": "Score" - } - }, - "1977-2022 NBA Team Rosters and Schedules": { - "tool_description": "An API with Roster and Schedule Results for each NBA Franchise from 1977", - "score": { - "avgServiceLevel": 0, - "avgLatency": 552, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "Major League Soccer Standings": { - "tool_description": "Major League Soccer (MLS) Standings & Table", - "score": { - "avgServiceLevel": 0, - "avgLatency": 1003, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Betbro Sportbook": { - "tool_description": "Betbro Soccer SportBook\nComplete Football sportbook with InPlay and PreGame 114 markets, updated in realtime.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 634, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Football Prediction": { - "tool_description": "The Football Prediction API provides predictions for upcoming football matches, average bookie odds, results for past matches and prediction performance statistics for past results.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1104, - "avgSuccessRate": 100, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "Soccer App": { - "tool_description": "Live updates of Soccer", - "score": null - }, - "Ultimate Tennis": { - "tool_description": " Welcome to the Ultimate Tennis API! It provides all the information you need about the tennis world, including all the details related to players and tournaments(live scores, matches, statistics), from both the ATP and tha WTA circuits, both singles and doubles . We also provide live bettings odds for every match in every tennis category. You can easily build your tennis related portal or enhance your Ml/AI projects. ", - "score": { - "avgServiceLevel": 93, - "avgLatency": 3645, - "avgSuccessRate": 93, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Cricbuzz Cricket": { - "tool_description": "This API helps to query for live cricket scores, commentary, latest cricket news and editorials, schedules of upcoming matches, rankings, stats, records, etc", - "score": { - "avgServiceLevel": 100, - "avgLatency": 181, - "avgSuccessRate": 100, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "Morpheus Predictions ": { - "tool_description": "Morpheus Soccer Predictions (Beta)", - "score": { - "avgServiceLevel": 92, - "avgLatency": 8902, - "avgSuccessRate": 92, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "TransferMarkt DB": { - "tool_description": "Transfermarkt / Transfermarket - The football website for transfers, market values, rumours, stats, scores, results, news and fixtures. https://www.transfermarkt.com/ **Support**: [tipsters@rapi.one](mailto:tipsters@rapi.one) / t.me/api_tipsters **Other sports api:** https://rapi.one", - "score": { - "avgServiceLevel": 100, - "avgLatency": 698, - "avgSuccessRate": 96, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "NCAA Final Four": { - "tool_description": "Historical data for every NCAA Men's Final Four. Get champions, coaches, records, seeds, final four teams and more in JSON format.", - "score": { - "avgServiceLevel": 99, - "avgLatency": 549, - "avgSuccessRate": 99, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "test opta": { - "tool_description": "opta", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1128, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "SportScore": { - "tool_description": "Multiple sports API. **Site**: https://tipsscore.com **Support**: hello@tipsscore.com / t.me/api_tipsters Detailed data on teams, standings, players, coach, starting lineups, team stadiums, odds and odds-history, match locations, video goals and highlights. Real-time data: live-score, table score (tennis), game incidents (substitutions, corners, cards). **Other sports api:** https://rapi.one", - "score": { - "avgServiceLevel": 100, - "avgLatency": 71, - "avgSuccessRate": 96, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "Premier League Stats": { - "tool_description": "An API providing stats around the Premier League football league.", - "score": { - "avgServiceLevel": 96, - "avgLatency": 1702, - "avgSuccessRate": 96, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "FIFA 2022 Schedule and Stats": { - "tool_description": "Get the latest FIFA World Cup Schedule and Stats ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 499, - "avgSuccessRate": 100, - "popularityScore": 8.2, - "__typename": "Score" - } - }, - "Cricket Live Data": { - "tool_description": "Fixtures, Results, and scorecards for the worlds most popular cricket tournaments", - "score": { - "avgServiceLevel": 100, - "avgLatency": 325, - "avgSuccessRate": 100, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "Fantasy Cricket": { - "tool_description": "Most Accurate, Realtime, Fast and Reliable Fantasy Cricket API in the market. Any issues, queries, api integration, custom plan or to Create your own Fantasy Sports Application contact us at support@techflinch.com ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 978, - "avgSuccessRate": 100, - "popularityScore": 7.2, - "__typename": "Score" - } - }, - "Nba Latest News": { - "tool_description": "Nba api that returns latest news articles based on teams or players from espn, bleacher report, nba.com, yahoo, and slam", - "score": { - "avgServiceLevel": 100, - "avgLatency": 4153, - "avgSuccessRate": 97, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "Cbet": { - "tool_description": "Games and pre-game Odds for Cbet", - "score": { - "avgServiceLevel": 100, - "avgLatency": 58, - "avgSuccessRate": 100, - "popularityScore": 6.6, - "__typename": "Score" - } - }, - "Basketball": { - "tool_description": "For Live Feeds", - "score": null - }, - "Basketball - DataFeeds by Rolling Insights": { - "tool_description": "Real-time Play by Play, Season Schedule, Weekly Schedules, Daily Schedules, Team Information, Team Stats, Player Information, Player Stats, Injuries and Depth Charts for the NBA.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 720, - "avgSuccessRate": 0, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "Today Football Prediction": { - "tool_description": "Daily Football Prediction & Betting Tips with AI powered analysis and probability statistics. High efficiency, average bookie odds, profit-loss calculation, value betting. Limitted Time: Ultra Plan is only $2.99/mo\n", - "score": { - "avgServiceLevel": 97, - "avgLatency": 1504, - "avgSuccessRate": 93, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "Sports Live Scores": { - "tool_description": "We support different Sports. Bettings odds, livescores, rankings and match details included. Sports include Football, Tennis, Basketball, Crikcet, Futsal, Handball, Baseball, Table Tennis, Esports. Try it out and always feel free tor reach out to the team to add more endpoints! ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 907, - "avgSuccessRate": 100, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "F1 Live Motorsport Data": { - "tool_description": "Formula 1 data for the ultimate motorsport fanatic!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 573, - "avgSuccessRate": 100, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "ViperScore": { - "tool_description": "ViperScore is the cheapest sports API for all hobby and business projects with over 25 endpoints, 20+ sports and 5100+ leagues! We serve comprehensive data blazing fast with a clear structure and a well thought out scheme. You get the best live results and fast information for every game and we constantly develop the API further and include more data.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1191, - "avgSuccessRate": 100, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "Cricket": { - "tool_description": "This API only for testing", - "score": null - }, - "Primeira Liga Standings": { - "tool_description": "Portuguese Primeira Liga Standings & Table", - "score": { - "avgServiceLevel": 0, - "avgLatency": 820, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "OS Sports Perform": { - "tool_description": "OS Sports Perform has everything, from simple live scores to deep statistics and detailed player analysis. We cover 20+ sports, more than 5000 leagues, tournaments and special events. We use the best sources for statistics and calculate precise player ratings. Heatmaps visually represent player effort on the field. Find all transfers, player strengths and weaknesses. Ratings and video of matches. **Partners and customers**: (Opta sports) statsperform.com , sofascore.com, aiscore.com **Sup...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 304, - "avgSuccessRate": 84, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "NHL Stats and Live Data": { - "tool_description": "Get live data and stats about any NHL game, teams, players, drafts and many more.\n", - "score": { - "avgServiceLevel": 96, - "avgLatency": 1352, - "avgSuccessRate": 96, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "NBA Statistics API": { - "tool_description": "NBA Statistics API\n\nView Documentation: https://documenter.getpostman.com/view/24232555/2s93shzpR3", - "score": { - "avgServiceLevel": 100, - "avgLatency": 118, - "avgSuccessRate": 100, - "popularityScore": 6.9, - "__typename": "Score" - } - }, - "NBA Team Stats": { - "tool_description": "Team statistics for every NBA team dating back to 1950", - "score": { - "avgServiceLevel": 100, - "avgLatency": 536, - "avgSuccessRate": 99, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "Decathlon Sport Places": { - "tool_description": "GeoJSON-based open API used to reference geospatial data across Canada, the US/Canada, Europe, and Hong Kong. \nWe constantly work on expanding our coverage through crowdsourcing and data moderation. Directly access a large collection of sports facilities data. Build products that make sports more accessible.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 789, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "TransferMarket": { - "tool_description": "This API helps to query for transfer news, latest or record transfers, rumors, player market value, etc... to create a sporting site/application such as transfermarkt.com", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1472, - "avgSuccessRate": 100, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "football test": { - "tool_description": "Test API", - "score": null - }, - "NFL Team Stats_v2": { - "tool_description": "NFL Team Stats is an API that always provides up-to-date stats for all NFL teams such as: Wins, Passing, Rushing and Recieving.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 427, - "avgSuccessRate": 99, - "popularityScore": 9.5, - "__typename": "Score" - } - }, - "SheScoresAPI": { - "tool_description": "API for Women's World Cup 2023", - "score": null - }, - "NCAA Champions": { - "tool_description": "API that provides yearly historical data for NCAA Division I tournaments", - "score": { - "avgServiceLevel": 100, - "avgLatency": 6288, - "avgSuccessRate": 100, - "popularityScore": 6.2, - "__typename": "Score" - } - }, - "Bet-at-Home": { - "tool_description": "Games and pre-game Odds for Bet-at-Home.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 58, - "avgSuccessRate": 92, - "popularityScore": 7.5, - "__typename": "Score" - } - }, - "Football Score API": { - "tool_description": "Get football live scores for today be it any match \nThe scores are divided based on the league and you can fetch the data for all the leagues \n\nThis also gives you flexibility to know and find the matches and scores between teams for any other given date as well", - "score": { - "avgServiceLevel": 97, - "avgLatency": 2060, - "avgSuccessRate": 86, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "BaseballApi": { - "tool_description": "Check baseball live scores on BaseballAPi every game in real time. BaseballApi covers all major leagues and offers information and odds for each. Follow most popular leagues such as MLB, LMB, Pro Yakyu - NPB and others.\nFor increased rates and more sports, please look at: https://rapidapi.com/fluis.lacasse/api/allsportsapi2/", - "score": { - "avgServiceLevel": 100, - "avgLatency": 399, - "avgSuccessRate": 100, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "AllSportsApi": { - "tool_description": "AllSportsApi offers real-time football, esports, motorsport, ice hockey, basketball, tennis, baseball, cricket and american football scores. It covers hundreds of sports leagues, cups and tournaments with live updated results, statistics, league tables, video highlights and fixtures.Check our specific sport API's: https://rapidapi.com/user/fluis.lacasse", - "score": { - "avgServiceLevel": 100, - "avgLatency": 423, - "avgSuccessRate": 100, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "Eredivisie Standings": { - "tool_description": "Dutch Eredivisie Standings & Table", - "score": { - "avgServiceLevel": 0, - "avgLatency": 998, - "avgSuccessRate": 0, - "popularityScore": 0.1, - "__typename": "Score" - } - }, - "Football Dolphin": { - "tool_description": "This Api returns statistical data about English Premier League. Click on the link to view all endpoints in one web app https://football-dolphin-web-app.up.railway.app/", - "score": { - "avgServiceLevel": 100, - "avgLatency": 118, - "avgSuccessRate": 100, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "Fan Crypto Coins": { - "tool_description": "Get data on all crypto coins related to sports teams through this API!", - "score": { - "avgServiceLevel": 50, - "avgLatency": 3272, - "avgSuccessRate": 50, - "popularityScore": 7, - "__typename": "Score" - } - }, - "PredictX": { - "tool_description": "predictX API is a comprehensive sports prediction API hosted on RapidAPI that offers a wide range of features to enhance your sports-related applications. With predictX, you can access accurate predictions, live scores, upcoming matches, past results, and much more. This API provides developers with valuable insights and data to create engaging sports applications, betting platforms, or any other sports-related projects.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1035, - "avgSuccessRate": 98, - "popularityScore": 8.2, - "__typename": "Score" - } - }, - "BasketAPI": { - "tool_description": "BasketAPI provides you with live basketball results, schedule and matches that are being played or was played in a date. With over 70 different basketball leagues, among which are college basketball league (NCAA Men and NCAA Women), NBA, Euroleague, A1, Serie A, Liga ACB, Eurocup, ABA Liga, NBB and many other, you can follow live scores, results, tables, statistics, fixtures, standings and previous results by quarters, halftime or final result. BasketAPI has everything you need!\nFor increased...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 449, - "avgSuccessRate": 100, - "popularityScore": 9.7, - "__typename": "Score" - } - }, - "âšœ Football Live Score đŸ”„": { - "tool_description": "Live Football Scores, Fixtures & Results", - "score": { - "avgServiceLevel": 100, - "avgLatency": 4881, - "avgSuccessRate": 100, - "popularityScore": 6.1, - "__typename": "Score" - } - }, - "Hockey - DataFeeds by Rolling Insights": { - "tool_description": "Real-time Play by Play, Season Schedule, Weekly Schedules, Daily Schedules, Team Information, Team Stats, Player Information, Player Stats, Injuries and Depth Charts for the NHL.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 448, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "Unofficial Cricbuzz": { - "tool_description": "This API helps to query for live cricket scores, commentary, latest cricket news and editorials, schedules of upcoming matches, rankings, stats, records, etc", - "score": { - "avgServiceLevel": 100, - "avgLatency": 2930, - "avgSuccessRate": 100, - "popularityScore": 9.8, - "__typename": "Score" - } - }, - "Dreambet": { - "tool_description": "Games and pre-game Odds for Dreambet", - "score": { - "avgServiceLevel": 100, - "avgLatency": 65, - "avgSuccessRate": 100, - "popularityScore": 6.6, - "__typename": "Score" - } - }, - "NFL Team Stats": { - "tool_description": "Current and historical team stats for every NFL football team.", - "score": { - "avgServiceLevel": 99, - "avgLatency": 747, - "avgSuccessRate": 99, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "Betano": { - "tool_description": "Games and pre-game Odds for Betano", - "score": { - "avgServiceLevel": 100, - "avgLatency": 79, - "avgSuccessRate": 86, - "popularityScore": 6.8, - "__typename": "Score" - } - }, - "F1 Race Schedule": { - "tool_description": "This API provides the user with up-to-date dates and timings for all the races in the ongoing F1 season.", - "score": { - "avgServiceLevel": 86, - "avgLatency": 26095, - "avgSuccessRate": 86, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "F1 Latest News": { - "tool_description": "This API scrapes the most recent F1 news articles from, the official F1 website, Sky F1, BBC F1, WTF1, and Autosport. More may be added in the future...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 8, - "avgSuccessRate": 100, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Sport Odds": { - "tool_description": "Sport Odds by BetsSports", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1027, - "avgSuccessRate": 24, - "popularityScore": 1.5, - "__typename": "Score" - } - }, - "Premier League Upcoming Matches": { - "tool_description": "This API will provide you information about future matches of different clubs in Premier League", - "score": { - "avgServiceLevel": 100, - "avgLatency": 4179, - "avgSuccessRate": 98, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "Ice Hockey Data": { - "tool_description": "Broadage Ice Hockey API will give you wide range of data of world's top ice hockey leagues, including fixtures, standings, match lists and many more. Our Ice Hockey Coverage includes the biggest ice hockey tournaments from all around the world with in-depth coverage, giving you the opportunity to present the best sports data to users located anywhere.
This is a limited version in RapidApi. Please, click here to start your Free Trial and try the endpoints with live data now!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 116, - "avgSuccessRate": 89, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "Sports odds BetApi": { - "tool_description": "Sports data and odds Bets Api for all sports: football, basketball, hockey, tennis, cricket, eSports", - "score": { - "avgServiceLevel": 100, - "avgLatency": 788, - "avgSuccessRate": 100, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Admiralbet": { - "tool_description": "Games and pre-game Odds for Admiralbet", - "score": { - "avgServiceLevel": 100, - "avgLatency": 69, - "avgSuccessRate": 100, - "popularityScore": 6.8, - "__typename": "Score" - } - }, - "IPL API": { - "tool_description": "It is api thats gives the data about IPL(2008-2020) matches data . ", - "score": { - "avgServiceLevel": 100, - "avgLatency": 477, - "avgSuccessRate": 100, - "popularityScore": 9.2, - "__typename": "Score" - } - }, - "Tennis Live Data": { - "tool_description": "Tennis data for top competitions around the world including tournaments, matches, results, and rankings.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 700, - "avgSuccessRate": 100, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "WOSTI-Futbol TV Peru": { - "tool_description": "GuĂ­a de partidos de fĂștbol televisados en PerĂș. Horarios y canales (TV&streaming legales). Futbolenvivoperu.com Support: info@wosti.com", - "score": { - "avgServiceLevel": 100, - "avgLatency": 3481, - "avgSuccessRate": 69, - "popularityScore": 8.1, - "__typename": "Score" - } - }, - "Golf Course Finder": { - "tool_description": "This API will return golf courses within a mile radius of the passed latitude and longitude. It will also return the place details from Google.", - "score": { - "avgServiceLevel": 98, - "avgLatency": 522, - "avgSuccessRate": 98, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "Soccer Data": { - "tool_description": "Broadage Soccer API brings a wide range of data for Soccer in fixtures, livescores, standings and many more. Team, tournament or match, retrieve real time data for any perspective you need. Our Soccer Coverage includes 350+ tournaments from all around the world with in-depth coverage, giving the chance to present the best sports data from users located anywhere.
This is a limited version in RapidApi. Please, click here to start your Free Trial and try the endpoints with live data now!", - "score": { - "avgServiceLevel": 100, - "avgLatency": 96, - "avgSuccessRate": 100, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "Dafabet": { - "tool_description": "Games and pre-game Odds for Dafabet", - "score": { - "avgServiceLevel": 100, - "avgLatency": 59, - "avgSuccessRate": 100, - "popularityScore": 6.6, - "__typename": "Score" - } - }, - "Baseball - DataFeeds by Rolling Insights": { - "tool_description": "Real-time Play by Play, Season Schedule, Weekly Schedules, Daily Schedules, Team Information, Team Stats, Player Information, Player Stats, Injuries and Depth Charts for the MLB.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 809, - "avgSuccessRate": 17, - "popularityScore": 2.1, - "__typename": "Score" - } - }, - "MMAAPI": { - "tool_description": "MMAAPI is your ultimate source for the latest updates, scores, and results from the world of mixed martial arts. Our API covers all major MMA organizations, including UFC, Bellator, KSW, PFL, and many more.Our live scoring and real-time statistics provide a comprehensive view of every fight, making MMAAPI the go-to API to get MMA scores worldwide.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 533, - "avgSuccessRate": 100, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "Match APi": { - "tool_description": "+1000 football leagues & cups. Livescore, alive, this project provides users with real-time information about current and upcoming matches in various competitions and leagues. By subscribing to our service, users will have access to detailed information about matches, including teams, results, and time. Additionally, users will be able to view information about different competitions and leagues. Our service aims to provide users with the most up-to-date and accurate information, and we const...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 36438, - "avgSuccessRate": 100, - "popularityScore": 6.6, - "__typename": "Score" - } - }, - "Betmaster": { - "tool_description": "Games and pre-game Odds for Betmaster", - "score": { - "avgServiceLevel": 100, - "avgLatency": 83, - "avgSuccessRate": 100, - "popularityScore": 6.9, - "__typename": "Score" - } - }, - "Pinnacle Odds": { - "tool_description": "Pinnacle Sport API is a RESTful service for getting pre-match and live odds. Historical odds, score and results. Updates without delay. Sports: Soccer, tennis, basketball, hockey, american football, MMA, baseball. **Support**: [tipsters@rapi.one](mailto:tipsters@rapi.one) / t.me/api_tipsters **Other sports api:** https://rapi.one", - "score": { - "avgServiceLevel": 100, - "avgLatency": 164, - "avgSuccessRate": 98, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "AmericanFootballApi": { - "tool_description": "Here at the AmericanFootballApi you can find all the results and live scores from the biggest and most popular American football league in the world - NFL and when regular NFL season is finished, follow live scores of NFL playoffs and Superbowl. In addition to NFL we will also provide you with the livescores, results, standings and schedules for the NCAA College American football and Canadian CFL.\nFor increased rates and more sports, please look at: https://rapidapi.com/fluis.lacasse/api/alls...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 491, - "avgSuccessRate": 100, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Tank01 Fantasy Stats": { - "tool_description": "NBA (National Basketball League) Live In Game Fantasy Stats - NBA. Delivering Accurate Real Time Game Statistics. Updated Rosters/Player Information, Current Schedules, and Updated Standings immediately after every game. Very Useful for Fantasy Basketball Apps. NOW ALSO WITH BETTING / GAMBLING ODDS", - "score": { - "avgServiceLevel": 100, - "avgLatency": 248, - "avgSuccessRate": 100, - "popularityScore": 9.6, - "__typename": "Score" - } - }, - "Flag Status": { - "tool_description": "US and state flag half-staff events in JSON format.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 134, - "avgSuccessRate": 99, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "Public Holiday": { - "tool_description": "An API for Public Holidays & Bank Holidays", - "score": { - "avgServiceLevel": 100, - "avgLatency": 54, - "avgSuccessRate": 100, - "popularityScore": 9.9, - "__typename": "Score" - } - }, - "Historical Events by API-Ninjas": { - "tool_description": "Search through the most famous events in history. See more info at https://api-ninjas.com/api/historicalevents.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 499, - "avgSuccessRate": 100, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "feriados-brasileiros": { - "tool_description": "API para obter feriados nacionais para uma cidade/estado específica durante um determinado ano.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 5594, - "avgSuccessRate": 100, - "popularityScore": 8.7, - "__typename": "Score" - } - }, - "Art openings Italy": { - "tool_description": "Introducing the ultimate art event API for Italy - your one-stop destination for discovering and experiencing the best art events happening across the country. With our API, you have access to a comprehensive list of cities where art events take place, as well as a list of ongoing events happening in each city.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 5620, - "avgSuccessRate": 100, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "Birthday Cake With Name Generator": { - "tool_description": "Write name on unique design best happy birthday cake images with name generator online And download free birthday cake with name to surprise your friends. ", - "score": null - }, - "Holidays by API-Ninjas": { - "tool_description": "Get past, present and future holiday data for any country. See more info at https://api-ninjas.com/api/holidays.", - "score": { - "avgServiceLevel": 99, - "avgLatency": 1021, - "avgSuccessRate": 99, - "popularityScore": 9.4, - "__typename": "Score" - } - }, - "Today in History": { - "tool_description": "Retrieves data about an important day in history.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 1658, - "avgSuccessRate": 100, - "popularityScore": 9.3, - "__typename": "Score" - } - }, - "Calendars": { - "tool_description": "Get list of events from a number of venues", - "score": { - "avgServiceLevel": 93, - "avgLatency": 2218, - "avgSuccessRate": 93, - "popularityScore": 9, - "__typename": "Score" - } - }, - "fisrt": { - "tool_description": "my first api :)", - "score": { - "avgServiceLevel": 100, - "avgLatency": 761, - "avgSuccessRate": 0, - "popularityScore": 0.2, - "__typename": "Score" - } - }, - "contests": { - "tool_description": "Get the list of active contests.", - "score": { - "avgServiceLevel": 100, - "avgLatency": 686, - "avgSuccessRate": 100, - "popularityScore": 9.1, - "__typename": "Score" - } - }, - "Enoch Calendar": { - "tool_description": "Access the Biblical Holydays and Sabbaths using the Enoch Calendar", - "score": { - "avgServiceLevel": 100, - "avgLatency": 340, - "avgSuccessRate": 100, - "popularityScore": 8.9, - "__typename": "Score" - } - }, - "Sagenda v3": { - "tool_description": "We are now hosted on PostMan : https://documenter.getpostman.com/view/3283093/SW7aXT2M?version=latest", - "score": { - "avgServiceLevel": 100, - "avgLatency": 930, - "avgSuccessRate": 6, - "popularityScore": 0.3, - "__typename": "Score" - } - }, - "WonderboyAPI": { - "tool_description": "With this information the goal is to make information about racing more widely available", - "score": { - "avgServiceLevel": 100, - "avgLatency": 16973, - "avgSuccessRate": 100, - "popularityScore": 8.6, - "__typename": "Score" - } - }, - "📅 Crypto Events Calendar 🚀": { - "tool_description": "Get crypto events like listing, airdrops, release, tokenomics, partnershiop, other.\n", - "score": { - "avgServiceLevel": 100, - "avgLatency": 158, - "avgSuccessRate": 100, - "popularityScore": 8.8, - "__typename": "Score" - } - }, - "Working days": { - "tool_description": "The API returns the number of days, hours, working days, working hours, wages, weekend days, and the list of public holidays of the requested date period and country. You can also add any number of working days or working hours to a given date. 50 countries and over 230 regional calendars are supported and we work hard to keep our database up to date by following government announcements regarding public holidays changes. All the calendars can be fully customized from our friendly working da...", - "score": { - "avgServiceLevel": 100, - "avgLatency": 132, - "avgSuccessRate": 100, - "popularityScore": 9.9, - "__typename": "Score" - } - } -} \ No newline at end of file