mirror of
https://github.com/HKUDS/AutoAgent.git
synced 2025-10-09 13:41:35 +03:00
346 KiB
346 KiB
| 1 | Category | Tool_Name | Tool_Description | API_Name | API_Description | Method | API_Details | Required_API_Key | Platform |
|---|---|---|---|---|---|---|---|---|---|
| 2 | eCommerce | Real-Time Amazon Data | Fast and Simple product searches, data and reviews on Amazon.com in real-time. | Search | Search for product offers on Amazon with support for multiple filters and options. | GET | {'name': 'Search', 'url': 'https://real-time-amazon-data.p.rapidapi.com/search', 'description': 'Search for product offers on Amazon with support for multiple filters and options.', 'method': 'GET', 'required_parameters': [{'name': 'query', 'type': 'STRING', 'description': 'Search query. Supports both free-form text queries or a product asin.', 'default': 'Phone'}], 'optional_parameters': [{'name': 'brand', 'type': 'STRING', 'description': "Find products with a specific brand. Multiple brands can be specified as a comma (,) separated list. The brand values can be seen from Amazon's search left filters panel, as seen [here](https://www.amazon.com/s?k=phone).\n\n**e.g.** `SAMSUNG`\n**e.g.** `Google,Apple`", 'default': ''}, {'name': 'min_price', 'type': 'NUMBER', 'description': 'Only return product offers with price greater than a certain value. Specified in the currency of the selected country. For example, in case country=US, a value of *105.34* means *$105.34*.', 'default': ''}, {'name': 'max_price', 'type': 'NUMBER', 'description': 'Only return product offers with price lower than a certain value. Specified in the currency of the selected country. For example, in case country=US, a value of *105.34* means *$105.34*.', 'default': ''}, {'name': 'country', 'type': 'STRING', 'description': 'Sets the marketplace country, language and currency. \n\n**Default:** `US`\n\n**Allowed values:** `US, AU, BR, CA, CN, FR, DE, IN, IT, MX, NL, SG, ES, TR, AE, GB, JP`\n', 'default': 'US'}, {'name': 'category_id', 'type': 'STRING', 'description': 'Find products in a specific category / department. Use the **Product Category List** endpoint to get a list of valid categories and their ids for the country specified in the request.\n\n**Default:** `aps` (All Departments)', 'default': 'aps'}, {'name': 'sort_by', 'type': 'ENUM', 'description': 'Return the results in a specific sort order.\n\n**Default:** `RELEVANCE`\n\n**Allowed values:** `RELEVANCE, LOWEST_PRICE, HIGHEST_PRICE, REVIEWS, NEWEST`\n', 'default': ''}, {'name': 'page', 'type': 'STRING', 'description': 'Results page to return.\n\n**Default:** `1`', 'default': '1'}], 'code': 'import requests\n\nurl = "https://real-time-amazon-data.p.rapidapi.com/search"\nquerystring = {"country": country, "query": query, "category_id": category_id, "page": page}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "real-time-amazon-data.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {'type': 'object', 'properties': {'status': {'type': 'string'}, 'request_id': {'type': 'string'}, 'data': {'type': 'object', 'properties': {'total_products': {'type': 'integer'}, 'country': {'type': 'string'}, 'products': {'type': 'array', 'items': {'type': 'object'}}}}}}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 3 | eCommerce | Real-Time Amazon Data | Fast and Simple product searches, data and reviews on Amazon.com in real-time. | Product Details | Get additional product information / details such as description, about, rating distribution and specs. | GET | {'name': 'Product Details', 'url': 'https://real-time-amazon-data.p.rapidapi.com/product-details', 'description': 'Get additional product information / details such as description, about, rating distribution and specs.', 'method': 'GET', 'required_parameters': [{'name': 'asin', 'type': 'STRING', 'description': 'Product ASIN for which to get details. Supports batching of up to 10 ASINs in a single request, separated by comma (e.g. *B08PPDJWC8,B07ZPKBL9V, B08BHXG144*).\n\nNote that each ASIN in a batch request is counted as a single request against the plan quota.', 'default': 'B07ZPKBL9V'}], 'optional_parameters': [{'name': 'country', 'type': 'STRING', 'description': 'Sets the marketplace country, language and currency. \n\n**Default:** `US`\n\n**Allowed values:** `US, AU, BR, CA, CN, FR, DE, IN, IT, MX, NL, SG, ES, TR, AE, GB, JP`\n', 'default': 'US'}], 'code': 'import requests\n\nurl = "https://real-time-amazon-data.p.rapidapi.com/product-details"\nquerystring = {"country": country, "asin": asin}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "real-time-amazon-data.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {'type': 'object', 'properties': {'status': {'type': 'string'}, 'request_id': {'type': 'string'}, 'data': {'type': 'object', 'properties': {'asin': {'type': 'string'}, 'country': {'type': 'string'}, 'about_product': {'type': 'array', 'items': {'type': 'string'}}, 'product_description': {'type': 'string'}, 'product_information': {'type': 'object', 'properties': {'Product Dimensions': {'type': 'string'}, 'Item Weight': {'type': 'string'}, 'ASIN': {'type': 'string'}, 'Item model number': {'type': 'string'}, 'Batteries': {'type': 'string'}, 'OS': {'type': 'string'}, 'Wireless communication technologies': {'type': 'string'}, 'Connectivity technologies': {'type': 'string'}, 'Other display features': {'type': 'string'}, 'Human Interface Input': {'type': 'string'}, 'Other camera features': {'type': 'string'}, 'Form Factor': {'type': 'string'}, 'Color': {'type': 'string'}, 'Battery Power Rating': {'type': 'string'}, 'Whats in the box': {'type': 'string'}, 'Manufacturer': {'type': 'string'}, 'Date First Available': {'type': 'string'}, 'Memory Storage Capacity': {'type': 'string'}, 'Standing screen display size': {'type': 'string'}, 'Ram Memory Installed Size': {'type': 'string'}}}}}}}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 4 | eCommerce | Real-Time Amazon Data | Fast and Simple product searches, data and reviews on Amazon.com in real-time. | Product Reviews | Get and paginate through all product reviews on Amazon. | GET | {'name': 'Product Reviews', 'url': 'https://real-time-amazon-data.p.rapidapi.com/product-reviews', 'description': 'Get and paginate through all product reviews on Amazon.', 'method': 'GET', 'required_parameters': [{'name': 'asin', 'type': 'STRING', 'description': 'Product asin for which to get reviews.', 'default': 'B07ZPKN6YR'}], 'optional_parameters': [{'name': 'query', 'type': 'STRING', 'description': 'Find reviews matching a search query.', 'default': ''}, {'name': 'sort_by', 'type': 'ENUM', 'description': 'Return reviews in a specific sort order.\n\n**Default:** `TOP_REVIEWS`\n\n**Allowed values:** `TOP_REVIEWS, MOST_RECENT`\n', 'default': ''}, {'name': 'verified_purchases_only', 'type': 'BOOLEAN', 'description': 'Only return reviews by reviewers who made a verified purchase.', 'default': 'false'}, {'name': 'page_size', 'type': 'NUMBER', 'description': 'Results page size.\n\n**Allowed values:** `1-20`\n\n**Default:** `10`', 'default': '10'}, {'name': 'page', 'type': 'NUMBER', 'description': 'Results page to return.\n\n**Default:** `1`', 'default': '1'}, {'name': 'star_rating', 'type': 'ENUM', 'description': 'Only return reviews with a specific star rating.\n\n**Default:** `ALL`\n\n**Allowed values:** `ALL, 5_STARS, 4_STARS, 3_STARS, 2_STARS, 1_STARS, POSITIVE, CRITICAL`\n', 'default': ''}, {'name': 'images_or_videos_only', 'type': 'BOOLEAN', 'description': 'Only return reviews containing images and / or videos.', 'default': 'false'}, {'name': 'country', 'type': 'STRING', 'description': 'Sets the marketplace country, language and currency. \n\n**Default:** `US`\n\n**Allowed values:** `US, AU, BR, CA, CN, FR, DE, IN, IT, MX, NL, SG, ES, TR, AE, GB, JP`\n', 'default': 'US'}], 'code': 'import requests\n\nurl = "https://real-time-amazon-data.p.rapidapi.com/product-reviews"\nquerystring = {"asin": asin, "verified_purchases_only": verified_purchases_only, "page_size": page_size, "page": page, "images_or_videos_only": images_or_videos_only, "country": country}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "real-time-amazon-data.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {'type': 'object', 'properties': {'status': {'type': 'string'}, 'request_id': {'type': 'string'}, 'data': {'type': 'object', 'properties': {'asin': {'type': 'string'}, 'total_reviews': {'type': 'integer'}, 'total_ratings': {'type': 'integer'}, 'country': {'type': 'string'}, 'reviews': {'type': 'array', 'items': {'type': 'object'}}}}}}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 5 | eCommerce | Real-Time Amazon Data | Fast and Simple product searches, data and reviews on Amazon.com in real-time. | Product Category List | Get Amazon product categories (per country / marketplace). | GET | {'name': 'Product Category List', 'url': 'https://real-time-amazon-data.p.rapidapi.com/product-category-list', 'description': 'Get Amazon product categories (per country / marketplace).', 'method': 'GET', 'required_parameters': [], 'optional_parameters': [{'name': 'country', 'type': 'STRING', 'description': 'Sets the marketplace country, language and currency. \n\n**Default:** `US`\n\n**Allowed values:** `US, AU, BR, CA, CN, FR, DE, IN, IT, MX, NL, SG, ES, TR, AE, GB, JP`\n', 'default': 'US'}], 'code': 'import requests\n\nurl = "https://real-time-amazon-data.p.rapidapi.com/product-category-list"\nquerystring = {"country": country}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "real-time-amazon-data.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {'type': 'object', 'properties': {'status': {'type': 'string'}, 'request_id': {'type': 'string'}, 'data': {'type': 'array', 'items': {'type': 'object', 'properties': {'id': {'type': 'string'}, 'name': {'type': 'string'}}}}}}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 6 | eCommerce | Real-Time Amazon Data | Fast and Simple product searches, data and reviews on Amazon.com in real-time. | Product Offers | Get top 10 offers of a specific product on Amazon by its asin, the first offer in the list is the pinned offer returned by the **Search** endpoint. Supports filtering by product condition. | GET | {'name': 'Product Offers', 'url': 'https://real-time-amazon-data.p.rapidapi.com/product-offers', 'description': 'Get top 10 offers of a specific product on Amazon by its asin, the first offer in the list is the pinned offer returned by the **Search** endpoint. Supports filtering by product condition.', 'method': 'GET', 'required_parameters': [{'name': 'asin', 'type': 'STRING', 'description': 'Product ASIN for which to get offers. Supports batching of up to 10 ASINs in a single request, separated by comma (e.g. *B08PPDJWC8,B07ZPKBL9V, B08BHXG144*).\n\nNote that each ASIN in a batch request is counted as a single request against the plan quota.', 'default': 'B07ZPKBL9V'}], 'optional_parameters': [{'name': 'delivery', 'type': 'STRING', 'description': '[EXPERIMENTAL]\nFind products with specific delivery option, specified as a comma delimited list of the following values: `PRIME_ELIGIBLE,FREE_DELIVERY`.\n\n**e.g.** `FREE_DELIVERY`\n**e.g.** `PRIME_ELIGIBLE,FREE_DELIVERY`\n', 'default': ''}, {'name': 'limit', 'type': 'NUMBER', 'description': 'Maximum number of offers to return.\n\n**Default:** `100`', 'default': '100'}, {'name': 'product_condition', 'type': 'STRING', 'description': 'Find products in specific conditions, specified as a comma delimited list of the following values: `NEW, USED_LIKE_NEW, USED_VERY_GOOD, USED_GOOD, USED_ACCEPTABLE`.\n\n**e.g.** `NEW,USED_LIKE_NEW`\n**e.g.** `USED_VERY_GOOD,USED_GOOD,USED_LIKE_NEW`\n', 'default': ''}, {'name': 'country', 'type': 'STRING', 'description': 'Sets the marketplace country, language and currency. \n\n**Default:** `US`\n\n**Allowed values:** `US, AU, BR, CA, CN, FR, DE, IN, IT, MX, NL, SG, ES, TR, AE, GB, JP`\n', 'default': 'US'}], 'code': 'import requests\n\nurl = "https://real-time-amazon-data.p.rapidapi.com/product-offers"\nquerystring = {"limit": limit, "asin": asin, "country": country}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "real-time-amazon-data.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {'type': 'object', 'properties': {'status': {'type': 'string'}, 'request_id': {'type': 'string'}, 'data': {'type': 'object', 'properties': {'asin': {'type': 'string'}, 'country': {'type': 'string'}, 'product_offers': {'type': 'array', 'items': {'type': 'object'}}}}}}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 7 | Finanace | Real-Time Finance Data | Get stocks / market quotes and trends, ETF, international exchanges / forex, crypto, related news and analytics in real-time. | Stock Quote | Get stock market quote. Supports all stock types: *stock*, *index*, *mutual fund* and *futures*. | GET | {'name': 'Stock Quote', 'url': 'https://real-time-finance-data.p.rapidapi.com/stock-quote', 'description': 'Get stock market quote. Supports all stock types: *stock*, *index*, *mutual fund* and *futures*.', 'method': 'GET', 'required_parameters': [{'name': 'symbol', 'type': 'STRING', 'description': 'Stock symbol / ticker.\n\n**e.g.** *`MSFT:NASDAQ`*\n**e.g.** *`MSFT`*\n**e.g.** *`^DJI`*\n**e.g.** *`VTSAX`*', 'default': 'AAPL:NASDAQ'}], 'optional_parameters': [{'name': 'language', 'type': 'STRING', 'description': 'The language to use for the results, specified as a 2-letter language code - see [ISO 639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes).\n\n**Default**: *en*.', 'default': 'en'}], 'code': 'import requests\n\nurl = "https://real-time-finance-data.p.rapidapi.com/stock-quote"\nquerystring = {"language": language, "symbol": symbol}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "real-time-finance-data.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {'type': 'object', 'properties': {'status': {'type': 'string'}, 'request_id': {'type': 'string'}, 'data': {'type': 'object', 'properties': {'symbol': {'type': 'string'}, 'name': {'type': 'string'}, 'type': {'type': 'string'}, 'price': {'type': 'number'}, 'open': {'type': 'number'}, 'high': {'type': 'number'}, 'low': {'type': 'number'}, 'volume': {'type': 'integer'}, 'previous_close': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'pre_or_post_market': {'type': 'number'}, 'pre_or_post_market_change': {'type': 'number'}, 'pre_or_post_market_change_percent': {'type': 'number'}, 'last_update_utc': {'type': 'string'}}}}}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 8 | Finanace | Real-Time Finance Data | Get stocks / market quotes and trends, ETF, international exchanges / forex, crypto, related news and analytics in real-time. | Currency News | Get the latest news related to a specific currency / forex or crypto. | GET | {'name': 'Currency News', 'url': 'https://real-time-finance-data.p.rapidapi.com/currency-news', 'description': 'Get the latest news related to a specific currency / forex or crypto.', 'method': 'GET', 'required_parameters': [{'name': 'from_symbol', 'type': 'STRING', 'description': 'A 3-Letter currency code / symbol (ISO 4217). For example: *USD*.', 'default': 'USD'}, {'name': 'to_symbol', 'type': 'STRING', 'description': 'A 3-Letter currency code / symbol (ISO 4217). For example: *EUR*.', 'default': 'EUR'}], 'optional_parameters': [{'name': 'language', 'type': 'STRING', 'description': 'The language to use for the results, specified as a 2-letter language code - see [ISO 639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes).\n\n**Default**: *en*.', 'default': 'en'}], 'code': 'import requests\n\nurl = "https://real-time-finance-data.p.rapidapi.com/currency-news"\nquerystring = {"language": language, "from_symbol": from_symbol, "to_symbol": to_symbol}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "real-time-finance-data.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {'type': 'object', 'properties': {'status': {'type': 'string'}, 'request_id': {'type': 'string'}, 'data': {'type': 'object', 'properties': {'from_symbol': {'type': 'string'}, 'to_symbol': {'type': 'string'}, 'type': {'type': 'string'}, 'news': {'type': 'array', 'items': {'type': 'object', 'properties': {'article_title': {'type': 'string'}, 'article_url': {'type': 'string'}, 'article_photo_url': {'type': 'string'}, 'source': {'type': 'string'}, 'post_time_utc': {'type': 'string'}}}}}}}}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 9 | Finanace | Real-Time Finance Data | Get stocks / market quotes and trends, ETF, international exchanges / forex, crypto, related news and analytics in real-time. | Currency Exchange Rate | Get currency / forex or crypto exchange rates. | GET | {'name': 'Currency Exchange Rate', 'url': 'https://real-time-finance-data.p.rapidapi.com/currency-exchange-rate', 'description': 'Get currency / forex or crypto exchange rates.', 'method': 'GET', 'required_parameters': [{'name': 'from_symbol', 'type': 'STRING', 'description': 'A 3-Letter currency code / symbol (ISO 4217) to convert. For example: *USD*.', 'default': 'USD'}, {'name': 'to_symbol', 'type': 'STRING', 'description': 'A 3-Letter currency code / symbol (ISO 4217) to convert to. For example: *EUR*.', 'default': 'EUR'}], 'optional_parameters': [{'name': 'language', 'type': 'STRING', 'description': 'The language to use for the results, specified as a 2-letter language code - see [ISO 639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes).\n\n**Default**: *en*.', 'default': 'en'}], 'code': 'import requests\n\nurl = "https://real-time-finance-data.p.rapidapi.com/currency-exchange-rate"\nquerystring = {"language": language, "from_symbol": from_symbol, "to_symbol": to_symbol}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "real-time-finance-data.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {'type': 'object', 'properties': {'status': {'type': 'string'}, 'request_id': {'type': 'string'}, 'data': {'type': 'object', 'properties': {'from_symbol': {'type': 'string'}, 'to_symbol': {'type': 'string'}, 'type': {'type': 'string'}, 'exchange_rate': {'type': 'number'}, 'previous_close': {'type': 'number'}, 'last_update_utc': {'type': 'string'}}}}}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 10 | Finanace | Real-Time Finance Data | Get stocks / market quotes and trends, ETF, international exchanges / forex, crypto, related news and analytics in real-time. | Currency Time Series | Get forex time series for the following periods: **1 day**, **5 days**, **1 month**, **6 months**, **year-to-date**, **1 year**, **5 years** and **all times (max)**. | GET | {'name': 'Currency Time Series', 'url': 'https://real-time-finance-data.p.rapidapi.com/currency-time-series', 'description': 'Get forex time series for the following periods: **1 day**, **5 days**, **1 month**, **6 months**, **year-to-date**, **1 year**, **5 years** and **all times (max)**.', 'method': 'GET', 'required_parameters': [{'name': 'period', 'type': 'ENUM', 'description': 'Period for which to return time series.\n\n**Periods:**\n- **1D** - 1 day.\n- **5D** - 5 days.\n- **1M** - 1 month.\n- **6M** - 6 months.\n- **YTD** - year-to-date.\n- **1Y** - 1 year.\n- **5Y** - 5 years.\n- **MAX** - all times.', 'default': ''}, {'name': 'to_symbol', 'type': 'STRING', 'description': 'A 3-Letter currency code / symbol (ISO 4217). For example: *EUR*.', 'default': 'EUR'}, {'name': 'from_symbol', 'type': 'STRING', 'description': 'A 3-Letter currency code / symbol (ISO 4217). For example: *USD*.', 'default': 'USD'}], 'optional_parameters': [{'name': 'language', 'type': 'STRING', 'description': 'The language to use for the results, specified as a 2-letter language code - see [ISO 639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes).\n\n**Default**: *en*.', 'default': 'en'}], 'code': 'import requests\n\nurl = "https://real-time-finance-data.p.rapidapi.com/currency-time-series"\nquerystring = {"language": language, "period": period, "to_symbol": to_symbol, "from_symbol": from_symbol}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "real-time-finance-data.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {'type': 'object', 'properties': {'status': {'type': 'string'}, 'request_id': {'type': 'string'}, 'data': {'type': 'object', 'properties': {'from_symbol': {'type': 'string'}, 'to_symbol': {'type': 'string'}, 'type': {'type': 'string'}, 'exchange_rate': {'type': 'number'}, 'previous_close': {'type': 'number'}, 'last_update_utc': {'type': 'string'}, 'time_series': {'type': 'object', 'properties': {'2022-10-20 23:58:00': {'type': 'object', 'properties': {'exchange_rate': {'type': 'number'}, 'change': {'type': 'integer'}, 'change_percent': {'type': 'integer'}}}, '2022-10-21 23:58:00': {'type': 'object', 'properties': {'exchange_rate': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}}}, '2022-10-22 23:58:00': {'type': 'object', 'properties': {'exchange_rate': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}}}, '2022-10-23 23:58:00': {'type': 'object', 'properties': {'exchange_rate': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}}}, '2022-10-24 23:58:00': {'type': 'object', 'properties': {'exchange_rate': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}}}, '2022-10-25 23:58:00': {'type': 'object', 'properties': {'exchange_rate': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}}}, '2022-10-26 23:58:00': {'type': 'object', 'properties': {'exchange_rate': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}}}, '2022-10-27 23:58:00': {'type': 'object', 'properties': {'exchange_rate': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}}}, '2022-10-28 23:58:00': {'type': 'object', 'properties': {'exchange_rate': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}}}, '2022-10-29 23:58:00': {'type': 'object', 'properties': {'exchange_rate': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}}}, '2022-10-30 23:58:00': {'type': 'object', 'properties': {'exchange_rate': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}}}, '2022-10-31 23:58:00': {'type': 'object', 'properties': {'exchange_rate': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}}}, '2022-11-01 23:58:00': {'type': 'object', 'properties': {'exchange_rate': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}}}, '2022-11-02 23:58:00': {'type': 'object', 'properties': {'exchange_rate': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}}}, '2022-11-03 23:58:00': {'type': 'object', 'properties': {'exchange_rate': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}}}, '2022-11-04 23:58:00': {'type': 'object', 'properties': {'exchange_rate': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}}}, '2022-11-05 23:58:00': {'type': 'object', 'properties': {'exchange_rate': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}}}, '2022-11-06 23:58:00': {'type': 'object', 'properties': {'exchange_rate': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}}}, '2022-11-07 23:58:00': {'type': 'object', 'properties': {'exchange_rate': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}}}, '2022-11-08 23:58:00': {'type': 'object', 'properties': {'exchange_rate': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}}}, '2022-11-09 23:58:00': {'type': 'object', 'properties': {'exchange_rate': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}}}, '2022-11-10 23:58:00': {'type': 'object', 'properties': {'exchange_rate': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}}}, '2022-11-11 23:58:00': {'type': 'object', 'properties': {'exchange_rate': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}}}, '2022-11-12 23:58:00': {'type': 'object', 'properties': {'exchange_rate': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}}}, '2022-11-13 23:58:00': {'type': 'object', 'properties': {'exchange_rate': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}}}, '2022-11-14 23:58:00': {'type': 'object', 'properties': {'exchange_rate': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}}}, '2022-11-15 23:58:00': {'type': 'object', 'properties': {'exchange_rate': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}}}, '2022-11-16 23:58:00': {'type': 'object', 'properties': {'exchange_rate': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}}}, '2022-11-17 23:58:00': {'type': 'object', 'properties': {'exchange_rate': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}}}, '2022-11-18 23:58:00': {'type': 'object', 'properties': {'exchange_rate': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}}}, '2022-11-19 23:58:00': {'type': 'object', 'properties': {'exchange_rate': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}}}, '2022-11-20 09:52:00': {'type': 'object', 'properties': {'exchange_rate': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}}}}}, 'utc_offset_sec': {'type': 'integer'}, 'interval_sec': {'type': 'integer'}, 'period': {'type': 'string'}}}}}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 11 | Finanace | Real-Time Finance Data | Get stocks / market quotes and trends, ETF, international exchanges / forex, crypto, related news and analytics in real-time. | Stock / Company Overview | Get stock / public company details. Supports all stock types: *stock*, *index*, *mutual fund* and *futures*. Returns company details for the *stock* type. | GET | {'name': 'Stock / Company Overview', 'url': 'https://real-time-finance-data.p.rapidapi.com/stock-overview', 'description': 'Get stock / public company details. Supports all stock types: *stock*, *index*, *mutual fund* and *futures*. Returns company details for the *stock* type.', 'method': 'GET', 'required_parameters': [{'name': 'symbol', 'type': 'STRING', 'description': 'Stock symbol (ticker).\n\n**e.g.** *`MSFT:NASDAQ`*\n**e.g.** *`MSFT`*\n**e.g.** *`^DJI`*\n**e.g.** *`VTSAX`*', 'default': 'AAPL:NASDAQ'}], 'optional_parameters': [{'name': 'language', 'type': 'STRING', 'description': 'The language to use for the results, specified as a 2-letter language code - see [ISO 639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes).\n\n**Default**: *en*.', 'default': 'en'}], 'code': 'import requests\n\nurl = "https://real-time-finance-data.p.rapidapi.com/stock-overview"\nquerystring = {"symbol": symbol, "language": language}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "real-time-finance-data.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {'type': 'object', 'properties': {'status': {'type': 'string'}, 'request_id': {'type': 'string'}, 'data': {'type': 'object', 'properties': {'symbol': {'type': 'string'}, 'name': {'type': 'string'}, 'type': {'type': 'string'}, 'price': {'type': 'number'}, 'open': {'type': 'number'}, 'high': {'type': 'number'}, 'low': {'type': 'number'}, 'volume': {'type': 'integer'}, 'previous_close': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'pre_or_post_market': {'type': 'number'}, 'pre_or_post_market_change': {'type': 'number'}, 'pre_or_post_market_change_percent': {'type': 'number'}, 'last_update_utc': {'type': 'string'}, 'country_code': {'type': 'string'}, 'exchange': {'type': 'string'}, 'exchange_open': {'type': 'string'}, 'exchange_close': {'type': 'string'}, 'timezone': {'type': 'string'}, 'utc_offset_sec': {'type': 'integer'}, 'currency': {'type': 'string'}, 'about': {'type': 'string'}, 'year_low': {'type': 'number'}, 'year_high': {'type': 'number'}, 'primary_exchange': {'type': 'string'}, 'company_website': {'type': 'string'}, 'company_country_code': {'type': 'string'}, 'company_country': {'type': 'string'}, 'company_state': {'type': 'string'}, 'company_city': {'type': 'string'}, 'company_street_address': {'type': 'string'}, 'company_ceo': {'type': 'string'}, 'company_employees': {'type': 'integer'}, 'company_cdp_score': {'type': 'string'}, 'company_founded_date': {'type': 'string'}, 'company_cdp_url': {'type': 'string'}, 'avg_volume': {'type': 'integer'}, 'company_pe_ratio': {'type': 'number'}, 'company_market_cap': {'type': 'number'}, 'company_dividend_yield': {'type': 'number'}, 'wikipedia_url': {'type': 'string'}, 'google_mid': {'type': 'string'}}}}}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 12 | Finanace | Real-Time Finance Data | Get stocks / market quotes and trends, ETF, international exchanges / forex, crypto, related news and analytics in real-time. | Company Cash Flow | Get public company's **quarterly** or **annual** cash flow information. Supports the *stock* type only. | GET | {'name': 'Company Cash Flow', 'url': 'https://real-time-finance-data.p.rapidapi.com/company-cash-flow', 'description': "Get public company's **quarterly** or **annual** cash flow information. Supports the *stock* type only.", 'method': 'GET', 'required_parameters': [{'name': 'period', 'type': 'ENUM', 'description': "Period for which to get company's cash flow.\n\n**Periods**: *QUARTERLY*, *ANNUAL*.", 'default': ''}, {'name': 'symbol', 'type': 'STRING', 'description': 'Stock symbol (ticker).\n\n**e.g.** *`MSFT:NASDAQ`*\n**e.g.** *`MSFT`*\n**e.g.** *`AAPL`*', 'default': 'AAPL:NASDAQ'}], 'optional_parameters': [{'name': 'language', 'type': 'STRING', 'description': 'The language to use for the results, specified as a 2-letter language code - see [ISO 639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes).\n\n**Default**: *en*.', 'default': 'en'}], 'code': 'import requests\n\nurl = "https://real-time-finance-data.p.rapidapi.com/company-cash-flow"\nquerystring = {"period": period, "language": language, "symbol": symbol}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "real-time-finance-data.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {'type': 'object', 'properties': {'status': {'type': 'string'}, 'request_id': {'type': 'string'}, 'data': {'type': 'object', 'properties': {'symbol': {'type': 'string'}, 'type': {'type': 'string'}, 'cash_flow': {'type': 'array', 'items': {'type': 'object', 'properties': {'year': {'type': 'integer'}, 'quarter': {'type': 'integer'}, 'currency': {'type': 'string'}, 'net_income': {'type': 'integer'}, 'cash_from_operations': {'type': 'integer'}, 'cash_from_investing': {'type': 'integer'}, 'cash_from_financing': {'type': 'integer'}, 'net_change_in_cash': {'type': 'integer'}, 'free_cash_flow': {'type': 'integer'}}}}, 'period': {'type': 'string'}}}}}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 13 | Finanace | Real-Time Finance Data | Get stocks / market quotes and trends, ETF, international exchanges / forex, crypto, related news and analytics in real-time. | Company Balance Sheet | Get public company's **quarterly** or **annual** balance sheet. Supports the *stock* type only. | GET | {'name': 'Company Balance Sheet', 'url': 'https://real-time-finance-data.p.rapidapi.com/company-balance-sheet', 'description': "Get public company's **quarterly** or **annual** balance sheet. Supports the *stock* type only.", 'method': 'GET', 'required_parameters': [{'name': 'period', 'type': 'ENUM', 'description': "Period for which to get company's balance sheet.\n\n**Periods**: *QUARTERLY*, *ANNUAL*.", 'default': ''}, {'name': 'symbol', 'type': 'STRING', 'description': 'Stock symbol (ticker).\n\n**e.g.** *`MSFT:NASDAQ`*\n**e.g.** *`MSFT`*\n**e.g.** *`AAPL`*', 'default': 'AAPL:NASDAQ'}], 'optional_parameters': [{'name': 'language', 'type': 'STRING', 'description': 'The language to use for the results, specified as a 2-letter language code - see [ISO 639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes).\n\n**Default**: *en*.', 'default': 'en'}], 'code': 'import requests\n\nurl = "https://real-time-finance-data.p.rapidapi.com/company-balance-sheet"\nquerystring = {"language": language, "period": period, "symbol": symbol}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "real-time-finance-data.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {'type': 'object', 'properties': {'status': {'type': 'string'}, 'request_id': {'type': 'string'}, 'data': {'type': 'object', 'properties': {'symbol': {'type': 'string'}, 'type': {'type': 'string'}, 'balance_sheet': {'type': 'array', 'items': {'type': 'object', 'properties': {'year': {'type': 'integer'}, 'currency': {'type': 'string'}, 'cash_and_short_term_investments': {'type': 'number'}, 'total_assets': {'type': 'integer'}, 'total_liabilities': {'type': 'integer'}, 'total_equity': {'type': 'integer'}, 'shares_outstanding': {'type': 'integer'}, 'price_to_book': {'type': 'number'}, 'return_on_assets_percent': {'type': 'number'}, 'return_on_capital_percent': {'type': 'number'}}}}, 'period': {'type': 'string'}}}}}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 14 | Finanace | Real-Time Finance Data | Get stocks / market quotes and trends, ETF, international exchanges / forex, crypto, related news and analytics in real-time. | Company Income Statement | Get public company's **quarterly** or **annual** income statement. Supports the *stock* type only. | GET | {'name': 'Company Income Statement', 'url': 'https://real-time-finance-data.p.rapidapi.com/company-income-statement', 'description': "Get public company's **quarterly** or **annual** income statement. Supports the *stock* type only.", 'method': 'GET', 'required_parameters': [{'name': 'symbol', 'type': 'STRING', 'description': 'Stock symbol (ticker).\n\n**e.g.** *`MSFT:NASDAQ`*\n**e.g.** *`MSFT`*\n**e.g.** *`AAPL`*', 'default': 'AAPL:NASDAQ'}, {'name': 'period', 'type': 'ENUM', 'description': "Period for which to get company's income statement.\n\n**Periods**: *QUARTERLY*, *ANNUAL*.", 'default': ''}], 'optional_parameters': [{'name': 'language', 'type': 'STRING', 'description': 'The language to use for the results, specified as a 2-letter language code - see [ISO 639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes).\n\n**Default**: *en*.', 'default': 'en'}], 'code': 'import requests\n\nurl = "https://real-time-finance-data.p.rapidapi.com/company-income-statement"\nquerystring = {"symbol": symbol, "language": language, "period": period}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "real-time-finance-data.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {'type': 'object', 'properties': {'status': {'type': 'string'}, 'request_id': {'type': 'string'}, 'data': {'type': 'object', 'properties': {'symbol': {'type': 'string'}, 'type': {'type': 'string'}, 'income_statement': {'type': 'array', 'items': {'type': 'object', 'properties': {'year': {'type': 'integer'}, 'quarter': {'type': 'integer'}, 'currency': {'type': 'string'}, 'revenue': {'type': 'integer'}, 'operating_expense': {'type': 'integer'}, 'net_income': {'type': 'integer'}, 'net_profit_margin': {'type': 'number'}, 'earnings_per_share': {'type': 'number'}, 'EBITDA': {'type': 'integer'}, 'effective_task_rate_percent': {'type': 'number'}}}}, 'period': {'type': 'string'}}}}}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 15 | Finanace | Real-Time Finance Data | Get stocks / market quotes and trends, ETF, international exchanges / forex, crypto, related news and analytics in real-time. | Stock News | Get the latest news related to a specific stock. Supports all stock types: *stock*, *index*, *mutual fund* and *futures*. | GET | {'name': 'Stock News', 'url': 'https://real-time-finance-data.p.rapidapi.com/stock-news', 'description': 'Get the latest news related to a specific stock. Supports all stock types: *stock*, *index*, *mutual fund* and *futures*.', 'method': 'GET', 'required_parameters': [{'name': 'symbol', 'type': 'STRING', 'description': 'Stock symbol / ticker.\n\n**e.g.** *`MSFT:NASDAQ`*\n**e.g.** *`MSFT`*\n**e.g.** *`^DJI`*\n**e.g.** *`VTSAX`*', 'default': 'AAPL:NASDAQ'}], 'optional_parameters': [{'name': 'language', 'type': 'STRING', 'description': 'The language to use for the results, specified as a 2-letter language code - see [ISO 639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes).\n\n**Default**: *en*.', 'default': 'en'}], 'code': 'import requests\n\nurl = "https://real-time-finance-data.p.rapidapi.com/stock-news"\nquerystring = {"symbol": symbol, "language": language}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "real-time-finance-data.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {'type': 'object', 'properties': {'status': {'type': 'string'}, 'request_id': {'type': 'string'}, 'data': {'type': 'object', 'properties': {'symbol': {'type': 'string'}, 'type': {'type': 'string'}, 'news': {'type': 'array', 'items': {'type': 'object', 'properties': {'article_title': {'type': 'string'}, 'article_url': {'type': 'string'}, 'article_photo_url': {'type': 'string'}, 'source': {'type': 'string'}, 'post_time_utc': {'type': 'string'}}}}}}}}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 16 | Finanace | Real-Time Finance Data | Get stocks / market quotes and trends, ETF, international exchanges / forex, crypto, related news and analytics in real-time. | Stock Time Series | Get stock time series and key news events for the following periods: **1 day**, **5 days**, **1 month**, **6 months**, **year-to-date**, **1 year**, **5 years** and **all times (max)**. In addition, the endpoints returns the key news events that affected the stock prices in the specified period. Supports all stock types: *stock*, *index*, *mutual fund* and *futures*. | GET | {'name': 'Stock Time Series', 'url': 'https://real-time-finance-data.p.rapidapi.com/stock-time-series', 'description': 'Get stock time series and key news events for the following periods: **1 day**, **5 days**, **1 month**, **6 months**, **year-to-date**, **1 year**, **5 years** and **all times (max)**. In addition, the endpoints returns the key news events that affected the stock prices in the specified period. Supports all stock types: *stock*, *index*, *mutual fund* and *futures*.', 'method': 'GET', 'required_parameters': [{'name': 'period', 'type': 'ENUM', 'description': 'Period for which to return time series and key events.\n\n**Periods:**\n- **1D** - 1 day.\n- **5D** - 5 days.\n- **1M** - 1 month.\n- **6M** - 6 months.\n- **YTD** - year-to-date.\n- **1Y** - 1 year.\n- **5Y** - 5 years.\n- **MAX** - all times.', 'default': ''}, {'name': 'symbol', 'type': 'STRING', 'description': 'Stock symbol (ticker).\n\n**e.g.** *`MSFT:NASDAQ`*\n**e.g.** *`MSFT`*\n**e.g.** *`^DJI`*\n**e.g.** *`VTSAX`*', 'default': 'AAPL:NASDAQ'}], 'optional_parameters': [{'name': 'language', 'type': 'STRING', 'description': 'The language to use for the results, specified as a 2-letter language code - see [ISO 639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes).\n\n**Default**: *en*.', 'default': 'en'}], 'code': 'import requests\n\nurl = "https://real-time-finance-data.p.rapidapi.com/stock-time-series"\nquerystring = {"language": language, "period": period, "symbol": symbol}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "real-time-finance-data.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {'type': 'object', 'properties': {'status': {'type': 'string'}, 'request_id': {'type': 'string'}, 'data': {'type': 'object', 'properties': {'symbol': {'type': 'string'}, 'type': {'type': 'string'}, 'price': {'type': 'number'}, 'previous_close': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'pre_or_post_market': {'type': 'number'}, 'pre_or_post_market_change': {'type': 'number'}, 'pre_or_post_market_change_percent': {'type': 'number'}, 'last_update_utc': {'type': 'string'}, 'time_series': {'type': 'object', 'properties': {'2022-11-14 09:30:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'integer'}, 'change_percent': {'type': 'integer'}, 'volume': {'type': 'integer'}}}, '2022-11-14 10:00:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}, '2022-11-14 10:30:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}, '2022-11-14 11:00:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}, '2022-11-14 11:30:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}, '2022-11-14 12:00:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}, '2022-11-14 12:30:00': {'type': 'object', 'properties': {'price': {'type': 'integer'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}, '2022-11-14 13:00:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}, '2022-11-14 13:30:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}, '2022-11-14 14:00:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}, '2022-11-14 14:30:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}, '2022-11-14 15:00:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}, '2022-11-14 15:30:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}, '2022-11-14 16:00:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}, '2022-11-15 09:30:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}, '2022-11-15 10:00:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}, '2022-11-15 10:30:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}, '2022-11-15 11:00:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}, '2022-11-15 11:30:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}, '2022-11-15 12:00:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}, '2022-11-15 12:30:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}, '2022-11-15 13:00:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}, '2022-11-15 13:30:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}, '2022-11-15 14:00:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}, '2022-11-15 14:30:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}, '2022-11-15 15:00:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}, '2022-11-15 15:30:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}, '2022-11-15 16:00:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}, '2022-11-16 09:30:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}, '2022-11-16 10:00:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}, '2022-11-16 10:30:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}, '2022-11-16 11:00:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}, '2022-11-16 11:30:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}, '2022-11-16 12:00:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}, '2022-11-16 12:30:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}, '2022-11-16 13:00:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}, '2022-11-16 13:30:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}, '2022-11-16 14:00:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}, '2022-11-16 14:30:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}, '2022-11-16 15:00:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}, '2022-11-16 15:30:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}, '2022-11-16 16:00:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}, '2022-11-17 09:30:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}, '2022-11-17 10:00:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}, '2022-11-17 10:30:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}, '2022-11-17 11:00:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}, '2022-11-17 11:30:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}, '2022-11-17 12:00:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}, '2022-11-17 12:30:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}, '2022-11-17 13:00:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}, '2022-11-17 13:30:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}, '2022-11-17 14:00:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}, '2022-11-17 14:30:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}, '2022-11-17 15:00:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}, '2022-11-17 15:30:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}, '2022-11-17 16:00:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}, '2022-11-18 09:30:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}, '2022-11-18 10:00:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}, '2022-11-18 10:30:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}, '2022-11-18 11:00:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}, '2022-11-18 11:30:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}, '2022-11-18 12:00:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}, '2022-11-18 12:30:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}, '2022-11-18 13:00:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}, '2022-11-18 13:30:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}, '2022-11-18 14:00:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}, '2022-11-18 14:30:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}, '2022-11-18 15:00:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}, '2022-11-18 15:30:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}, '2022-11-18 16:00:00': {'type': 'object', 'properties': {'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'volume': {'type': 'integer'}}}}}, 'key_events': {'type': 'array'}, 'utc_offset_sec': {'type': 'integer'}, 'interval_sec': {'type': 'integer'}, 'period': {'type': 'string'}}}}}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 17 | Finanace | Real-Time Finance Data | Get stocks / market quotes and trends, ETF, international exchanges / forex, crypto, related news and analytics in real-time. | Search | Find stocks, indices, mutual funds, futures, currency / forex / crypto using a free-form query or symbol as seen on Google Finance - https://www.google.com/finance. | GET | {'name': 'Search', 'url': 'https://real-time-finance-data.p.rapidapi.com/search', 'description': 'Find stocks, indices, mutual funds, futures, currency / forex / crypto using a free-form query or symbol as seen on Google Finance - https://www.google.com/finance.', 'method': 'GET', 'required_parameters': [{'name': 'query', 'type': 'STRING', 'description': 'Free-form search query.\n\n**e.g.** *`AAPL`*\n**e.g.** *`Microsoft NASDAQ`*\n**e.g.** *`Dow Johns`*\n**e.g.** *`USD to EUR`*', 'default': 'Apple'}], 'optional_parameters': [{'name': 'language', 'type': 'STRING', 'description': 'The language to use for the results, specified as a 2-letter language code - see [ISO 639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes).\n\n**Default**: *en*.', 'default': 'en'}], 'code': 'import requests\n\nurl = "https://real-time-finance-data.p.rapidapi.com/search"\nquerystring = {"language": language, "query": query}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "real-time-finance-data.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {'type': 'object', 'properties': {'status': {'type': 'string'}, 'request_id': {'type': 'string'}, 'data': {'type': 'object', 'properties': {'stock': {'type': 'array', 'items': {'type': 'object', 'properties': {'symbol': {'type': 'string'}, 'name': {'type': 'string'}, 'type': {'type': 'string'}, 'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'previous_close': {'type': 'number'}, 'last_update_utc': {'type': 'string'}, 'country_code': {'type': 'string'}, 'exchange': {'type': 'string'}, 'exchange_open': {'type': 'string'}, 'exchange_close': {'type': 'string'}, 'timezone': {'type': 'string'}, 'utc_offset_sec': {'type': 'integer'}, 'currency': {'type': 'string'}, 'google_mid': {'type': 'string'}}}}, 'index': {'type': 'array', 'items': {'type': 'object', 'properties': {'symbol': {'type': 'string'}, 'name': {'type': 'string'}, 'type': {'type': 'string'}, 'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'previous_close': {'type': 'number'}, 'last_update_utc': {'type': 'string'}, 'exchange_open': {'type': 'string'}, 'exchange_close': {'type': 'string'}, 'timezone': {'type': 'string'}, 'utc_offset_sec': {'type': 'integer'}, 'google_mid': {'type': 'string'}}}}, 'mutual_fund': {'type': 'array', 'items': {'type': 'object', 'properties': {'symbol': {'type': 'string'}, 'name': {'type': 'string'}, 'type': {'type': 'string'}, 'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'previous_close': {'type': 'number'}, 'last_update_utc': {'type': 'string'}, 'currency': {'type': 'string'}, 'google_mid': {'type': 'string'}}}}, 'currency': {'type': 'array', 'items': {'type': 'object', 'properties': {'from_symbol': {'type': 'string'}, 'to_symbol': {'type': 'string'}, 'from_currency_name': {'type': 'string'}, 'to_currency_name': {'type': 'string'}, 'type': {'type': 'string'}, 'exchange_rate': {'type': 'number'}, 'previous_close': {'type': 'number'}, 'last_update_utc': {'type': 'string'}, 'google_mid': {'type': 'string'}}}}, 'futures': {'type': 'array'}, 'ETF': {'type': 'array', 'items': {'type': 'object', 'properties': {'symbol': {'type': 'string'}, 'type': {'type': 'string'}, 'name': {'type': 'string'}, 'price': {'type': 'number'}, 'change': {'type': 'number'}, 'change_percent': {'type': 'number'}, 'previous_close': {'type': 'number'}, 'last_update_utc': {'type': 'string'}, 'google_mid': {'type': 'string'}}}}}}}}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 18 | Finanace | Real-Time Finance Data | Get stocks / market quotes and trends, ETF, international exchanges / forex, crypto, related news and analytics in real-time. | Market Trends | Get the latest market trends and relevant news. Supported trends: **Most Active**, **Gainers**, **Losers**, **Crypto**, **Currencies** and **Climate Leaders**. | GET | {'name': 'Market Trends', 'url': 'https://real-time-finance-data.p.rapidapi.com/market-trends', 'description': 'Get the latest market trends and relevant news. Supported trends: **Most Active**, **Gainers**, **Losers**, **Crypto**, **Currencies** and **Climate Leaders**.', 'method': 'GET', 'required_parameters': [{'name': 'trend_type', 'type': 'ENUM', 'description': 'Trend type.\n\n**Supported trend types:**\n\n- *MARKET_INDEXES*\n- *MOST_ACTIVE*\n- *GAINERS*\n- *LOSERS*\n- *CRYPTO*\n- *CURRENCIES*\n- *CLIMATE_LEADERS*', 'default': ''}], 'optional_parameters': [{'name': 'country', 'type': 'STRING', 'description': 'The country for which to get trends, specified as a 2-letter country code - see [ISO 3166](https://en.wikipedia.org/wiki/List_of_ISO_3166_country_codes).\n\n**Default**: *us*.', 'default': 'us'}, {'name': 'language', 'type': 'STRING', 'description': 'The language to use for the results, specified as a 2-letter language code - see [ISO 639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes).\n\n**Default**: *en*.', 'default': 'en'}], 'code': 'import requests\n\nurl = "https://real-time-finance-data.p.rapidapi.com/market-trends"\nquerystring = {"country": country, "trend_type": trend_type, "language": language}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "real-time-finance-data.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {'type': 'object', 'properties': {'status': {'type': 'string'}, 'request_id': {'type': 'string'}, 'data': {'type': 'object', 'properties': {'trends': {'type': 'array', 'items': {'type': 'object'}}, 'news': {'type': 'array', 'items': {'type': 'object', 'properties': {'article_title': {'type': 'string'}, 'article_url': {'type': 'string'}, 'article_photo_url': {'type': 'string'}, 'source': {'type': 'string'}, 'post_time_utc': {'type': 'string'}, 'stocks_in_news': {'type': 'array', 'items': {'type': 'object'}}}}}}}}}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 19 | Entertainment | YTStream - Download YouTube Videos | It is a web service that empowers its users to download or stream Youtube videos. It is open for Freemium use. It can be used to embed your favorite Youtube videos anywhere and also if you want to deal with deeper details of the video and want to play it yourself then you can use the video info JSON object provided by the API and do whatever you want. | Download/Stream | Return the download information of the video, including the download URL (in the key 'format'), the video title, description, and other details. | GET | {'name': 'Download/Stream', 'url': 'https://ytstream-download-youtube-videos.p.rapidapi.com/dl', 'description': "Return the download information of the video, including the download URL (in the key 'format'), the video title, description, and other details.", 'method': 'GET', 'required_parameters': [{'name': 'id', 'type': 'STRING', 'description': 'Youtube Video Id', 'default': 'UxxajLWwzqY'}], 'optional_parameters': [{'name': 'cgeo', 'type': 'STRING', 'description': 'Country code in ISO 3166 format of the end user. It is important to provide geo of the end user to get the best speed and direct links. Not providing cgeo may lead to extra quota cost in case of proxied link. If links are used in the server, then cgeo will be the geo of the server.'}], 'code': 'import requests\n\nurl = "https://ytstream-download-youtube-videos.p.rapidapi.com/dl"\nquerystring = {"id":"UxxajLWwzqY"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "ytstream-download-youtube-videos.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 20 | Sports | API-NBA | All NBA Stats DATA, Games, Livescore, Standings, Players, Statistics... Documentation : https://api-sports.io/documentation/nba/v2 | Players Statistics per game id | Get statistics from one or more players. > This endpoint requires at least one parameter. | GET | {'name': 'Players Statistics per game id', 'url': 'https://api-nba-v1.p.rapidapi.com/players/statistics', 'description': 'Get statistics from one or more players.\n\n> This endpoint requires at least one parameter.', 'method': 'GET', 'required_parameters': [], 'optional_parameters': [{'name': 'team', 'type': 'NUMBER', 'description': '', 'default': ''}, {'name': 'game', 'type': 'NUMBER', 'description': '', 'default': '8133'}, {'name': 'id', 'type': 'NUMBER', 'description': '', 'default': ''}, {'name': 'season', 'type': 'NUMBER', 'description': '', 'default': ''}], 'code': 'import requests\n\nurl = "https://api-nba-v1.p.rapidapi.com/players/statistics"\nquerystring = {"game": game}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "api-nba-v1.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {'type': 'object', 'properties': {'get': {'type': 'string'}, 'parameters': {'type': 'object', 'properties': {'game': {'type': 'string'}}}, 'errors': {'type': 'array'}, 'results': {'type': 'integer'}, 'response': {'type': 'array', 'items': {'type': 'object'}}}}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 21 | Sports | API-NBA | All NBA Stats DATA, Games, Livescore, Standings, Players, Statistics... Documentation : https://api-sports.io/documentation/nba/v2 | Standings per team and season | Get the standings for a league & season. **Available conferences** * East * West **Available divisions** * Atlantic * Central * Northwest * Pacific * Southeast * Southwest > Parameters `league` & `season` are required. | GET | {'name': 'Standings per team and season', 'url': 'https://api-nba-v1.p.rapidapi.com/standings', 'description': 'Get the standings for a league & season.\n\n**Available conferences**\n* East\n* West\n\n**Available divisions**\n* Atlantic\n* Central\n* Northwest\n* Pacific\n* Southeast\n* Southwest\n\n> Parameters `league` & `season` are required.', 'method': 'GET', 'required_parameters': [], 'optional_parameters': [{'name': 'league', 'type': 'STRING', 'description': '', 'default': 'standard'}, {'name': 'conference', 'type': 'STRING', 'description': '', 'default': ''}, {'name': 'team', 'type': 'NUMBER', 'description': '', 'default': '1'}, {'name': 'division', 'type': 'STRING', 'description': '', 'default': ''}, {'name': 'season', 'type': 'NUMBER', 'description': '', 'default': '2021'}], 'code': 'import requests\n\nurl = "https://api-nba-v1.p.rapidapi.com/standings"\nquerystring = {"league": league, "team": team, "season": season}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "api-nba-v1.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {'type': 'object', 'properties': {'get': {'type': 'string'}, 'parameters': {'type': 'object', 'properties': {'team': {'type': 'string'}, 'league': {'type': 'string'}, 'season': {'type': 'string'}}}, 'errors': {'type': 'array'}, 'results': {'type': 'integer'}, 'response': {'type': 'array', 'items': {'type': 'object', 'properties': {'league': {'type': 'string'}, 'season': {'type': 'integer'}, 'team': {'type': 'object', 'properties': {'id': {'type': 'integer'}, 'name': {'type': 'string'}, 'nickname': {'type': 'string'}, 'code': {'type': 'string'}, 'logo': {'type': 'string'}}}, 'conference': {'type': 'object', 'properties': {'name': {'type': 'string'}, 'rank': {'type': 'integer'}, 'win': {'type': 'integer'}, 'loss': {'type': 'integer'}}}, 'division': {'type': 'object', 'properties': {'name': {'type': 'string'}, 'rank': {'type': 'integer'}, 'win': {'type': 'integer'}, 'loss': {'type': 'integer'}, 'gamesBehind': {'type': 'string'}}}, 'win': {'type': 'object', 'properties': {'home': {'type': 'integer'}, 'away': {'type': 'integer'}, 'total': {'type': 'integer'}, 'percentage': {'type': 'string'}, 'lastTen': {'type': 'integer'}}}, 'loss': {'type': 'object', 'properties': {'home': {'type': 'integer'}, 'away': {'type': 'integer'}, 'total': {'type': 'integer'}, 'percentage': {'type': 'string'}, 'lastTen': {'type': 'integer'}}}, 'gamesBehind': {'type': 'string'}, 'streak': {'type': 'integer'}, 'winStreak': {'type': 'boolean'}, 'tieBreakerPoints': {'type': 'null'}}}}}}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 22 | Sports | API-NBA | All NBA Stats DATA, Games, Livescore, Standings, Players, Statistics... Documentation : https://api-sports.io/documentation/nba/v2 | Standings per division and season | Get the standings for a league & season. **Available conferences** * East * West **Available divisions** * Atlantic * Central * Northwest * Pacific * Southeast * Southwest > Parameters `league` & `season` are required. | GET | {'name': 'Standings per division and season', 'url': 'https://api-nba-v1.p.rapidapi.com/standings', 'description': 'Get the standings for a league & season.\n\n**Available conferences**\n* East\n* West\n\n**Available divisions**\n* Atlantic\n* Central\n* Northwest\n* Pacific\n* Southeast\n* Southwest\n\n> Parameters `league` & `season` are required.', 'method': 'GET', 'required_parameters': [], 'optional_parameters': [{'name': 'team', 'type': 'NUMBER', 'description': '', 'default': ''}, {'name': 'conference', 'type': 'STRING', 'description': '', 'default': ''}, {'name': 'season', 'type': 'NUMBER', 'description': '', 'default': '2021'}, {'name': 'division', 'type': 'STRING', 'description': '', 'default': 'southeast'}, {'name': 'league', 'type': 'STRING', 'description': '', 'default': 'standard'}], 'code': 'import requests\n\nurl = "https://api-nba-v1.p.rapidapi.com/standings"\nquerystring = {"season": season, "division": division, "league": league}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "api-nba-v1.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {'type': 'object', 'properties': {'get': {'type': 'string'}, 'parameters': {'type': 'object', 'properties': {'season': {'type': 'string'}, 'league': {'type': 'string'}, 'division': {'type': 'string'}}}, 'errors': {'type': 'array'}, 'results': {'type': 'integer'}, 'response': {'type': 'array', 'items': {'type': 'object', 'properties': {'league': {'type': 'string'}, 'season': {'type': 'integer'}, 'team': {'type': 'object', 'properties': {'id': {'type': 'integer'}, 'name': {'type': 'string'}, 'nickname': {'type': 'string'}, 'code': {'type': 'string'}, 'logo': {'type': 'string'}}}, 'conference': {'type': 'object', 'properties': {'name': {'type': 'string'}, 'rank': {'type': 'integer'}, 'win': {'type': 'integer'}, 'loss': {'type': 'integer'}}}, 'division': {'type': 'object', 'properties': {'name': {'type': 'string'}, 'rank': {'type': 'integer'}, 'win': {'type': 'integer'}, 'loss': {'type': 'integer'}, 'gamesBehind': {'type': 'string'}}}, 'win': {'type': 'object', 'properties': {'home': {'type': 'integer'}, 'away': {'type': 'integer'}, 'total': {'type': 'integer'}, 'percentage': {'type': 'string'}, 'lastTen': {'type': 'integer'}}}, 'loss': {'type': 'object', 'properties': {'home': {'type': 'integer'}, 'away': {'type': 'integer'}, 'total': {'type': 'integer'}, 'percentage': {'type': 'string'}, 'lastTen': {'type': 'integer'}}}, 'gamesBehind': {'type': 'string'}, 'streak': {'type': 'integer'}, 'winStreak': {'type': 'boolean'}, 'tieBreakerPoints': {'type': 'null'}}}}}}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 23 | Sports | API-NBA | All NBA Stats DATA, Games, Livescore, Standings, Players, Statistics... Documentation : https://api-sports.io/documentation/nba/v2 | Players | Get data about players. The player `id` are **unique** in the API and players keep it among all seasons. > This endpoint requires at least one parameter. | GET | {'name': 'Players', 'url': 'https://api-nba-v1.p.rapidapi.com/players', 'description': 'Get data about players.\n\nThe player `id` are **unique** in the API and players keep it among all seasons.\n\n> This endpoint requires at least one parameter.', 'method': 'GET', 'required_parameters': [], 'optional_parameters': [{'name': 'search', 'type': 'STRING', 'description': '', 'default': ''}, {'name': 'id', 'type': 'NUMBER', 'description': '', 'default': ''}, {'name': 'season', 'type': 'NUMBER', 'description': '', 'default': '2021'}, {'name': 'country', 'type': 'STRING', 'description': '', 'default': ''}, {'name': 'name', 'type': 'STRING', 'description': '', 'default': ''}, {'name': 'team', 'type': 'NUMBER', 'description': '', 'default': '1'}], 'code': 'import requests\n\nurl = "https://api-nba-v1.p.rapidapi.com/players"\nquerystring = {"season": season, "team": team}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "api-nba-v1.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 24 | Sports | API-NBA | All NBA Stats DATA, Games, Livescore, Standings, Players, Statistics... Documentation : https://api-sports.io/documentation/nba/v2 | Teams per id | Get data about teams. The team `id` are **unique** in the API and teams keep it among all seasons. **Available conferences** * East * West **Available divisions** * Atlantic * Central * Northwest * Pacific * Southeast * Southwest | GET | {'name': 'Teams per id', 'url': 'https://api-nba-v1.p.rapidapi.com/teams', 'description': 'Get data about teams.\n\nThe team `id` are **unique** in the API and teams keep it among all seasons.\n\n**Available conferences**\n* East\n* West\n\n**Available divisions**\n* Atlantic\n* Central\n* Northwest\n* Pacific\n* Southeast\n* Southwest', 'method': 'GET', 'required_parameters': [], 'optional_parameters': [{'name': 'division', 'type': 'STRING', 'description': '', 'default': ''}, {'name': 'name', 'type': 'STRING', 'description': '', 'default': ''}, {'name': 'conference', 'type': 'STRING', 'description': '', 'default': ''}, {'name': 'code', 'type': 'STRING', 'description': '', 'default': ''}, {'name': 'id', 'type': 'NUMBER', 'description': '', 'default': '1'}, {'name': 'search', 'type': 'STRING', 'description': '', 'default': ''}, {'name': 'league', 'type': 'STRING', 'description': '', 'default': ''}], 'code': 'import requests\n\nurl = "https://api-nba-v1.p.rapidapi.com/teams"\nquerystring = {"id": id}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "api-nba-v1.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {'type': 'object', 'properties': {'get': {'type': 'string'}, 'parameters': {'type': 'object', 'properties': {'id': {'type': 'string'}}}, 'errors': {'type': 'array'}, 'results': {'type': 'integer'}, 'response': {'type': 'array', 'items': {'type': 'object', 'properties': {'id': {'type': 'integer'}, 'name': {'type': 'string'}, 'nickname': {'type': 'string'}, 'code': {'type': 'string'}, 'city': {'type': 'string'}, 'logo': {'type': 'string'}, 'allStar': {'type': 'boolean'}, 'nbaFranchise': {'type': 'boolean'}, 'leagues': {'type': 'object', 'properties': {'standard': {'type': 'object', 'properties': {'conference': {'type': 'string'}, 'division': {'type': 'string'}}}, 'vegas': {'type': 'object', 'properties': {'conference': {'type': 'string'}, 'division': {'type': 'string'}}}, 'utah': {'type': 'object', 'properties': {'conference': {'type': 'string'}, 'division': {'type': 'string'}}}, 'sacramento': {'type': 'object', 'properties': {'conference': {'type': 'string'}, 'division': {'type': 'string'}}}}}}}}}}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 25 | Sports | API-NBA | All NBA Stats DATA, Games, Livescore, Standings, Players, Statistics... Documentation : https://api-sports.io/documentation/nba/v2 | Games per team and season | Get the list of games according to the parameters. **Available status** * 1 : Not Started * 2 : live * 3 : Finished > This endpoint requires at least one parameter. | GET | {'name': 'Games per team and season', 'url': 'https://api-nba-v1.p.rapidapi.com/games', 'description': 'Get the list of games according to the parameters.\n\n**Available status**\n* 1 : Not Started\n* 2 : live\n* 3 : Finished\n\n> This endpoint requires at least one parameter.', 'method': 'GET', 'required_parameters': [], 'optional_parameters': [{'name': 'date', 'type': 'DATE (YYYY-MM-DD)', 'description': '', 'default': ''}, {'name': 'h2h', 'type': 'STRING', 'description': '', 'default': ''}, {'name': 'team', 'type': 'NUMBER', 'description': '', 'default': '1'}, {'name': 'id', 'type': 'NUMBER', 'description': '', 'default': ''}, {'name': 'live', 'type': 'STRING', 'description': '', 'default': ''}, {'name': 'season', 'type': 'NUMBER', 'description': '', 'default': '2021'}, {'name': 'league', 'type': 'STRING', 'description': '', 'default': ''}], 'code': 'import requests\n\nurl = "https://api-nba-v1.p.rapidapi.com/games"\nquerystring = {"team": team, "season": season}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "api-nba-v1.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {'type': 'object', 'properties': {'get': {'type': 'string'}, 'parameters': {'type': 'object', 'properties': {'team': {'type': 'string'}, 'season': {'type': 'string'}}}, 'errors': {'type': 'array'}, 'results': {'type': 'integer'}, 'response': {'type': 'array', 'items': {'type': 'object'}}}}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 26 | Sports | API-NBA | All NBA Stats DATA, Games, Livescore, Standings, Players, Statistics... Documentation : https://api-sports.io/documentation/nba/v2 | Games per season | Get the list of games according to the parameters. **Available status** * 1 : Not Started * 2 : live * 3 : Finished > This endpoint requires at least one parameter. | GET | {'name': 'Games per season', 'url': 'https://api-nba-v1.p.rapidapi.com/games', 'description': 'Get the list of games according to the parameters.\n\n**Available status**\n* 1 : Not Started\n* 2 : live\n* 3 : Finished\n\n> This endpoint requires at least one parameter.', 'method': 'GET', 'required_parameters': [], 'optional_parameters': [{'name': 'id', 'type': 'NUMBER', 'description': '', 'default': ''}, {'name': 'season', 'type': 'NUMBER', 'description': '', 'default': '2021'}, {'name': 'date', 'type': 'DATE (YYYY-MM-DD)', 'description': '', 'default': ''}, {'name': 'live', 'type': 'STRING', 'description': '', 'default': ''}, {'name': 'team', 'type': 'NUMBER', 'description': '', 'default': ''}, {'name': 'h2h', 'type': 'STRING', 'description': '', 'default': ''}, {'name': 'league', 'type': 'STRING', 'description': '', 'default': ''}], 'code': 'import requests\n\nurl = "https://api-nba-v1.p.rapidapi.com/games"\nquerystring = {"season": season}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "api-nba-v1.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {'type': 'object', 'properties': {'get': {'type': 'string'}, 'parameters': {'type': 'object', 'properties': {'season': {'type': 'string'}}}, 'errors': {'type': 'array'}, 'results': {'type': 'integer'}, 'response': {'type': 'array', 'items': {'type': 'object'}}}}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 27 | Sports | API-NBA | All NBA Stats DATA, Games, Livescore, Standings, Players, Statistics... Documentation : https://api-sports.io/documentation/nba/v2 | Games per id | Get the list of games according to the parameters. **Available status** * 1 : Not Started * 2 : live * 3 : Finished > This endpoint requires at least one parameter. | GET | {'name': 'Games per id', 'url': 'https://api-nba-v1.p.rapidapi.com/games', 'description': 'Get the list of games according to the parameters.\n\n**Available status**\n* 1 : Not Started\n* 2 : live\n* 3 : Finished\n\n> This endpoint requires at least one parameter.', 'method': 'GET', 'required_parameters': [], 'optional_parameters': [{'name': 'team', 'type': 'NUMBER', 'description': '', 'default': ''}, {'name': 'league', 'type': 'STRING', 'description': '', 'default': ''}, {'name': 'id', 'type': 'NUMBER', 'description': '', 'default': '8899'}, {'name': 'season', 'type': 'NUMBER', 'description': '', 'default': ''}, {'name': 'h2h', 'type': 'STRING', 'description': '', 'default': ''}, {'name': 'date', 'type': 'DATE (YYYY-MM-DD)', 'description': '', 'default': ''}, {'name': 'live', 'type': 'STRING', 'description': '', 'default': ''}], 'code': 'import requests\n\nurl = "https://api-nba-v1.p.rapidapi.com/games"\nquerystring = {"id": id}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "api-nba-v1.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {'type': 'object', 'properties': {'get': {'type': 'string'}, 'parameters': {'type': 'object', 'properties': {'id': {'type': 'string'}}}, 'errors': {'type': 'array'}, 'results': {'type': 'integer'}, 'response': {'type': 'array', 'items': {'type': 'object', 'properties': {'id': {'type': 'integer'}, 'league': {'type': 'string'}, 'season': {'type': 'integer'}, 'date': {'type': 'object', 'properties': {'start': {'type': 'string'}, 'end': {'type': 'string'}, 'duration': {'type': 'string'}}}, 'stage': {'type': 'integer'}, 'status': {'type': 'object', 'properties': {'clock': {'type': 'null'}, 'halftime': {'type': 'boolean'}, 'short': {'type': 'integer'}, 'long': {'type': 'string'}}}, 'periods': {'type': 'object', 'properties': {'current': {'type': 'integer'}, 'total': {'type': 'integer'}, 'endOfPeriod': {'type': 'boolean'}}}, 'arena': {'type': 'object', 'properties': {'name': {'type': 'string'}, 'city': {'type': 'string'}, 'state': {'type': 'string'}, 'country': {'type': 'string'}}}, 'teams': {'type': 'object', 'properties': {'visitors': {'type': 'object', 'properties': {'id': {'type': 'integer'}, 'name': {'type': 'string'}, 'nickname': {'type': 'string'}, 'code': {'type': 'string'}, 'logo': {'type': 'string'}}}, 'home': {'type': 'object', 'properties': {'id': {'type': 'integer'}, 'name': {'type': 'string'}, 'nickname': {'type': 'string'}, 'code': {'type': 'string'}, 'logo': {'type': 'string'}}}}}, 'scores': {'type': 'object', 'properties': {'visitors': {'type': 'object', 'properties': {'win': {'type': 'integer'}, 'loss': {'type': 'integer'}, 'series': {'type': 'object', 'properties': {'win': {'type': 'integer'}, 'loss': {'type': 'integer'}}}, 'linescore': {'type': 'array', 'items': {'type': 'string'}}, 'points': {'type': 'integer'}}}, 'home': {'type': 'object', 'properties': {'win': {'type': 'integer'}, 'loss': {'type': 'integer'}, 'series': {'type': 'object', 'properties': {'win': {'type': 'integer'}, 'loss': {'type': 'integer'}}}, 'linescore': {'type': 'array', 'items': {'type': 'string'}}, 'points': {'type': 'integer'}}}}}, 'officials': {'type': 'array', 'items': {'type': 'string'}}, 'timesTied': {'type': 'integer'}, 'leadChanges': {'type': 'integer'}, 'nugget': {'type': 'null'}}}}}}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 28 | Sports | API-NBA | All NBA Stats DATA, Games, Livescore, Standings, Players, Statistics... Documentation : https://api-sports.io/documentation/nba/v2 | Games between two teams | Get the list of games according to the parameters. **Available status** * 1 : Not Started * 2 : live * 3 : Finished > This endpoint requires at least one parameter. | GET | {'name': 'Games between two teams', 'url': 'https://api-nba-v1.p.rapidapi.com/games', 'description': 'Get the list of games according to the parameters.\n\n**Available status**\n* 1 : Not Started\n* 2 : live\n* 3 : Finished\n\n> This endpoint requires at least one parameter.', 'method': 'GET', 'required_parameters': [], 'optional_parameters': [{'name': 'team', 'type': 'NUMBER', 'description': '', 'default': ''}, {'name': 'live', 'type': 'STRING', 'description': '', 'default': ''}, {'name': 'season', 'type': 'NUMBER', 'description': '', 'default': ''}, {'name': 'id', 'type': 'NUMBER', 'description': '', 'default': ''}, {'name': 'date', 'type': 'DATE (YYYY-MM-DD)', 'description': '', 'default': ''}, {'name': 'h2h', 'type': 'STRING', 'description': '', 'default': '1-2'}, {'name': 'league', 'type': 'STRING', 'description': '', 'default': ''}], 'code': 'import requests\n\nurl = "https://api-nba-v1.p.rapidapi.com/games"\nquerystring = {"h2h": h2h}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "api-nba-v1.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {'type': 'object', 'properties': {'get': {'type': 'string'}, 'parameters': {'type': 'object', 'properties': {'h2h': {'type': 'string'}}}, 'errors': {'type': 'array'}, 'results': {'type': 'integer'}, 'response': {'type': 'array', 'items': {'type': 'object'}}}}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 29 | Sports | API-NBA | All NBA Stats DATA, Games, Livescore, Standings, Players, Statistics... Documentation : https://api-sports.io/documentation/nba/v2 | Players Statistics per player and season | Get statistics from one or more players. > This endpoint requires at least one parameter. | GET | {'name': 'Players Statistics per player and season', 'url': 'https://api-nba-v1.p.rapidapi.com/players/statistics', 'description': 'Get statistics from one or more players.\n\n> This endpoint requires at least one parameter.', 'method': 'GET', 'required_parameters': [], 'optional_parameters': [{'name': 'game', 'type': 'NUMBER', 'description': '', 'default': ''}, {'name': 'season', 'type': 'NUMBER', 'description': '', 'default': '2020'}, {'name': 'id', 'type': 'NUMBER', 'description': '', 'default': '236'}, {'name': 'team', 'type': 'NUMBER', 'description': '', 'default': ''}], 'code': 'import requests\n\nurl = "https://api-nba-v1.p.rapidapi.com/players/statistics"\nquerystring = {"season": season, "id": id}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "api-nba-v1.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {'type': 'object', 'properties': {'get': {'type': 'string'}, 'parameters': {'type': 'object', 'properties': {'season': {'type': 'string'}, 'id': {'type': 'string'}}}, 'errors': {'type': 'array'}, 'results': {'type': 'integer'}, 'response': {'type': 'array', 'items': {'type': 'object', 'properties': {'player': {'type': 'object', 'properties': {'id': {'type': 'integer'}, 'firstname': {'type': 'string'}, 'lastname': {'type': 'string'}}}, 'team': {'type': 'object', 'properties': {'id': {'type': 'integer'}, 'name': {'type': 'string'}, 'nickname': {'type': 'string'}, 'code': {'type': 'string'}, 'logo': {'type': 'string'}}}, 'game': {'type': 'object', 'properties': {'id': {'type': 'integer'}}}, 'points': {'type': 'integer'}, 'pos': {'type': 'string'}, 'min': {'type': 'string'}, 'fgm': {'type': 'integer'}, 'fga': {'type': 'integer'}, 'fgp': {'type': 'string'}, 'ftm': {'type': 'integer'}, 'fta': {'type': 'integer'}, 'ftp': {'type': 'string'}, 'tpm': {'type': 'integer'}, 'tpa': {'type': 'integer'}, 'tpp': {'type': 'string'}, 'offReb': {'type': 'integer'}, 'defReb': {'type': 'integer'}, 'totReb': {'type': 'integer'}, 'assists': {'type': 'integer'}, 'pFouls': {'type': 'integer'}, 'steals': {'type': 'integer'}, 'turnovers': {'type': 'integer'}, 'blocks': {'type': 'integer'}, 'plusMinus': {'type': 'string'}, 'comment': {'type': 'null'}}}}}}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 30 | Sports | API-NBA | All NBA Stats DATA, Games, Livescore, Standings, Players, Statistics... Documentation : https://api-sports.io/documentation/nba/v2 | Players Statistics per team and season | Get statistics from one or more players. > This endpoint requires at least one parameter. | GET | {'name': 'Players Statistics per team and season', 'url': 'https://api-nba-v1.p.rapidapi.com/players/statistics', 'description': 'Get statistics from one or more players.\n\n> This endpoint requires at least one parameter.', 'method': 'GET', 'required_parameters': [], 'optional_parameters': [{'name': 'season', 'type': 'NUMBER', 'description': '', 'default': '2020'}, {'name': 'game', 'type': 'NUMBER', 'description': '', 'default': ''}, {'name': 'team', 'type': 'NUMBER', 'description': '', 'default': '1'}, {'name': 'id', 'type': 'NUMBER', 'description': '', 'default': ''}], 'code': 'import requests\n\nurl = "https://api-nba-v1.p.rapidapi.com/players/statistics"\nquerystring = {"season": season, "team": team}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "api-nba-v1.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {'type': 'object', 'properties': {'get': {'type': 'string'}, 'parameters': {'type': 'object', 'properties': {'team': {'type': 'string'}, 'season': {'type': 'string'}}}, 'errors': {'type': 'array'}, 'results': {'type': 'integer'}, 'response': {'type': 'array', 'items': {'type': 'object'}}}}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 31 | Sports | API-NBA | All NBA Stats DATA, Games, Livescore, Standings, Players, Statistics... Documentation : https://api-sports.io/documentation/nba/v2 | Search players | Search a player by lastname. | GET | {'name': 'Search players', 'url': 'https://api-nba-v1.p.rapidapi.com/players', 'description': 'Search a player by lastname.', 'method': 'GET', 'required_parameters': [], 'optional_parameters': [{'name': 'season', 'type': 'NUMBER', 'description': '', 'default': ''}, {'name': 'search', 'type': 'STRING', 'description': '', 'default': 'james'}, {'name': 'country', 'type': 'STRING', 'description': '', 'default': ''}, {'name': 'id', 'type': 'NUMBER', 'description': '', 'default': ''}, {'name': 'team', 'type': 'NUMBER', 'description': '', 'default': ''}, {'name': 'name', 'type': 'STRING', 'description': '', 'default': ''}], 'code': 'import requests\n\nurl = "https://api-nba-v1.p.rapidapi.com/players"\nquerystring = {"search": search}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "api-nba-v1.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {'type': 'object', 'properties': {'get': {'type': 'string'}, 'parameters': {'type': 'object', 'properties': {'search': {'type': 'string'}}}, 'errors': {'type': 'array'}, 'results': {'type': 'integer'}, 'response': {'type': 'array', 'items': {'type': 'object'}}}}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 32 | Sports | API-NBA | All NBA Stats DATA, Games, Livescore, Standings, Players, Statistics... Documentation : https://api-sports.io/documentation/nba/v2 | Search teams | Search team by name. | GET | {'name': 'Search teams', 'url': 'https://api-nba-v1.p.rapidapi.com/teams', 'description': 'Search team by name.', 'method': 'GET', 'required_parameters': [], 'optional_parameters': [{'name': 'code', 'type': 'STRING', 'description': '', 'default': ''}, {'name': 'league', 'type': 'STRING', 'description': '', 'default': ''}, {'name': 'division', 'type': 'STRING', 'description': '', 'default': ''}, {'name': 'search', 'type': 'STRING', 'description': '', 'default': 'atl'}, {'name': 'name', 'type': 'STRING', 'description': '', 'default': ''}, {'name': 'id', 'type': 'NUMBER', 'description': '', 'default': ''}, {'name': 'conference', 'type': 'STRING', 'description': '', 'default': ''}], 'code': 'import requests\n\nurl = "https://api-nba-v1.p.rapidapi.com/teams"\nquerystring = {"search": search}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "api-nba-v1.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {'type': 'object', 'properties': {'get': {'type': 'string'}, 'parameters': {'type': 'object', 'properties': {'search': {'type': 'string'}}}, 'errors': {'type': 'array'}, 'results': {'type': 'integer'}, 'response': {'type': 'array', 'items': {'type': 'object', 'properties': {'id': {'type': 'integer'}, 'name': {'type': 'string'}, 'nickname': {'type': 'string'}, 'code': {'type': 'string'}, 'city': {'type': 'string'}, 'logo': {'type': 'string'}, 'allStar': {'type': 'boolean'}, 'nbaFranchise': {'type': 'boolean'}, 'leagues': {'type': 'object', 'properties': {'standard': {'type': 'object', 'properties': {'conference': {'type': 'string'}, 'division': {'type': 'string'}}}, 'vegas': {'type': 'object', 'properties': {'conference': {'type': 'string'}, 'division': {'type': 'string'}}}, 'utah': {'type': 'object', 'properties': {'conference': {'type': 'string'}, 'division': {'type': 'string'}}}, 'sacramento': {'type': 'object', 'properties': {'conference': {'type': 'string'}, 'division': {'type': 'string'}}}}}}}}}}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 33 | Sports | API-NBA | All NBA Stats DATA, Games, Livescore, Standings, Players, Statistics... Documentation : https://api-sports.io/documentation/nba/v2 | Standings per conference and season | Get the standings for a league & season. **Available conferences** * East * West **Available divisions** * Atlantic * Central * Northwest * Pacific * Southeast * Southwest > Parameters `league` & `season` are required. | GET | {'name': 'Standings per conference and season', 'url': 'https://api-nba-v1.p.rapidapi.com/standings', 'description': 'Get the standings for a league & season.\n\n**Available conferences**\n* East\n* West\n\n**Available divisions**\n* Atlantic\n* Central\n* Northwest\n* Pacific\n* Southeast\n* Southwest\n\n> Parameters `league` & `season` are required.', 'method': 'GET', 'required_parameters': [], 'optional_parameters': [{'name': 'team', 'type': 'NUMBER', 'description': '', 'default': ''}, {'name': 'league', 'type': 'STRING', 'description': '', 'default': 'standard'}, {'name': 'division', 'type': 'STRING', 'description': '', 'default': ''}, {'name': 'season', 'type': 'NUMBER', 'description': '', 'default': '2021'}, {'name': 'conference', 'type': 'STRING', 'description': '', 'default': 'east'}], 'code': 'import requests\n\nurl = "https://api-nba-v1.p.rapidapi.com/standings"\nquerystring = {"league": league, "season": season, "conference": conference}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "api-nba-v1.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {'type': 'object', 'properties': {'get': {'type': 'string'}, 'parameters': {'type': 'object', 'properties': {'season': {'type': 'string'}, 'league': {'type': 'string'}, 'conference': {'type': 'string'}}}, 'errors': {'type': 'array'}, 'results': {'type': 'integer'}, 'response': {'type': 'array', 'items': {'type': 'object', 'properties': {'league': {'type': 'string'}, 'season': {'type': 'integer'}, 'team': {'type': 'object', 'properties': {'id': {'type': 'integer'}, 'name': {'type': 'string'}, 'nickname': {'type': 'string'}, 'code': {'type': 'string'}, 'logo': {'type': 'string'}}}, 'conference': {'type': 'object', 'properties': {'name': {'type': 'string'}, 'rank': {'type': 'integer'}, 'win': {'type': 'integer'}, 'loss': {'type': 'integer'}}}, 'division': {'type': 'object', 'properties': {'name': {'type': 'string'}, 'rank': {'type': 'integer'}, 'win': {'type': 'integer'}, 'loss': {'type': 'integer'}, 'gamesBehind': {'type': 'string'}}}, 'win': {'type': 'object', 'properties': {'home': {'type': 'integer'}, 'away': {'type': 'integer'}, 'total': {'type': 'integer'}, 'percentage': {'type': 'string'}, 'lastTen': {'type': 'integer'}}}, 'loss': {'type': 'object', 'properties': {'home': {'type': 'integer'}, 'away': {'type': 'integer'}, 'total': {'type': 'integer'}, 'percentage': {'type': 'string'}, 'lastTen': {'type': 'integer'}}}, 'gamesBehind': {'type': 'string'}, 'streak': {'type': 'integer'}, 'winStreak': {'type': 'boolean'}, 'tieBreakerPoints': {'type': 'null'}}}}}}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 34 | Sports | API-NBA | All NBA Stats DATA, Games, Livescore, Standings, Players, Statistics... Documentation : https://api-sports.io/documentation/nba/v2 | Players per country | Get data about players. The player `id` are **unique** in the API and players keep it among all seasons. > This endpoint requires at least one parameter. | GET | {'name': 'Players per country', 'url': 'https://api-nba-v1.p.rapidapi.com/players', 'description': 'Get data about players.\n\nThe player `id` are **unique** in the API and players keep it among all seasons.\n\n> This endpoint requires at least one parameter.', 'method': 'GET', 'required_parameters': [], 'optional_parameters': [{'name': 'season', 'type': 'NUMBER', 'description': '', 'default': ''}, {'name': 'name', 'type': 'STRING', 'description': '', 'default': ''}, {'name': 'id', 'type': 'NUMBER', 'description': '', 'default': ''}, {'name': 'team', 'type': 'NUMBER', 'description': '', 'default': ''}, {'name': 'country', 'type': 'STRING', 'description': '', 'default': 'spain'}, {'name': 'search', 'type': 'STRING', 'description': '', 'default': ''}], 'code': 'import requests\n\nurl = "https://api-nba-v1.p.rapidapi.com/players"\nquerystring = {"country": country}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "api-nba-v1.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {'type': 'object', 'properties': {'get': {'type': 'string'}, 'parameters': {'type': 'object', 'properties': {'country': {'type': 'string'}}}, 'errors': {'type': 'array'}, 'results': {'type': 'integer'}, 'response': {'type': 'array', 'items': {'type': 'object'}}}}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 35 | Sports | API-NBA | All NBA Stats DATA, Games, Livescore, Standings, Players, Statistics... Documentation : https://api-sports.io/documentation/nba/v2 | Players per id | Get data about players. The player `id` are **unique** in the API and players keep it among all seasons. > This endpoint requires at least one parameter. | GET | {'name': 'Players per id', 'url': 'https://api-nba-v1.p.rapidapi.com/players', 'description': 'Get data about players.\n\nThe player `id` are **unique** in the API and players keep it among all seasons.\n\n> This endpoint requires at least one parameter.', 'method': 'GET', 'required_parameters': [], 'optional_parameters': [{'name': 'search', 'type': 'STRING', 'description': '', 'default': ''}, {'name': 'season', 'type': 'NUMBER', 'description': '', 'default': ''}, {'name': 'name', 'type': 'STRING', 'description': '', 'default': ''}, {'name': 'country', 'type': 'STRING', 'description': '', 'default': ''}, {'name': 'team', 'type': 'NUMBER', 'description': '', 'default': ''}, {'name': 'id', 'type': 'NUMBER', 'description': '', 'default': '1'}], 'code': 'import requests\n\nurl = "https://api-nba-v1.p.rapidapi.com/players"\nquerystring = {"id": id}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "api-nba-v1.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {'type': 'object', 'properties': {'get': {'type': 'string'}, 'parameters': {'type': 'object', 'properties': {'id': {'type': 'string'}}}, 'errors': {'type': 'array'}, 'results': {'type': 'integer'}, 'response': {'type': 'array', 'items': {'type': 'object', 'properties': {'id': {'type': 'integer'}, 'firstname': {'type': 'string'}, 'lastname': {'type': 'string'}, 'birth': {'type': 'object', 'properties': {'date': {'type': 'string'}, 'country': {'type': 'string'}}}, 'nba': {'type': 'object', 'properties': {'start': {'type': 'integer'}, 'pro': {'type': 'integer'}}}, 'height': {'type': 'object', 'properties': {'feets': {'type': 'null'}, 'inches': {'type': 'null'}, 'meters': {'type': 'null'}}}, 'weight': {'type': 'object', 'properties': {'pounds': {'type': 'null'}, 'kilograms': {'type': 'null'}}}, 'college': {'type': 'null'}, 'affiliation': {'type': 'string'}, 'leagues': {'type': 'object', 'properties': {'standard': {'type': 'object', 'properties': {'jersey': {'type': 'integer'}, 'active': {'type': 'boolean'}, 'pos': {'type': 'null'}}}}}}}}}}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 36 | Sports | API-NBA | All NBA Stats DATA, Games, Livescore, Standings, Players, Statistics... Documentation : https://api-sports.io/documentation/nba/v2 | Players per team and season | Get data about players. The player `id` are **unique** in the API and players keep it among all seasons. > This endpoint requires at least one parameter. | GET | {'name': 'Players per team and season', 'url': 'https://api-nba-v1.p.rapidapi.com/players', 'description': 'Get data about players.\n\nThe player `id` are **unique** in the API and players keep it among all seasons.\n\n> This endpoint requires at least one parameter.', 'method': 'GET', 'required_parameters': [], 'optional_parameters': [{'name': 'season', 'type': 'NUMBER', 'description': '', 'default': '2021'}, {'name': 'country', 'type': 'STRING', 'description': '', 'default': ''}, {'name': 'name', 'type': 'STRING', 'description': '', 'default': ''}, {'name': 'search', 'type': 'STRING', 'description': '', 'default': ''}, {'name': 'team', 'type': 'NUMBER', 'description': '', 'default': '1'}, {'name': 'id', 'type': 'NUMBER', 'description': '', 'default': ''}], 'code': 'import requests\n\nurl = "https://api-nba-v1.p.rapidapi.com/players"\nquerystring = {"season": season, "team": team}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "api-nba-v1.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 37 | Sports | API-NBA | All NBA Stats DATA, Games, Livescore, Standings, Players, Statistics... Documentation : https://api-sports.io/documentation/nba/v2 | Teams per code | Get data about teams. The team `id` are **unique** in the API and teams keep it among all seasons. **Available conferences** * East * West **Available divisions** * Atlantic * Central * Northwest * Pacific * Southeast * Southwest | GET | {'name': 'Teams per code', 'url': 'https://api-nba-v1.p.rapidapi.com/teams', 'description': 'Get data about teams.\n\nThe team `id` are **unique** in the API and teams keep it among all seasons.\n\n**Available conferences**\n* East\n* West\n\n**Available divisions**\n* Atlantic\n* Central\n* Northwest\n* Pacific\n* Southeast\n* Southwest', 'method': 'GET', 'required_parameters': [], 'optional_parameters': [{'name': 'league', 'type': 'STRING', 'description': '', 'default': ''}, {'name': 'id', 'type': 'NUMBER', 'description': '', 'default': ''}, {'name': 'code', 'type': 'STRING', 'description': '', 'default': 'ATL'}, {'name': 'name', 'type': 'STRING', 'description': '', 'default': ''}, {'name': 'division', 'type': 'STRING', 'description': '', 'default': ''}, {'name': 'search', 'type': 'STRING', 'description': '', 'default': ''}, {'name': 'conference', 'type': 'STRING', 'description': '', 'default': ''}], 'code': 'import requests\n\nurl = "https://api-nba-v1.p.rapidapi.com/teams"\nquerystring = {"code": code}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "api-nba-v1.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {'type': 'object', 'properties': {'get': {'type': 'string'}, 'parameters': {'type': 'object', 'properties': {'code': {'type': 'string'}}}, 'errors': {'type': 'array'}, 'results': {'type': 'integer'}, 'response': {'type': 'array', 'items': {'type': 'object', 'properties': {'id': {'type': 'integer'}, 'name': {'type': 'string'}, 'nickname': {'type': 'string'}, 'code': {'type': 'string'}, 'city': {'type': 'string'}, 'logo': {'type': 'string'}, 'allStar': {'type': 'boolean'}, 'nbaFranchise': {'type': 'boolean'}, 'leagues': {'type': 'object', 'properties': {'standard': {'type': 'object', 'properties': {'conference': {'type': 'string'}, 'division': {'type': 'string'}}}, 'vegas': {'type': 'object', 'properties': {'conference': {'type': 'string'}, 'division': {'type': 'string'}}}, 'utah': {'type': 'object', 'properties': {'conference': {'type': 'string'}, 'division': {'type': 'string'}}}, 'sacramento': {'type': 'object', 'properties': {'conference': {'type': 'string'}, 'division': {'type': 'string'}}}}}}}}}}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 38 | Sports | API-NBA | All NBA Stats DATA, Games, Livescore, Standings, Players, Statistics... Documentation : https://api-sports.io/documentation/nba/v2 | Teams per division | Get data about teams. The team `id` are **unique** in the API and teams keep it among all seasons. **Available conferences** * East * West **Available divisions** * Atlantic * Central * Northwest * Pacific * Southeast * Southwest | GET | {'name': 'Teams per division', 'url': 'https://api-nba-v1.p.rapidapi.com/teams', 'description': 'Get data about teams.\n\nThe team `id` are **unique** in the API and teams keep it among all seasons.\n\n**Available conferences**\n* East\n* West\n\n**Available divisions**\n* Atlantic\n* Central\n* Northwest\n* Pacific\n* Southeast\n* Southwest', 'method': 'GET', 'required_parameters': [], 'optional_parameters': [{'name': 'name', 'type': 'STRING', 'description': '', 'default': ''}, {'name': 'league', 'type': 'STRING', 'description': '', 'default': ''}, {'name': 'id', 'type': 'NUMBER', 'description': '', 'default': ''}, {'name': 'code', 'type': 'STRING', 'description': '', 'default': ''}, {'name': 'division', 'type': 'STRING', 'description': '', 'default': 'Southeast'}, {'name': 'search', 'type': 'STRING', 'description': '', 'default': ''}, {'name': 'conference', 'type': 'STRING', 'description': '', 'default': ''}], 'code': 'import requests\n\nurl = "https://api-nba-v1.p.rapidapi.com/teams"\nquerystring = {"division": division}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "api-nba-v1.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {'type': 'object', 'properties': {'get': {'type': 'string'}, 'parameters': {'type': 'object', 'properties': {'division': {'type': 'string'}}}, 'errors': {'type': 'array'}, 'results': {'type': 'integer'}, 'response': {'type': 'array', 'items': {'type': 'object', 'properties': {'id': {'type': 'integer'}, 'name': {'type': 'string'}, 'nickname': {'type': 'string'}, 'code': {'type': 'string'}, 'city': {'type': 'string'}, 'logo': {'type': 'string'}, 'allStar': {'type': 'boolean'}, 'nbaFranchise': {'type': 'boolean'}, 'leagues': {'type': 'object'}}}}}}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 39 | Sports | API-NBA | All NBA Stats DATA, Games, Livescore, Standings, Players, Statistics... Documentation : https://api-sports.io/documentation/nba/v2 | Teams per conference | Get data about teams. The team `id` are **unique** in the API and teams keep it among all seasons. **Available conferences** * East * West **Available divisions** * Atlantic * Central * Northwest * Pacific * Southeast * Southwest | GET | {'name': 'Teams per conference', 'url': 'https://api-nba-v1.p.rapidapi.com/teams', 'description': 'Get data about teams.\n\nThe team `id` are **unique** in the API and teams keep it among all seasons.\n\n**Available conferences**\n* East\n* West\n\n**Available divisions**\n* Atlantic\n* Central\n* Northwest\n* Pacific\n* Southeast\n* Southwest', 'method': 'GET', 'required_parameters': [], 'optional_parameters': [{'name': 'search', 'type': 'STRING', 'description': '', 'default': ''}, {'name': 'division', 'type': 'STRING', 'description': '', 'default': ''}, {'name': 'conference', 'type': 'STRING', 'description': '', 'default': 'East'}, {'name': 'league', 'type': 'STRING', 'description': '', 'default': ''}, {'name': 'id', 'type': 'NUMBER', 'description': '', 'default': ''}, {'name': 'code', 'type': 'STRING', 'description': '', 'default': ''}, {'name': 'name', 'type': 'STRING', 'description': '', 'default': ''}], 'code': 'import requests\n\nurl = "https://api-nba-v1.p.rapidapi.com/teams"\nquerystring = {"conference": conference}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "api-nba-v1.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {'type': 'object', 'properties': {'get': {'type': 'string'}, 'parameters': {'type': 'object', 'properties': {'conference': {'type': 'string'}}}, 'errors': {'type': 'array'}, 'results': {'type': 'integer'}, 'response': {'type': 'array', 'items': {'type': 'object'}}}}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 40 | Sports | API-NBA | All NBA Stats DATA, Games, Livescore, Standings, Players, Statistics... Documentation : https://api-sports.io/documentation/nba/v2 | Games per date | Get the list of games according to the parameters. **Available status** * 1 : Not Started * 2 : live * 3 : Finished > This endpoint requires at least one parameter. | GET | {'name': 'Games per date', 'url': 'https://api-nba-v1.p.rapidapi.com/games', 'description': 'Get the list of games according to the parameters.\n\n**Available status**\n* 1 : Not Started\n* 2 : live\n* 3 : Finished\n\n> This endpoint requires at least one parameter.', 'method': 'GET', 'required_parameters': [], 'optional_parameters': [{'name': 'team', 'type': 'NUMBER', 'description': '', 'default': ''}, {'name': 'league', 'type': 'STRING', 'description': '', 'default': ''}, {'name': 'date', 'type': 'DATE (YYYY-MM-DD)', 'description': '', 'default': '2022-02-12'}, {'name': 'season', 'type': 'NUMBER', 'description': '', 'default': ''}, {'name': 'id', 'type': 'NUMBER', 'description': '', 'default': ''}, {'name': 'h2h', 'type': 'STRING', 'description': '', 'default': ''}, {'name': 'live', 'type': 'STRING', 'description': '', 'default': ''}], 'code': 'import requests\n\nurl = "https://api-nba-v1.p.rapidapi.com/games"\nquerystring = {"date": date}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "api-nba-v1.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {'type': 'object', 'properties': {'get': {'type': 'string'}, 'parameters': {'type': 'object', 'properties': {'date': {'type': 'string'}}}, 'errors': {'type': 'array'}, 'results': {'type': 'integer'}, 'response': {'type': 'array', 'items': {'type': 'object', 'properties': {'id': {'type': 'integer'}, 'league': {'type': 'string'}, 'season': {'type': 'integer'}, 'date': {'type': 'object', 'properties': {'start': {'type': 'string'}, 'end': {'type': 'string'}, 'duration': {'type': 'string'}}}, 'stage': {'type': 'integer'}, 'status': {'type': 'object', 'properties': {'clock': {'type': 'null'}, 'halftime': {'type': 'boolean'}, 'short': {'type': 'integer'}, 'long': {'type': 'string'}}}, 'periods': {'type': 'object', 'properties': {'current': {'type': 'integer'}, 'total': {'type': 'integer'}, 'endOfPeriod': {'type': 'boolean'}}}, 'arena': {'type': 'object', 'properties': {'name': {'type': 'string'}, 'city': {'type': 'string'}, 'state': {'type': 'string'}, 'country': {'type': 'string'}}}, 'teams': {'type': 'object', 'properties': {'visitors': {'type': 'object', 'properties': {'id': {'type': 'integer'}, 'name': {'type': 'string'}, 'nickname': {'type': 'string'}, 'code': {'type': 'string'}, 'logo': {'type': 'string'}}}, 'home': {'type': 'object', 'properties': {'id': {'type': 'integer'}, 'name': {'type': 'string'}, 'nickname': {'type': 'string'}, 'code': {'type': 'string'}, 'logo': {'type': 'string'}}}}}, 'scores': {'type': 'object', 'properties': {'visitors': {'type': 'object', 'properties': {'win': {'type': 'integer'}, 'loss': {'type': 'integer'}, 'series': {'type': 'object', 'properties': {'win': {'type': 'integer'}, 'loss': {'type': 'integer'}}}, 'linescore': {'type': 'array', 'items': {'type': 'string'}}, 'points': {'type': 'integer'}}}, 'home': {'type': 'object', 'properties': {'win': {'type': 'integer'}, 'loss': {'type': 'integer'}, 'series': {'type': 'object', 'properties': {'win': {'type': 'integer'}, 'loss': {'type': 'integer'}}}, 'linescore': {'type': 'array', 'items': {'type': 'string'}}, 'points': {'type': 'integer'}}}}}, 'officials': {'type': 'array', 'items': {'type': 'string'}}, 'timesTied': {'type': 'integer'}, 'leadChanges': {'type': 'integer'}, 'nugget': {'type': 'null'}}}}}}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 41 | Sports | API-NBA | All NBA Stats DATA, Games, Livescore, Standings, Players, Statistics... Documentation : https://api-sports.io/documentation/nba/v2 | Games in live | Get the list of games according to the parameters. **Available status** * 1 : Not Started * 2 : live * 3 : Finished > This endpoint requires at least one parameter. | GET | {'name': 'Games in live', 'url': 'https://api-nba-v1.p.rapidapi.com/games', 'description': 'Get the list of games according to the parameters.\n\n**Available status**\n* 1 : Not Started\n* 2 : live\n* 3 : Finished\n\n> This endpoint requires at least one parameter.', 'method': 'GET', 'required_parameters': [], 'optional_parameters': [{'name': 'league', 'type': 'STRING', 'description': '', 'default': ''}, {'name': 'season', 'type': 'NUMBER', 'description': '', 'default': ''}, {'name': 'live', 'type': 'STRING', 'description': '', 'default': 'all'}, {'name': 'team', 'type': 'NUMBER', 'description': '', 'default': ''}, {'name': 'id', 'type': 'NUMBER', 'description': '', 'default': ''}, {'name': 'date', 'type': 'DATE (YYYY-MM-DD)', 'description': '', 'default': ''}, {'name': 'h2h', 'type': 'STRING', 'description': '', 'default': ''}], 'code': 'import requests\n\nurl = "https://api-nba-v1.p.rapidapi.com/games"\nquerystring = {"live": live}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "api-nba-v1.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {'type': 'object', 'properties': {'get': {'type': 'string'}, 'parameters': {'type': 'object', 'properties': {'live': {'type': 'string'}}}, 'errors': {'type': 'array'}, 'results': {'type': 'integer'}, 'response': {'type': 'array', 'items': {'type': 'object', 'properties': {'id': {'type': 'integer'}, 'league': {'type': 'string'}, 'season': {'type': 'integer'}, 'date': {'type': 'object', 'properties': {'start': {'type': 'string'}, 'end': {'type': 'string'}, 'duration': {'type': 'string'}}}, 'stage': {'type': 'integer'}, 'status': {'type': 'object', 'properties': {'clock': {'type': 'null'}, 'halftime': {'type': 'boolean'}, 'short': {'type': 'integer'}, 'long': {'type': 'string'}}}, 'periods': {'type': 'object', 'properties': {'current': {'type': 'integer'}, 'total': {'type': 'integer'}, 'endOfPeriod': {'type': 'boolean'}}}, 'arena': {'type': 'object', 'properties': {'name': {'type': 'string'}, 'city': {'type': 'string'}, 'state': {'type': 'string'}, 'country': {'type': 'string'}}}, 'teams': {'type': 'object', 'properties': {'visitors': {'type': 'object', 'properties': {'id': {'type': 'integer'}, 'name': {'type': 'string'}, 'nickname': {'type': 'string'}, 'code': {'type': 'string'}, 'logo': {'type': 'string'}}}, 'home': {'type': 'object', 'properties': {'id': {'type': 'integer'}, 'name': {'type': 'string'}, 'nickname': {'type': 'string'}, 'code': {'type': 'string'}, 'logo': {'type': 'string'}}}}}, 'scores': {'type': 'object', 'properties': {'visitors': {'type': 'object', 'properties': {'win': {'type': 'integer'}, 'loss': {'type': 'integer'}, 'series': {'type': 'object', 'properties': {'win': {'type': 'integer'}, 'loss': {'type': 'integer'}}}, 'linescore': {'type': 'array', 'items': {'type': 'string'}}, 'points': {'type': 'integer'}}}, 'home': {'type': 'object', 'properties': {'win': {'type': 'integer'}, 'loss': {'type': 'integer'}, 'series': {'type': 'object', 'properties': {'win': {'type': 'integer'}, 'loss': {'type': 'integer'}}}, 'linescore': {'type': 'array', 'items': {'type': 'string'}}, 'points': {'type': 'integer'}}}}}, 'officials': {'type': 'array', 'items': {'type': 'string'}}, 'timesTied': {'type': 'integer'}, 'leadChanges': {'type': 'integer'}, 'nugget': {'type': 'null'}}}}}}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 42 | Sports | API-NBA | All NBA Stats DATA, Games, Livescore, Standings, Players, Statistics... Documentation : https://api-sports.io/documentation/nba/v2 | Standings | Get the standings for a league & season. **Available conferences** * East * West **Available divisions** * Atlantic * Central * Northwest * Pacific * Southeast * Southwest > Parameters `league` & `season` are required. | GET | {'name': 'Standings', 'url': 'https://api-nba-v1.p.rapidapi.com/standings', 'description': 'Get the standings for a league & season.\n\n**Available conferences**\n* East\n* West\n\n**Available divisions**\n* Atlantic\n* Central\n* Northwest\n* Pacific\n* Southeast\n* Southwest\n\n> Parameters `league` & `season` are required.', 'method': 'GET', 'required_parameters': [], 'optional_parameters': [{'name': 'team', 'type': 'NUMBER', 'description': '', 'default': ''}, {'name': 'division', 'type': 'STRING', 'description': '', 'default': ''}, {'name': 'season', 'type': 'NUMBER', 'description': '', 'default': '2021'}, {'name': 'league', 'type': 'STRING', 'description': '', 'default': 'standard'}, {'name': 'conference', 'type': 'STRING', 'description': '', 'default': ''}], 'code': 'import requests\n\nurl = "https://api-nba-v1.p.rapidapi.com/standings"\nquerystring = {"season": season, "league": league}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "api-nba-v1.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {'type': 'object', 'properties': {'get': {'type': 'string'}, 'parameters': {'type': 'object', 'properties': {'league': {'type': 'string'}, 'season': {'type': 'string'}}}, 'errors': {'type': 'array'}, 'results': {'type': 'integer'}, 'response': {'type': 'array', 'items': {'type': 'object', 'properties': {'league': {'type': 'string'}, 'season': {'type': 'integer'}, 'team': {'type': 'object', 'properties': {'id': {'type': 'integer'}, 'name': {'type': 'string'}, 'nickname': {'type': 'string'}, 'code': {'type': 'string'}, 'logo': {'type': 'string'}}}, 'conference': {'type': 'object', 'properties': {'name': {'type': 'string'}, 'rank': {'type': 'integer'}, 'win': {'type': 'integer'}, 'loss': {'type': 'integer'}}}, 'division': {'type': 'object', 'properties': {'name': {'type': 'string'}, 'rank': {'type': 'integer'}, 'win': {'type': 'integer'}, 'loss': {'type': 'integer'}, 'gamesBehind': {'type': 'string'}}}, 'win': {'type': 'object', 'properties': {'home': {'type': 'integer'}, 'away': {'type': 'integer'}, 'total': {'type': 'integer'}, 'percentage': {'type': 'string'}, 'lastTen': {'type': 'integer'}}}, 'loss': {'type': 'object', 'properties': {'home': {'type': 'integer'}, 'away': {'type': 'integer'}, 'total': {'type': 'integer'}, 'percentage': {'type': 'string'}, 'lastTen': {'type': 'integer'}}}, 'gamesBehind': {'type': 'string'}, 'streak': {'type': 'integer'}, 'winStreak': {'type': 'boolean'}, 'tieBreakerPoints': {'type': 'null'}}}}}}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 43 | Sports | API-NBA | All NBA Stats DATA, Games, Livescore, Standings, Players, Statistics... Documentation : https://api-sports.io/documentation/nba/v2 | Games Statistics | Get the statistics of the teams that played a game. | GET | {'name': 'Games Statistics', 'url': 'https://api-nba-v1.p.rapidapi.com/games/statistics', 'description': 'Get the statistics of the teams that played a game.', 'method': 'GET', 'required_parameters': [{'name': 'id', 'type': 'NUMBER', 'description': '', 'default': '10403'}], 'optional_parameters': [], 'code': 'import requests\n\nurl = "https://api-nba-v1.p.rapidapi.com/games/statistics"\nquerystring = {"id": id}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "api-nba-v1.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {'type': 'object', 'properties': {'get': {'type': 'string'}, 'parameters': {'type': 'object', 'properties': {'id': {'type': 'string'}}}, 'errors': {'type': 'array'}, 'results': {'type': 'integer'}, 'response': {'type': 'array', 'items': {'type': 'object', 'properties': {'team': {'type': 'object', 'properties': {'id': {'type': 'integer'}, 'name': {'type': 'string'}, 'nickname': {'type': 'string'}, 'code': {'type': 'string'}, 'logo': {'type': 'string'}}}, 'statistics': {'type': 'array', 'items': {'type': 'object', 'properties': {'fastBreakPoints': {'type': 'integer'}, 'pointsInPaint': {'type': 'integer'}, 'biggestLead': {'type': 'integer'}, 'secondChancePoints': {'type': 'integer'}, 'pointsOffTurnovers': {'type': 'integer'}, 'longestRun': {'type': 'integer'}, 'points': {'type': 'integer'}, 'fgm': {'type': 'integer'}, 'fga': {'type': 'integer'}, 'fgp': {'type': 'string'}, 'ftm': {'type': 'integer'}, 'fta': {'type': 'integer'}, 'ftp': {'type': 'string'}, 'tpm': {'type': 'integer'}, 'tpa': {'type': 'integer'}, 'tpp': {'type': 'string'}, 'offReb': {'type': 'integer'}, 'defReb': {'type': 'integer'}, 'totReb': {'type': 'integer'}, 'assists': {'type': 'integer'}, 'pFouls': {'type': 'integer'}, 'steals': {'type': 'integer'}, 'turnovers': {'type': 'integer'}, 'blocks': {'type': 'integer'}, 'plusMinus': {'type': 'string'}, 'min': {'type': 'string'}}}}}}}}}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 44 | Sports | API-NBA | All NBA Stats DATA, Games, Livescore, Standings, Players, Statistics... Documentation : https://api-sports.io/documentation/nba/v2 | Games | Get the list of games according to the parameters. **Available status** * 1 : Not Started * 2 : live * 3 : Finished > This endpoint requires at least one parameter. | GET | {'name': 'Games', 'url': 'https://api-nba-v1.p.rapidapi.com/games', 'description': 'Get the list of games according to the parameters.\n\n**Available status**\n* 1 : Not Started\n* 2 : live\n* 3 : Finished\n\n> This endpoint requires at least one parameter.', 'method': 'GET', 'required_parameters': [], 'optional_parameters': [{'name': 'league', 'type': 'STRING', 'description': '', 'default': ''}, {'name': 'live', 'type': 'STRING', 'description': '', 'default': ''}, {'name': 'season', 'type': 'NUMBER', 'description': '', 'default': ''}, {'name': 'id', 'type': 'NUMBER', 'description': '', 'default': ''}, {'name': 'date', 'type': 'DATE (YYYY-MM-DD)', 'description': '', 'default': '2022-02-12'}, {'name': 'h2h', 'type': 'STRING', 'description': '', 'default': ''}, {'name': 'team', 'type': 'NUMBER', 'description': '', 'default': ''}], 'code': 'import requests\n\nurl = "https://api-nba-v1.p.rapidapi.com/games"\nquerystring = {"date": date}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "api-nba-v1.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {'type': 'object', 'properties': {'get': {'type': 'string'}, 'parameters': {'type': 'object', 'properties': {'date': {'type': 'string'}}}, 'errors': {'type': 'array'}, 'results': {'type': 'integer'}, 'response': {'type': 'array', 'items': {'type': 'object', 'properties': {'id': {'type': 'integer'}, 'league': {'type': 'string'}, 'season': {'type': 'integer'}, 'date': {'type': 'object', 'properties': {'start': {'type': 'string'}, 'end': {'type': 'string'}, 'duration': {'type': 'string'}}}, 'stage': {'type': 'integer'}, 'status': {'type': 'object', 'properties': {'clock': {'type': 'null'}, 'halftime': {'type': 'boolean'}, 'short': {'type': 'integer'}, 'long': {'type': 'string'}}}, 'periods': {'type': 'object', 'properties': {'current': {'type': 'integer'}, 'total': {'type': 'integer'}, 'endOfPeriod': {'type': 'boolean'}}}, 'arena': {'type': 'object', 'properties': {'name': {'type': 'string'}, 'city': {'type': 'string'}, 'state': {'type': 'string'}, 'country': {'type': 'string'}}}, 'teams': {'type': 'object', 'properties': {'visitors': {'type': 'object', 'properties': {'id': {'type': 'integer'}, 'name': {'type': 'string'}, 'nickname': {'type': 'string'}, 'code': {'type': 'string'}, 'logo': {'type': 'string'}}}, 'home': {'type': 'object', 'properties': {'id': {'type': 'integer'}, 'name': {'type': 'string'}, 'nickname': {'type': 'string'}, 'code': {'type': 'string'}, 'logo': {'type': 'string'}}}}}, 'scores': {'type': 'object', 'properties': {'visitors': {'type': 'object', 'properties': {'win': {'type': 'integer'}, 'loss': {'type': 'integer'}, 'series': {'type': 'object', 'properties': {'win': {'type': 'integer'}, 'loss': {'type': 'integer'}}}, 'linescore': {'type': 'array', 'items': {'type': 'string'}}, 'points': {'type': 'integer'}}}, 'home': {'type': 'object', 'properties': {'win': {'type': 'integer'}, 'loss': {'type': 'integer'}, 'series': {'type': 'object', 'properties': {'win': {'type': 'integer'}, 'loss': {'type': 'integer'}}}, 'linescore': {'type': 'array', 'items': {'type': 'string'}}, 'points': {'type': 'integer'}}}}}, 'officials': {'type': 'array', 'items': {'type': 'string'}}, 'timesTied': {'type': 'integer'}, 'leadChanges': {'type': 'integer'}, 'nugget': {'type': 'null'}}}}}}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 45 | Sports | API-NBA | All NBA Stats DATA, Games, Livescore, Standings, Players, Statistics... Documentation : https://api-sports.io/documentation/nba/v2 | Teams Statistics | Get the overall statistics of a team for a given `season`. | GET | {'name': 'Teams Statistics', 'url': 'https://api-nba-v1.p.rapidapi.com/teams/statistics', 'description': 'Get the overall statistics of a team for a given `season`.', 'method': 'GET', 'required_parameters': [{'name': 'id', 'type': 'NUMBER', 'description': '', 'default': '1'}, {'name': 'season', 'type': 'NUMBER', 'description': '', 'default': '2020'}], 'optional_parameters': [], 'code': 'import requests\n\nurl = "https://api-nba-v1.p.rapidapi.com/teams/statistics"\nquerystring = {"id": id, "season": season}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "api-nba-v1.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {'type': 'object', 'properties': {'get': {'type': 'string'}, 'parameters': {'type': 'object', 'properties': {'id': {'type': 'string'}, 'season': {'type': 'string'}}}, 'errors': {'type': 'array'}, 'results': {'type': 'integer'}, 'response': {'type': 'array', 'items': {'type': 'object', 'properties': {'games': {'type': 'integer'}, 'fastBreakPoints': {'type': 'integer'}, 'pointsInPaint': {'type': 'integer'}, 'biggestLead': {'type': 'integer'}, 'secondChancePoints': {'type': 'integer'}, 'pointsOffTurnovers': {'type': 'integer'}, 'longestRun': {'type': 'integer'}, 'points': {'type': 'integer'}, 'fgm': {'type': 'integer'}, 'fga': {'type': 'integer'}, 'fgp': {'type': 'string'}, 'ftm': {'type': 'integer'}, 'fta': {'type': 'integer'}, 'ftp': {'type': 'string'}, 'tpm': {'type': 'integer'}, 'tpa': {'type': 'integer'}, 'tpp': {'type': 'string'}, 'offReb': {'type': 'integer'}, 'defReb': {'type': 'integer'}, 'totReb': {'type': 'integer'}, 'assists': {'type': 'integer'}, 'pFouls': {'type': 'integer'}, 'steals': {'type': 'integer'}, 'turnovers': {'type': 'integer'}, 'blocks': {'type': 'integer'}, 'plusMinus': {'type': 'integer'}}}}}}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 46 | Sports | API-NBA | All NBA Stats DATA, Games, Livescore, Standings, Players, Statistics... Documentation : https://api-sports.io/documentation/nba/v2 | Teams | Get data about teams. The team `id` are **unique** in the API and teams keep it among all seasons. **Available conferences** * East * West **Available divisions** * Atlantic * Central * Northwest * Pacific * Southeast * Southwest | GET | {'name': 'Teams', 'url': 'https://api-nba-v1.p.rapidapi.com/teams', 'description': 'Get data about teams.\n\nThe team `id` are **unique** in the API and teams keep it among all seasons.\n\n**Available conferences**\n* East\n* West\n\n**Available divisions**\n* Atlantic\n* Central\n* Northwest\n* Pacific\n* Southeast\n* Southwest', 'method': 'GET', 'required_parameters': [], 'optional_parameters': [{'name': 'code', 'type': 'STRING', 'description': '', 'default': ''}, {'name': 'search', 'type': 'STRING', 'description': '', 'default': ''}, {'name': 'league', 'type': 'STRING', 'description': '', 'default': ''}, {'name': 'conference', 'type': 'STRING', 'description': '', 'default': ''}, {'name': 'division', 'type': 'STRING', 'description': '', 'default': ''}, {'name': 'name', 'type': 'STRING', 'description': '', 'default': ''}, {'name': 'id', 'type': 'NUMBER', 'description': '', 'default': ''}], 'code': 'import requests\n\nurl = "https://api-nba-v1.p.rapidapi.com/teams"\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "api-nba-v1.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {'type': 'object', 'properties': {'get': {'type': 'string'}, 'parameters': {'type': 'array'}, 'errors': {'type': 'array'}, 'results': {'type': 'integer'}, 'response': {'type': 'array', 'items': {'type': 'object'}}}}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 47 | Sports | API-NBA | All NBA Stats DATA, Games, Livescore, Standings, Players, Statistics... Documentation : https://api-sports.io/documentation/nba/v2 | Leagues | Get the list of available leagues. All `leagues` can be used in other endpoints as filters. **Available leagues** * Africa * Orlando * Sacramento * Standard * Utah * Vegas > This endpoint does not require any parameters. | GET | {'name': 'Leagues', 'url': 'https://api-nba-v1.p.rapidapi.com/leagues', 'description': 'Get the list of available leagues.\n\nAll `leagues` can be used in other endpoints as filters.\n\n**Available leagues**\n* Africa\n* Orlando\n* Sacramento\n* Standard\n* Utah\n* Vegas\n\n> This endpoint does not require any parameters.', 'method': 'GET', 'required_parameters': [], 'optional_parameters': [], 'code': 'import requests\n\nurl = "https://api-nba-v1.p.rapidapi.com/leagues"\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "api-nba-v1.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {'type': 'object', 'properties': {'get': {'type': 'string'}, 'parameters': {'type': 'array'}, 'errors': {'type': 'array'}, 'results': {'type': 'integer'}, 'response': {'type': 'array', 'items': {'type': 'string'}}}}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 48 | Sports | API-NBA | All NBA Stats DATA, Games, Livescore, Standings, Players, Statistics... Documentation : https://api-sports.io/documentation/nba/v2 | Seasons | All `seasons` can be used in other endpoints as filters. Seasons are only **4-digit keys** like `YYYY`. > This endpoint does not require any parameters. | GET | {'name': 'Seasons', 'url': 'https://api-nba-v1.p.rapidapi.com/seasons', 'description': 'All `seasons` can be used in other endpoints as filters. Seasons are only **4-digit keys** like `YYYY`.\n\n> This endpoint does not require any parameters.', 'method': 'GET', 'required_parameters': [], 'optional_parameters': [], 'code': 'import requests\n\nurl = "https://api-nba-v1.p.rapidapi.com/seasons"\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "api-nba-v1.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {'type': 'object', 'properties': {'get': {'type': 'string'}, 'parameters': {'type': 'array'}, 'errors': {'type': 'array'}, 'results': {'type': 'integer'}, 'response': {'type': 'array', 'items': {'type': 'integer'}}}}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 49 | Search | Fresh LinkedIn Profile Data | Reliable 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! We're active and responsive on this platform, please don't hesitate to drop a message in the Discussions or PM channels. | Search LinkedIn Profiles via Google | Search LinkedIn profiles via Google using keyword, name, location, job title and company. For each search, this API will return top 100 results from Google. 1 credit per call. | POST | {'name': 'Search LinkedIn Profiles via Google', 'url': 'https://fresh-linkedin-profile-data.p.rapidapi.com/google-profiles', 'description': 'Search LinkedIn profiles via Google using keyword, name, location, job title and company. For each search, this API will return top 100 results from Google. 1 credit per call.', 'method': 'POST', 'required_parameters': [], 'optional_parameters': [], 'code': 'import requests\n\nurl = "https://fresh-linkedin-profile-data.p.rapidapi.com/google-profiles"\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "fresh-linkedin-profile-data.p.rapidapi.com"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n', 'statuscode': 111, 'body': '...', 'headers': '', 'schema': ''} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 50 | Search | Fresh LinkedIn Profile Data | Reliable 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! We're active and responsive on this platform, please don't hesitate to drop a message in the Discussions or PM channels. | Get Company Details from Crunchbase (NEW) | Get all public details of a company on Crunchbase - including funding rounds. **2 credits per call.** | GET | {'name': 'Get Company Details from Crunchbase (NEW)', 'url': 'https://fresh-linkedin-profile-data.p.rapidapi.com/get-company-details-from-crunchbase', 'description': 'Get all public details of a company on Crunchbase - including funding rounds. **2 credits per call.**', 'method': 'GET', 'required_parameters': [{'name': 'crunchbase', 'type': 'STRING', 'description': '', 'default': 'https://www.crunchbase.com/organization/kinly-c638'}], 'optional_parameters': [], 'code': 'import requests\n\nurl = "https://fresh-linkedin-profile-data.p.rapidapi.com/get-company-details-from-crunchbase"\nquerystring = {"crunchbase": crunchbase}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "fresh-linkedin-profile-data.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 51 | Search | Fresh LinkedIn Profile Data | Reliable 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! We're active and responsive on this platform, please don't hesitate to drop a message in the Discussions or PM channels. | Get Company Ads Count | Get number of ads the company posted on LinkedIn. **1 credit per call.** | GET | {'name': 'Get Company Ads Count', 'url': 'https://fresh-linkedin-profile-data.p.rapidapi.com/get-company-ads-count', 'description': 'Get number of ads the company posted on LinkedIn. **1 credit per call.**', 'method': 'GET', 'required_parameters': [{'name': 'company_id', 'type': 'STRING', 'description': '', 'default': '162479'}], 'optional_parameters': [], 'code': 'import requests\n\nurl = "https://fresh-linkedin-profile-data.p.rapidapi.com/get-company-ads-count"\nquerystring = {"company_id": company_id}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "fresh-linkedin-profile-data.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 52 | Search | Fresh LinkedIn Profile Data | Reliable 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! We're active and responsive on this platform, please don't hesitate to drop a message in the Discussions or PM channels. | Get Extra Profile Data | Get more profile’s data fields like languages, top skills, certifications, publications, patents, awards | GET | {'name': 'Get Extra Profile Data', 'url': 'https://fresh-linkedin-profile-data.p.rapidapi.com/get-extra-profile-data', 'description': 'Get more profile’s data fields like languages, top skills, certifications, publications, patents, awards', 'method': 'GET', 'required_parameters': [{'name': 'linkedin_url', 'type': 'STRING', 'description': '', 'default': 'https://www.linkedin.com/in/ajjames/'}], 'optional_parameters': [], 'code': 'import requests\n\nurl = "https://fresh-linkedin-profile-data.p.rapidapi.com/get-extra-profile-data"\nquerystring = {"linkedin_url": linkedin_url}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "fresh-linkedin-profile-data.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 53 | Search | Fresh LinkedIn Profile Data | Reliable 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! We're active and responsive on this platform, please don't hesitate to drop a message in the Discussions or PM channels. | Get Company by ID | Given a company’s LinkedIn internal ID, the API will return valuable data points in JSON format. **1 credit per call.** | GET | {'name': 'Get Company by ID', 'url': 'https://fresh-linkedin-profile-data.p.rapidapi.com/get-company-by-id', 'description': 'Given a company’s LinkedIn internal ID, the API will return valuable data points in JSON format. **1 credit per call.**', 'method': 'GET', 'required_parameters': [{'name': 'company_id', 'type': 'STRING', 'description': '', 'default': '162479'}], 'optional_parameters': [], 'code': 'import requests\n\nurl = "https://fresh-linkedin-profile-data.p.rapidapi.com/get-company-by-id"\nquerystring = {"company_id": company_id}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "fresh-linkedin-profile-data.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 54 | Search | Fresh LinkedIn Profile Data | Reliable 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! We're active and responsive on this platform, please don't hesitate to drop a message in the Discussions or PM channels. | Search LinkedIn Company Pages via Google | Find up to 100 companies that match your criteria via Google. | POST | {'name': 'Search LinkedIn Company Pages via Google', 'url': 'https://fresh-linkedin-profile-data.p.rapidapi.com/google-companies', 'description': 'Find up to 100 companies that match your criteria via Google.', 'method': 'POST', 'required_parameters': [], 'optional_parameters': [], 'code': 'import requests\n\nurl = "https://fresh-linkedin-profile-data.p.rapidapi.com/google-companies"\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "fresh-linkedin-profile-data.p.rapidapi.com"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n', 'statuscode': 111, 'body': '...', 'headers': '', 'schema': ''} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 55 | Search | Fresh LinkedIn Profile Data | Reliable 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! We're active and responsive on this platform, please don't hesitate to drop a message in the Discussions or PM channels. | Get Job Details | Scrape the full job details, including the company basic information. **1 credit per call.** | GET | {'name': 'Get Job Details', 'url': 'https://fresh-linkedin-profile-data.p.rapidapi.com/get-job-details', 'description': 'Scrape the full job details, including the company basic information. **1 credit per call.**', 'method': 'GET', 'required_parameters': [{'name': 'job_url', 'type': 'STRING', 'description': '', 'default': 'https://www.linkedin.com/jobs/view/3690897280/'}], 'optional_parameters': [{'name': 'include_skills', 'type': 'STRING', 'description': 'Including skills will cost 1 more credit', 'default': 'false'}], 'code': 'import requests\n\nurl = "https://fresh-linkedin-profile-data.p.rapidapi.com/get-job-details"\nquerystring = {"include_skills": include_skills, "job_url": job_url}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "fresh-linkedin-profile-data.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 56 | Search | Fresh LinkedIn Profile Data | Reliable 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! We're active and responsive on this platform, please don't hesitate to drop a message in the Discussions or PM channels. | Get Company by URL | Given a company’s LinkedIn URL, the API will return valuable data points in JSON format. **1 credit per call.** | GET | {'name': 'Get Company by URL', 'url': 'https://fresh-linkedin-profile-data.p.rapidapi.com/get-company-by-linkedinurl', 'description': 'Given a company’s LinkedIn URL, the API will return valuable data points in JSON format. **1 credit per call.**', 'method': 'GET', 'required_parameters': [{'name': 'linkedin_url', 'type': 'STRING', 'description': '', 'default': 'https://www.linkedin.com/company/apple/'}], 'optional_parameters': [], 'code': 'import requests\n\nurl = "https://fresh-linkedin-profile-data.p.rapidapi.com/get-company-by-linkedinurl"\nquerystring = {"linkedin_url": linkedin_url}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "fresh-linkedin-profile-data.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 57 | Search | Fresh LinkedIn Profile Data | Reliable 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! We're active and responsive on this platform, please don't hesitate to drop a message in the Discussions or PM channels. | Get Recommendation Received | Get profile’s recommendations (received). **1 credit per call**. | GET | {'name': 'Get Recommendation Received', 'url': 'https://fresh-linkedin-profile-data.p.rapidapi.com/get-recommendations-received', 'description': 'Get profile’s recommendations (received). **1 credit per call**.', 'method': 'GET', 'required_parameters': [{'name': 'linkedin_url', 'type': 'STRING', 'description': '', 'default': 'https://www.linkedin.com/in/ajjames'}], 'optional_parameters': [], 'code': 'import requests\n\nurl = "https://fresh-linkedin-profile-data.p.rapidapi.com/get-recommendations-received"\nquerystring = {"linkedin_url": linkedin_url}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "fresh-linkedin-profile-data.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 58 | Search | Fresh LinkedIn Profile Data | Reliable 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! We're active and responsive on this platform, please don't hesitate to drop a message in the Discussions or PM channels. | Get Recommendation Given | Get profile’s recommendations (given). **1 credit per call**. | GET | {'name': 'Get Recommendation Given', 'url': 'https://fresh-linkedin-profile-data.p.rapidapi.com/get-recommendations-given', 'description': 'Get profile’s recommendations (given). **1 credit per call**.', 'method': 'GET', 'required_parameters': [{'name': 'linkedin_url', 'type': 'STRING', 'description': '', 'default': 'https://www.linkedin.com/in/ajjames'}], 'optional_parameters': [], 'code': 'import requests\n\nurl = "https://fresh-linkedin-profile-data.p.rapidapi.com/get-recommendations-given"\nquerystring = {"linkedin_url": linkedin_url}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "fresh-linkedin-profile-data.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 59 | Search | Fresh LinkedIn Profile Data | Reliable 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! We're active and responsive on this platform, please don't hesitate to drop a message in the Discussions or PM channels. | Search Jobs | Search jobs posted on LinkedIn. This endpoint is useful for scraping job openings of a specific company on LinkedIn. To scrape all results from each search, change the param *start* from 0 to 25, 50, ... until you see less than 25 results returned. **2 credits per call.** | GET | {'name': 'Search Jobs', 'url': 'https://fresh-linkedin-profile-data.p.rapidapi.com/search-jobs', 'description': 'Search jobs posted on LinkedIn. This endpoint is useful for scraping job openings of a specific company on LinkedIn. \n\nTo scrape all results from each search, change the param *start* from 0 to 25, 50, ... until you see less than 25 results returned.\n\n**2 credits per call.**', 'method': 'GET', 'required_parameters': [], 'optional_parameters': [{'name': 'industry_code', 'type': 'STRING', 'description': 'You can find all valid industry codes from [this page]( https://learn.microsoft.com/en-us/linkedin/shared/references/reference-tables/industry-codes).', 'default': '4,5'}, {'name': 'company_id', 'type': 'NUMBER', 'description': '', 'default': ''}, {'name': 'sort_by', 'type': 'STRING', 'description': 'Possible values: most_relevant, most_recent', 'default': 'most_relevant'}, {'name': 'date_posted', 'type': 'STRING', 'description': 'Possible values: any_time, past_month, past_week, past_24_hours\n', 'default': 'any_time'}, {'name': 'salary', 'type': 'STRING', 'description': 'Possible values: 40k+, 60k+, 80k+, 100k+, 120k+, 140k+, 160k+, 180k+, 200k+', 'default': ''}, {'name': 'onsite_remote', 'type': 'STRING', 'description': 'Possible values: on-site, remote, hybrid', 'default': ''}, {'name': 'start', 'type': 'NUMBER', 'description': 'Should be one of: 0, 25, 50, 75, etc.', 'default': '0'}, {'name': 'experience_level', 'type': 'STRING', 'description': 'Possible values: internship, associate, director, entry level, mid-senior level, executive', 'default': ''}, {'name': 'function_id', 'type': 'STRING', 'description': 'Please follow [this instruction](https://rapidapi.com/freshdata-freshdata-default/api/fresh-linkedin-profile-data/tutorials/how-to-find-function_id-on-linkedin%3F) to get the function_id of your choice.', 'default': 'it,sale'}, {'name': 'geo_code', 'type': 'NUMBER', 'description': 'Use this param to target jobs in specific region/country. To search worldwide, use 92000000.\nTo find other geo codes, please follow this [link](https://rapidapi.com/freshdata-freshdata-default/api/fresh-linkedin-profile-data/tutorials/how-to-find-a-geo_code-(geoid)-on-linkedin%3F)', 'default': '103644278'}, {'name': 'title_id', 'type': 'STRING', 'description': 'To find title_id by title, please follow this [link](https://rapidapi.com/freshdata-freshdata-default/api/fresh-linkedin-profile-data/tutorials/how-to-find-a-title_id-on-linkedin%3F)', 'default': ''}, {'name': 'keywords', 'type': 'STRING', 'description': '', 'default': ''}], 'code': 'import requests\n\nurl = "https://fresh-linkedin-profile-data.p.rapidapi.com/search-jobs"\nquerystring = {"industry_code": industry_code, "sort_by": sort_by, "date_posted": date_posted, "start": start, "function_id": function_id, "geo_code": geo_code}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "fresh-linkedin-profile-data.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 60 | Search | Fresh LinkedIn Profile Data | Reliable 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! We're active and responsive on this platform, please don't hesitate to drop a message in the Discussions or PM channels. | Get Company's Posts | Get posts from a LinkedIn company page. Pagination is supported to fetch all posts. **2 credits per call.** | GET | {'name': "Get Company's Posts", 'url': 'https://fresh-linkedin-profile-data.p.rapidapi.com/get-company-posts', 'description': 'Get posts from a LinkedIn company page. Pagination is supported to fetch all posts. **2 credits per call.**', 'method': 'GET', 'required_parameters': [{'name': 'linkedin_url', 'type': 'STRING', 'description': '', 'default': 'https://www.linkedin.com/company/amazon/'}], 'optional_parameters': [{'name': 'pagination_token', 'type': 'STRING', 'description': 'Required when fetching the next result page. Please use the token from the result of your previous call.', 'default': ''}, {'name': 'start', 'type': 'NUMBER', 'description': 'Use this param to fetch posts of the next result page: 0 for page 1, 50 for page 2, etc.', 'default': ''}], 'code': 'import requests\n\nurl = "https://fresh-linkedin-profile-data.p.rapidapi.com/get-company-posts"\nquerystring = {"linkedin_url": linkedin_url}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "fresh-linkedin-profile-data.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 61 | Search | Fresh LinkedIn Profile Data | Reliable 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! We're active and responsive on this platform, please don't hesitate to drop a message in the Discussions or PM channels. | Get Company by Domain | Find a company on LinkedIn using its web domain. **1 credit per call.** | GET | {'name': 'Get Company by Domain', 'url': 'https://fresh-linkedin-profile-data.p.rapidapi.com/get-company-by-domain', 'description': 'Find a company on LinkedIn using its web domain. **1 credit per call.**', 'method': 'GET', 'required_parameters': [{'name': 'domain', 'type': 'STRING', 'description': '', 'default': 'apple.com'}], 'optional_parameters': [], 'code': 'import requests\n\nurl = "https://fresh-linkedin-profile-data.p.rapidapi.com/get-company-by-domain"\nquerystring = {"domain": domain}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "fresh-linkedin-profile-data.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 62 | Search | Fresh LinkedIn Profile Data | Reliable 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! We're active and responsive on this platform, please don't hesitate to drop a message in the Discussions or PM channels. | Get Personal Profile | Get full profile data, including experience & education history, skillset and company related details. Accept all type of profile urls. **1 credit per call.** | GET | {'name': 'Get Personal Profile', 'url': 'https://fresh-linkedin-profile-data.p.rapidapi.com/get-linkedin-profile', 'description': 'Get full profile data, including experience & education history, skillset and company related details. Accept all type of profile urls. **1 credit per call.**', 'method': 'GET', 'required_parameters': [{'name': 'linkedin_url', 'type': 'STRING', 'description': '', 'default': 'https://www.linkedin.com/in/williamhgates/'}], 'optional_parameters': [], 'code': 'import requests\n\nurl = "https://fresh-linkedin-profile-data.p.rapidapi.com/get-linkedin-profile"\nquerystring = {"linkedin_url": linkedin_url}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "fresh-linkedin-profile-data.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 63 | Search | Fresh LinkedIn Profile Data | Reliable 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! We're active and responsive on this platform, please don't hesitate to drop a message in the Discussions or PM channels. | Search Decision Makers | Search for decision makers of any company on LinkedIn. This endpoint will remove any unmatched profiles that returned by LinkedIn. It does much more than a simple search on LinkedIn sales navigator. **It takes 50 credits to initiate a search and then takes 0.5 credit per profile returned.** How it works: Step 1: Use this endpoint to make a search using your criteria. This endpoint will return a "request_id" so that you can check for the search status anytime in step 2. This endpoint will cost you 50 credit per request. Step 2: Check the search status using the endpoint "/check-search-status". Calling to this endpoint is FREE. Step 3: Once the search is done, you can start collecting the results by using the endpoint "/get-search-results". This endpoint will cost you 0.5 credit per one profile. For example, if your search returns 100 results, it'll cost 50 credits. **Please note**: it normally takes a few minutes to complete such a search - but sometimes it may need 24 hours. We recommend you put in all your searches and let this api process them all within 24 hours. | POST | {'name': 'Search Decision Makers', 'url': 'https://fresh-linkedin-profile-data.p.rapidapi.com/search-decision-makers', 'description': 'Search for decision makers of any company on LinkedIn. This endpoint will remove any unmatched profiles that returned by LinkedIn. It does much more than a simple search on LinkedIn sales navigator.\n\n**It takes 50 credits to initiate a search and then takes 0.5 credit per profile returned.**\n\nHow it works:\n\nStep 1: Use this endpoint to make a search using your criteria. This endpoint will return a "request_id" so that you can check for the search status anytime in step 2. This endpoint will cost you 50 credit per request.\n\nStep 2: Check the search status using the endpoint "/check-search-status". Calling to this endpoint is FREE.\n\nStep 3: Once the search is done, you can start collecting the results by using the endpoint "/get-search-results". This endpoint will cost you 0.5 credit per one profile. For example, if your search returns 100 results, it\'ll cost 50 credits.\n\n**Please note**: it normally takes a few minutes to complete such a search - but sometimes it may need 24 hours. We recommend you put in all your searches and let this api process them all within 24 hours.', 'method': 'POST', 'required_parameters': [], 'optional_parameters': [], 'code': 'import requests\n\nurl = "https://fresh-linkedin-profile-data.p.rapidapi.com/search-decision-makers"\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "fresh-linkedin-profile-data.p.rapidapi.com"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n', 'statuscode': 111, 'body': '...', 'headers': '', 'schema': ''} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 64 | Search | Fresh LinkedIn Profile Data | Reliable 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! We're active and responsive on this platform, please don't hesitate to drop a message in the Discussions or PM channels. | Search Employees | Search employee profiles directly from LinkedIn. No cached databases. Available filters: current company, past company, industry, country, title keywords, general keywords. **It takes 50 credits to initiate a search and then takes 0.5 credit per profile returned.** How it works: - Step 1: Use this endpoint to make a search using your criteria. This endpoint will return a "request_id" so that you can check for the search status anytime in step 2. This endpoint will cost you 50 credits per request. - Step 2: Check the search status using the endpoint "/check-search-status". Calling to this endpoint is FREE. - Step 3: Once the search is done, you can start collecting the results by using the endpoint "/get-search-results". This endpoint will cost you 0.5 credit per one profile. For example, if your search returns 100 results, it'll cost 50 credits. **Please note**: it normally takes a few minutes to complete such a search - but sometimes it may need 24 hours. We recommend you put in all your searches and let this api process them all within 24 hours. | POST | {'name': 'Search Employees', 'url': 'https://fresh-linkedin-profile-data.p.rapidapi.com/search-employees', 'description': 'Search employee profiles directly from LinkedIn. No cached databases. \nAvailable filters: current company, past company, industry, country, title keywords, general keywords.\n\n**It takes 50 credits to initiate a search and then takes 0.5 credit per profile returned.**\n\nHow it works:\n\n- Step 1: Use this endpoint to make a search using your criteria. This endpoint will return a "request_id" so that you can check for the search status anytime in step 2. This endpoint will cost you 50 credits per request.\n\n- Step 2: Check the search status using the endpoint "/check-search-status". Calling to this endpoint is FREE.\n\n- Step 3: Once the search is done, you can start collecting the results by using the endpoint "/get-search-results". This endpoint will cost you 0.5 credit per one profile. For example, if your search returns 100 results, it\'ll cost 50 credits.\n\n**Please note**: it normally takes a few minutes to complete such a search - but sometimes it may need 24 hours. We recommend you put in all your searches and let this api process them all within 24 hours.', 'method': 'POST', 'required_parameters': [], 'optional_parameters': [], 'code': 'import requests\n\nurl = "https://fresh-linkedin-profile-data.p.rapidapi.com/search-employees"\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "fresh-linkedin-profile-data.p.rapidapi.com"\n}\n\nresponse = requests.post(url, headers=headers)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 65 | Search | Fresh LinkedIn Profile Data | Reliable 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! We're active and responsive on this platform, please don't hesitate to drop a message in the Discussions or PM channels. | Get Pesonal Profile by Sales Nav URL | Get full profile data, including experience & education history, skillset and company related details. **1 credit per call.** | GET | {'name': 'Get Pesonal Profile by Sales Nav URL', 'url': 'https://fresh-linkedin-profile-data.p.rapidapi.com/get-linkedin-profile-by-salesnavurl', 'description': 'Get full profile data, including experience & education history, skillset and company related details. **1 credit per call.**', 'method': 'GET', 'required_parameters': [{'name': 'linkedin_url', 'type': 'STRING', 'description': '', 'default': 'https://www.linkedin.com/sales/lead/ACoAAABD0a4B2wblfHunfjGEN-uRLdg2MnWydmk,name,zofi'}], 'optional_parameters': [], 'code': 'import requests\n\nurl = "https://fresh-linkedin-profile-data.p.rapidapi.com/get-linkedin-profile-by-salesnavurl"\nquerystring = {"linkedin_url": linkedin_url}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "fresh-linkedin-profile-data.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 66 | Search | Fresh LinkedIn Profile Data | Reliable 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! We're active and responsive on this platform, please don't hesitate to drop a message in the Discussions or PM channels. | Get Profile's Posts | Get posts of a person based on profile url. Pagination is supported to get all posts. **2 credits per call.** | GET | {'name': "Get Profile's Posts", 'url': 'https://fresh-linkedin-profile-data.p.rapidapi.com/get-profile-posts', 'description': 'Get posts of a person based on profile url. Pagination is supported to get all posts. **2 credits per call.**', 'method': 'GET', 'required_parameters': [{'name': 'linkedin_url', 'type': 'STRING', 'description': '', 'default': 'https://www.linkedin.com/in/williamhgates/'}], 'optional_parameters': [{'name': 'start', 'type': 'NUMBER', 'description': 'Use this param to fetch posts of the next result page: 0 for page 1, 50 for page 2, etc.', 'default': ''}, {'name': 'pagination_token', 'type': 'STRING', 'description': 'Required when fetching the next result page. Please use the token from the result of your previous call.', 'default': ''}, {'name': 'type', 'type': 'STRING', 'description': 'Possible values: \n\n- posts: to scrape posts from tab Posts -- posts or posts reshared by the person\n\n- comments: to scrape posts from tab Comments -- posts the person commented\n\n- reactions: to scrape posts from tab Reactions -- posts the person reacted\n\n', 'default': 'posts'}], 'code': 'import requests\n\nurl = "https://fresh-linkedin-profile-data.p.rapidapi.com/get-profile-posts"\nquerystring = {"type": type, "linkedin_url": linkedin_url}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "fresh-linkedin-profile-data.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 67 | Search | Fresh LinkedIn Profile Data | Reliable 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! We're active and responsive on this platform, please don't hesitate to drop a message in the Discussions or PM channels. | Get Company Jobs Count | Get number of opening jobs the company posted on LinkedIn. **1 credit per call.** | GET | {'name': 'Get Company Jobs Count', 'url': 'https://fresh-linkedin-profile-data.p.rapidapi.com/get-company-jobs-count', 'description': 'Get number of opening jobs the company posted on LinkedIn. **1 credit per call.**', 'method': 'GET', 'required_parameters': [{'name': 'company_id', 'type': 'STRING', 'description': '', 'default': '162479'}], 'optional_parameters': [], 'code': 'import requests\n\nurl = "https://fresh-linkedin-profile-data.p.rapidapi.com/get-company-jobs-count"\nquerystring = {"company_id": company_id}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "fresh-linkedin-profile-data.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 68 | Search | Fresh LinkedIn Profile Data | Reliable 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! We're active and responsive on this platform, please don't hesitate to drop a message in the Discussions or PM channels. | Get Profile Recent Activity Time | Get the time of the latest activity. **2 credits per call.** | GET | {'name': 'Get Profile Recent Activity Time', 'url': 'https://fresh-linkedin-profile-data.p.rapidapi.com/get-profile-recent-activity-time', 'description': 'Get the time of the latest activity. **2 credits per call.**', 'method': 'GET', 'required_parameters': [{'name': 'linkedin_url', 'type': 'STRING', 'description': '', 'default': 'https://www.linkedin.com/in/williamhgates/'}], 'optional_parameters': [], 'code': 'import requests\n\nurl = "https://fresh-linkedin-profile-data.p.rapidapi.com/get-profile-recent-activity-time"\nquerystring = {"linkedin_url": linkedin_url}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "fresh-linkedin-profile-data.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 69 | Search | Fresh LinkedIn Profile Data | Reliable 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! We're active and responsive on this platform, please don't hesitate to drop a message in the Discussions or PM channels. | Get Open to Work Status | Given a LinkedIn profile URL, the API will let you know if that profile is “open to work” or not. **1 credit per call.** | GET | {'name': 'Get Open to Work Status', 'url': 'https://fresh-linkedin-profile-data.p.rapidapi.com/get-opentowork-status', 'description': 'Given a LinkedIn profile URL, the API will let you know if that profile is “open to work” or not. **1 credit per call.**', 'method': 'GET', 'required_parameters': [{'name': 'linkedin_url', 'type': 'STRING', 'description': '', 'default': 'https://www.linkedin.com/in/williamhgates/'}], 'optional_parameters': [], 'code': 'import requests\n\nurl = "https://fresh-linkedin-profile-data.p.rapidapi.com/get-opentowork-status"\nquerystring = {"linkedin_url": linkedin_url}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "fresh-linkedin-profile-data.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 70 | Search | Fresh LinkedIn Profile Data | Reliable 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! We're active and responsive on this platform, please don't hesitate to drop a message in the Discussions or PM channels. | Get Profile PDF CV | Get the CV of a LinkedIn profile in PDF format. **1 credit per call.** | GET | {'name': 'Get Profile PDF CV', 'url': 'https://fresh-linkedin-profile-data.p.rapidapi.com/get-profile-pdf-cv', 'description': 'Get the CV of a LinkedIn profile in PDF format. **1 credit per call.**', 'method': 'GET', 'required_parameters': [{'name': 'linkedin_url', 'type': 'STRING', 'description': '', 'default': 'https://www.linkedin.com/in/williamhgates/'}], 'optional_parameters': [], 'code': 'import requests\n\nurl = "https://fresh-linkedin-profile-data.p.rapidapi.com/get-profile-pdf-cv"\nquerystring = {"linkedin_url": linkedin_url}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "fresh-linkedin-profile-data.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 71 | Search | Fresh LinkedIn Profile Data | Reliable 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! We're active and responsive on this platform, please don't hesitate to drop a message in the Discussions or PM channels. | Check Search Status | Get the status of your search using the request_id given in step 1. | GET | {'name': 'Check Search Status', 'url': 'https://fresh-linkedin-profile-data.p.rapidapi.com/check-search-status', 'description': 'Get the status of your search using the request_id given in step 1.', 'method': 'GET', 'required_parameters': [{'name': 'request_id', 'type': 'STRING', 'description': '', 'default': 'dd1b29063de8927b31fa523d36432b61'}], 'optional_parameters': [], 'code': 'import requests\n\nurl = "https://fresh-linkedin-profile-data.p.rapidapi.com/check-search-status"\nquerystring = {"request_id": request_id}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "fresh-linkedin-profile-data.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 72 | Search | Fresh LinkedIn Profile Data | Reliable 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! We're active and responsive on this platform, please don't hesitate to drop a message in the Discussions or PM channels. | Get Search Results | Get search results. Please make sure the search is "done" before calling this endpoint. | GET | {'name': 'Get Search Results', 'url': 'https://fresh-linkedin-profile-data.p.rapidapi.com/get-search-results', 'description': 'Get search results. Please make sure the search is "done" before calling this endpoint.', 'method': 'GET', 'required_parameters': [{'name': 'page', 'type': 'STRING', 'description': '', 'default': '1'}, {'name': 'request_id', 'type': 'STRING', 'description': '', 'default': 'dd1b29063de8927b31fa523d36432b61'}], 'optional_parameters': [], 'code': 'import requests\n\nurl = "https://fresh-linkedin-profile-data.p.rapidapi.com/get-search-results"\nquerystring = {"page": page, "request_id": request_id}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "fresh-linkedin-profile-data.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 73 | Search | Fresh LinkedIn Profile Data | Reliable 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! We're active and responsive on this platform, please don't hesitate to drop a message in the Discussions or PM channels. | Get Open Profile Status | Given a LinkedIn profile URL, the API will let you know if that profile is “open profile” or not. **1 credit per call.** | GET | {'name': 'Get Open Profile Status', 'url': 'https://fresh-linkedin-profile-data.p.rapidapi.com/get-open-profile-status', 'description': 'Given a LinkedIn profile URL, the API will let you know if that profile is “open profile” or not. **1 credit per call.**', 'method': 'GET', 'required_parameters': [{'name': 'linkedin_url', 'type': 'STRING', 'description': '', 'default': 'https://www.linkedin.com/in/williamhgates/'}], 'optional_parameters': [], 'code': 'import requests\n\nurl = "https://fresh-linkedin-profile-data.p.rapidapi.com/get-open-profile-status"\nquerystring = {"linkedin_url": linkedin_url}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "fresh-linkedin-profile-data.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n', 'statuscode': 200, 'body': "{'key1': 'value', 'key2': 'value'}...", 'headers': {}, 'schema': {}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 74 | Search | Fresh LinkedIn Profile Data | Reliable 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! We're active and responsive on this platform, please don't hesitate to drop a message in the Discussions or PM channels. | Search LinkedIn Profiles via Google | Search LinkedIn profiles via Google using keyword, name, location, job title and company. For each search, this API will return top 100 results from Google. 1 credit per call. | POST | {'name': 'Search LinkedIn Profiles via Google', 'url': 'https://fresh-linkedin-profile-data.p.rapidapi.com/google-profiles', 'description': 'Search LinkedIn profiles via Google using keyword, name, location, job title and company. For each search, this API will return top 100 results from Google. 1 credit per call.', 'method': 'POST', 'required_parameters': [], 'optional_parameters': [], 'code': 'import requests\n\nurl = "https://fresh-linkedin-profile-data.p.rapidapi.com/google-profiles"\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "fresh-linkedin-profile-data.p.rapidapi.com"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://fresh-linkedin-profile-data.p.rapidapi.com/google-profiles"\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "fresh-linkedin-profile-data.p.rapidapi.com"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n', 'test_endpoint': '...'} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 75 | Search | Fresh LinkedIn Profile Data | Reliable 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! We're active and responsive on this platform, please don't hesitate to drop a message in the Discussions or PM channels. | Search LinkedIn Company Pages via Google | Find up to 100 companies that match your criteria via Google. | POST | {'name': 'Search LinkedIn Company Pages via Google', 'url': 'https://fresh-linkedin-profile-data.p.rapidapi.com/google-companies', 'description': 'Find up to 100 companies that match your criteria via Google.', 'method': 'POST', 'required_parameters': [], 'optional_parameters': [], 'code': 'import requests\n\nurl = "https://fresh-linkedin-profile-data.p.rapidapi.com/google-companies"\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "fresh-linkedin-profile-data.p.rapidapi.com"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://fresh-linkedin-profile-data.p.rapidapi.com/google-companies"\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "fresh-linkedin-profile-data.p.rapidapi.com"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n', 'test_endpoint': '...'} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 76 | Search | Fresh LinkedIn Profile Data | Reliable 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! We're active and responsive on this platform, please don't hesitate to drop a message in the Discussions or PM channels. | Search Decision Makers | Search for decision makers of any company on LinkedIn. This endpoint will remove any unmatched profiles that returned by LinkedIn. It does much more than a simple search on LinkedIn sales navigator. **It takes 50 credits to initiate a search and then takes 0.5 credit per profile returned.** How it works: Step 1: Use this endpoint to make a search using your criteria. This endpoint will return a "request_id" so that you can check for the search status anytime in step 2. This endpoint will cost you 50 credit per request. Step 2: Check the search status using the endpoint "/check-search-status". Calling to this endpoint is FREE. Step 3: Once the search is done, you can start collecting the results by using the endpoint "/get-search-results". This endpoint will cost you 0.5 credit per one profile. For example, if your search returns 100 results, it'll cost 50 credits. **Please note**: it normally takes a few minutes to complete such a search - but sometimes it may need 24 hours. We recommend you put in all your searches and let this api process them all within 24 hours. | POST | {'name': 'Search Decision Makers', 'url': 'https://fresh-linkedin-profile-data.p.rapidapi.com/search-decision-makers', 'description': 'Search for decision makers of any company on LinkedIn. This endpoint will remove any unmatched profiles that returned by LinkedIn. It does much more than a simple search on LinkedIn sales navigator.\n\n**It takes 50 credits to initiate a search and then takes 0.5 credit per profile returned.**\n\nHow it works:\n\nStep 1: Use this endpoint to make a search using your criteria. This endpoint will return a "request_id" so that you can check for the search status anytime in step 2. This endpoint will cost you 50 credit per request.\n\nStep 2: Check the search status using the endpoint "/check-search-status". Calling to this endpoint is FREE.\n\nStep 3: Once the search is done, you can start collecting the results by using the endpoint "/get-search-results". This endpoint will cost you 0.5 credit per one profile. For example, if your search returns 100 results, it\'ll cost 50 credits.\n\n**Please note**: it normally takes a few minutes to complete such a search - but sometimes it may need 24 hours. We recommend you put in all your searches and let this api process them all within 24 hours.', 'method': 'POST', 'required_parameters': [], 'optional_parameters': [], 'code': 'import requests\n\nurl = "https://fresh-linkedin-profile-data.p.rapidapi.com/search-decision-makers"\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "fresh-linkedin-profile-data.p.rapidapi.com"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://fresh-linkedin-profile-data.p.rapidapi.com/search-decision-makers"\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "fresh-linkedin-profile-data.p.rapidapi.com"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n', 'test_endpoint': '...'} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 77 | Search | Fresh LinkedIn Profile Data | Reliable 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! We're active and responsive on this platform, please don't hesitate to drop a message in the Discussions or PM channels. | Search Employees | Search employee profiles directly from LinkedIn. No cached databases. Available filters: current company, past company, industry, country, title keywords, general keywords. **It takes 50 credits to initiate a search and then takes 0.5 credit per profile returned.** How it works: - Step 1: Use this endpoint to make a search using your criteria. This endpoint will return a "request_id" so that you can check for the search status anytime in step 2. This endpoint will cost you 50 credits per request. - Step 2: Check the search status using the endpoint "/check-search-status". Calling to this endpoint is FREE. - Step 3: Once the search is done, you can start collecting the results by using the endpoint "/get-search-results". This endpoint will cost you 0.5 credit per one profile. For example, if your search returns 100 results, it'll cost 50 credits. **Please note**: it normally takes a few minutes to complete such a search - but sometimes it may need 24 hours. We recommend you put in all your searches and let this api process them all within 24 hours. | POST | {'name': 'Search Employees', 'url': 'https://fresh-linkedin-profile-data.p.rapidapi.com/search-employees', 'description': 'Search employee profiles directly from LinkedIn. No cached databases. \nAvailable filters: current company, past company, industry, country, title keywords, general keywords.\n\n**It takes 50 credits to initiate a search and then takes 0.5 credit per profile returned.**\n\nHow it works:\n\n- Step 1: Use this endpoint to make a search using your criteria. This endpoint will return a "request_id" so that you can check for the search status anytime in step 2. This endpoint will cost you 50 credits per request.\n\n- Step 2: Check the search status using the endpoint "/check-search-status". Calling to this endpoint is FREE.\n\n- Step 3: Once the search is done, you can start collecting the results by using the endpoint "/get-search-results". This endpoint will cost you 0.5 credit per one profile. For example, if your search returns 100 results, it\'ll cost 50 credits.\n\n**Please note**: it normally takes a few minutes to complete such a search - but sometimes it may need 24 hours. We recommend you put in all your searches and let this api process them all within 24 hours.', 'method': 'POST', 'required_parameters': [], 'optional_parameters': [], 'code': 'import requests\n\nurl = "https://fresh-linkedin-profile-data.p.rapidapi.com/search-employees"\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "fresh-linkedin-profile-data.p.rapidapi.com"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://fresh-linkedin-profile-data.p.rapidapi.com/search-employees"\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "fresh-linkedin-profile-data.p.rapidapi.com"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n', 'test_endpoint': '...', 'statuscode': 200, 'schema': {}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 78 | Food | Recipe by API-Ninjas | Search over 200,000 creative recipes. See more info at https://api-ninjas.com/api/recipe. | /v1/recipe | Get a list of recipes for a given search query. Returns at most 10 results. To access more than the first 10 results, use the offset parameter to offset results in multiple API calls. | GET | {'name': '/v1/recipe', 'url': 'https://recipe-by-api-ninjas.p.rapidapi.com/v1/recipe', 'description': 'Get a list of recipes for a given search query. Returns at most 10 results. To access more than the first 10 results, use the offset parameter to offset results in multiple API calls.', 'method': 'GET', 'required_parameters': [{'name': 'query', 'type': 'STRING', 'description': 'query text to search.', 'default': 'italian wedding soup'}], 'optional_parameters': [{'name': 'offset', 'type': 'STRING', 'description': 'number of results to offset for pagination.', 'default': ''}], 'code': 'import requests\n\nurl = "https://recipe-by-api-ninjas.p.rapidapi.com/v1/recipe"\nquerystring = {"query": query}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "recipe-by-api-ninjas.p.rapidapi.com"\n}\n\nresponse = requests.get(url, headers=headers, params=querystring)\n\nprint(response.json())\n', 'statuscode': 111, 'body': '...', 'headers': '', 'schema': ''} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 79 | Food | Recipe - Food - Nutrition | The spoonacular Nutrition, Recipe, and Food API allows you to access over 365,000 recipes and 86,000 food products. Our food ontology and semantic recipe search engine makes it possible to search for recipes using natural language queries, such as "gluten free brownies without sugar" or "low fat vegan cupcakes." You can automatically calculate the nutritional information for any recipe, analyze recipe costs, visualize ingredient lists, find recipes for what's in your fridge, find recipes based on special diets, nutritional requirements, or favorite ingredients, classify recipes into types and cuisines, convert ingredient amounts, or even compute an entire meal plan. With our powerful API, you can create many kinds of food and especially nutrition apps. Special diets/dietary requirements currently available include: vegan, vegetarian, pescetarian, gluten free, grain free, dairy free, high protein, low sodium, low carb, Paleo, Primal, ketogenic, FODMAP, and Whole 30. We will soon be adding Weight Watcher points, too. | Create Recipe Card (Deprecated) | Create a recipe card given a recipe. | POST | {'name': 'Create Recipe Card (Deprecated)', 'url': 'https://spoonacular-recipe-food-nutrition-v1.p.rapidapi.com/recipes/visualizeRecipe', 'description': 'Create a recipe card given a recipe.', 'method': 'POST', 'required_parameters': [{'name': 'backgroundImage', 'type': 'STRING', 'description': 'The background image ("none","background1", or "background2").', 'default': 'background1'}, {'name': 'readyInMinutes', 'type': 'NUMBER', 'description': 'The number of minutes it takes to get the recipe on the table.', 'default': '60'}, {'name': 'title', 'type': 'STRING', 'description': 'The title of the recipe.', 'default': 'Pork tenderloin with green beans'}, {'name': 'image', 'type': 'BINARY', 'description': 'The binary image of the recipe as jpg.', 'default': ''}, {'name': 'mask', 'type': 'STRING', 'description': 'The mask to put over the recipe image ("ellipseMask", "diamondMask", "diamondMask", "starMask", "heartMask", "potMask", "fishMask").', 'default': 'ellipseMask'}, {'name': 'instructions', 'type': 'STRING', 'description': 'The instructions to make the recipe. One step per line.', 'default': 'cook the beans'}, {'name': 'ingredients', 'type': 'STRING', 'description': 'The ingredient list of the recipe, one ingredient per line.', 'default': '2 cups of green beans'}, {'name': 'servings', 'type': 'NUMBER', 'description': 'The number of servings that you can make from the ingredients.', 'default': '2'}], 'optional_parameters': [{'name': 'fontColor', 'type': 'STRING', 'description': 'The font color on the recipe card as a hex-string.', 'default': '#333333'}, {'name': 'source', 'type': 'STRING', 'description': 'The source of the recipe.', 'default': 'spoonacular.com'}, {'name': 'author', 'type': 'STRING', 'description': 'The author of the recipe.', 'default': 'Emily Henderson'}, {'name': 'backgroundColor', 'type': 'STRING', 'description': 'The background color on the recipe card as a hex-string.', 'default': '#ffffff'}], 'code': 'import requests\n\nurl = "https://spoonacular-recipe-food-nutrition-v1.p.rapidapi.com/recipes/visualizeRecipe"\nquerystring = {"fontColor": "#333333", "backgroundImage": "background1", "source": "spoonacular.com", "readyInMinutes": "60", "author": "Emily Henderson", "title": "Pork tenderloin with green beans", "image": "", "mask": "ellipseMask", "instructions": "cook the beans", "ingredients": "2 cups of green beans", "servings": "2", "backgroundColor": "#ffffff"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "spoonacular-recipe-food-nutrition-v1.p.rapidapi.com"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://spoonacular-recipe-food-nutrition-v1.p.rapidapi.com/recipes/visualizeRecipe"\nquerystring = {"fontColor": "#333333", "backgroundImage": "background1", "source": "spoonacular.com", "readyInMinutes": "60", "author": "Emily Henderson", "title": "Pork tenderloin with green beans", "image": "", "mask": "ellipseMask", "instructions": "cook the beans", "ingredients": "2 cups of green beans", "servings": "2", "backgroundColor": "#ffffff"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "spoonacular-recipe-food-nutrition-v1.p.rapidapi.com"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n', 'test_endpoint': '...', 'statuscode': 200, 'schema': {'type': 'object', 'properties': {'status': {'type': 'string'}, 'message': {'type': 'string'}}}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 80 | Food | Recipe - Food - Nutrition | The spoonacular Nutrition, Recipe, and Food API allows you to access over 365,000 recipes and 86,000 food products. Our food ontology and semantic recipe search engine makes it possible to search for recipes using natural language queries, such as "gluten free brownies without sugar" or "low fat vegan cupcakes." You can automatically calculate the nutritional information for any recipe, analyze recipe costs, visualize ingredient lists, find recipes for what's in your fridge, find recipes based on special diets, nutritional requirements, or favorite ingredients, classify recipes into types and cuisines, convert ingredient amounts, or even compute an entire meal plan. With our powerful API, you can create many kinds of food and especially nutrition apps. Special diets/dietary requirements currently available include: vegan, vegetarian, pescetarian, gluten free, grain free, dairy free, high protein, low sodium, low carb, Paleo, Primal, ketogenic, FODMAP, and Whole 30. We will soon be adding Weight Watcher points, too. | Recipe Nutrition Widget | Visualize a recipe's nutritional information as HTML including CSS. Full example code of how to work with widgets can be found in our [spoonacular-widget GitHub](https://github.com/ddsky/spoonacular-widgets). | POST | {'name': 'Recipe Nutrition Widget', 'url': 'https://spoonacular-recipe-food-nutrition-v1.p.rapidapi.com/recipes/visualizeNutrition', 'description': "Visualize a recipe's nutritional information as HTML including CSS. \n\nFull example code of how to work with widgets can be found in our [spoonacular-widget GitHub](https://github.com/ddsky/spoonacular-widgets).", 'method': 'POST', 'required_parameters': [{'name': 'servings', 'type': 'NUMBER', 'description': 'The number of servings.', 'default': '2'}, {'name': 'ingredientList', 'type': 'STRING', 'description': 'The ingredient list of the recipe, one ingredient per line.', 'default': '3 oz flour'}], 'optional_parameters': [{'name': 'showBacklink', 'type': 'BOOLEAN', 'description': 'Whether to show a backlink to spoonacular.', 'default': 'true'}, {'name': 'defaultCss', 'type': 'BOOLEAN', 'description': 'Whether the default CSS should be added to the response.', 'default': 'true'}, {'name': 'language', 'type': 'STRING', 'description': 'The input language, either "en" or "de".', 'default': 'en'}], 'code': 'import requests\n\nurl = "https://spoonacular-recipe-food-nutrition-v1.p.rapidapi.com/recipes/visualizeNutrition"\nquerystring = {"servings": "2", "showBacklink": "true", "defaultCss": "true", "ingredientList": "3 oz flour", "language": "en"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "spoonacular-recipe-food-nutrition-v1.p.rapidapi.com"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://spoonacular-recipe-food-nutrition-v1.p.rapidapi.com/recipes/visualizeNutrition"\nquerystring = {"servings": "2", "showBacklink": "true", "defaultCss": "true", "ingredientList": "3 oz flour", "language": "en"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "spoonacular-recipe-food-nutrition-v1.p.rapidapi.com"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n', 'test_endpoint': '...'} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 81 | Food | Recipe - Food - Nutrition | The spoonacular Nutrition, Recipe, and Food API allows you to access over 365,000 recipes and 86,000 food products. Our food ontology and semantic recipe search engine makes it possible to search for recipes using natural language queries, such as "gluten free brownies without sugar" or "low fat vegan cupcakes." You can automatically calculate the nutritional information for any recipe, analyze recipe costs, visualize ingredient lists, find recipes for what's in your fridge, find recipes based on special diets, nutritional requirements, or favorite ingredients, classify recipes into types and cuisines, convert ingredient amounts, or even compute an entire meal plan. With our powerful API, you can create many kinds of food and especially nutrition apps. Special diets/dietary requirements currently available include: vegan, vegetarian, pescetarian, gluten free, grain free, dairy free, high protein, low sodium, low carb, Paleo, Primal, ketogenic, FODMAP, and Whole 30. We will soon be adding Weight Watcher points, too. | Detect Food in Text | Detect ingredients and dishes in texts. | POST | {'name': 'Detect Food in Text', 'url': 'https://spoonacular-recipe-food-nutrition-v1.p.rapidapi.com/food/detect', 'description': 'Detect ingredients and dishes in texts.', 'method': 'POST', 'required_parameters': [{'name': 'text', 'type': 'STRING', 'description': 'The text in which food items such as dish names and ingredients should be detected in.', 'default': 'I like to eat delicious tacos. Only cheeseburger with cheddar are better than that. But then again, pizza with pepperoni, mushrooms, and tomatoes is so good!'}], 'optional_parameters': [], 'code': 'import requests\n\nurl = "https://spoonacular-recipe-food-nutrition-v1.p.rapidapi.com/food/detect"\nquerystring = {"text": "I like to eat delicious tacos. Only cheeseburger with cheddar are better than that. But then again, pizza with pepperoni, mushrooms, and tomatoes is so good!"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "spoonacular-recipe-food-nutrition-v1.p.rapidapi.com"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://spoonacular-recipe-food-nutrition-v1.p.rapidapi.com/food/detect"\nquerystring = {"text": "I like to eat delicious tacos. Only cheeseburger with cheddar are better than that. But then again, pizza with pepperoni, mushrooms, and tomatoes is so good!"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "spoonacular-recipe-food-nutrition-v1.p.rapidapi.com"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n', 'test_endpoint': '...', 'statuscode': 1, 'schema': ''} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 82 | Food | Recipe - Food - Nutrition | The spoonacular Nutrition, Recipe, and Food API allows you to access over 365,000 recipes and 86,000 food products. Our food ontology and semantic recipe search engine makes it possible to search for recipes using natural language queries, such as "gluten free brownies without sugar" or "low fat vegan cupcakes." You can automatically calculate the nutritional information for any recipe, analyze recipe costs, visualize ingredient lists, find recipes for what's in your fridge, find recipes based on special diets, nutritional requirements, or favorite ingredients, classify recipes into types and cuisines, convert ingredient amounts, or even compute an entire meal plan. With our powerful API, you can create many kinds of food and especially nutrition apps. Special diets/dietary requirements currently available include: vegan, vegetarian, pescetarian, gluten free, grain free, dairy free, high protein, low sodium, low carb, Paleo, Primal, ketogenic, FODMAP, and Whole 30. We will soon be adding Weight Watcher points, too. | Image Analysis (File) | Classify and analyze a food image. | POST | {'name': 'Image Analysis (File)', 'url': 'https://spoonacular-recipe-food-nutrition-v1.p.rapidapi.com/food/images/analyze', 'description': 'Classify and analyze a food image.', 'method': 'POST', 'required_parameters': [{'name': 'file', 'type': 'BINARY', 'description': '', 'default': ''}], 'optional_parameters': [], 'code': 'import requests\n\nurl = "https://spoonacular-recipe-food-nutrition-v1.p.rapidapi.com/food/images/analyze"\nquerystring = {"file": ""}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "spoonacular-recipe-food-nutrition-v1.p.rapidapi.com"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://spoonacular-recipe-food-nutrition-v1.p.rapidapi.com/food/images/analyze"\nquerystring = {"file": ""}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "spoonacular-recipe-food-nutrition-v1.p.rapidapi.com"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n', 'test_endpoint': '...'} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 83 | Food | Recipe - Food - Nutrition | The spoonacular Nutrition, Recipe, and Food API allows you to access over 365,000 recipes and 86,000 food products. Our food ontology and semantic recipe search engine makes it possible to search for recipes using natural language queries, such as "gluten free brownies without sugar" or "low fat vegan cupcakes." You can automatically calculate the nutritional information for any recipe, analyze recipe costs, visualize ingredient lists, find recipes for what's in your fridge, find recipes based on special diets, nutritional requirements, or favorite ingredients, classify recipes into types and cuisines, convert ingredient amounts, or even compute an entire meal plan. With our powerful API, you can create many kinds of food and especially nutrition apps. Special diets/dietary requirements currently available include: vegan, vegetarian, pescetarian, gluten free, grain free, dairy free, high protein, low sodium, low carb, Paleo, Primal, ketogenic, FODMAP, and Whole 30. We will soon be adding Weight Watcher points, too. | Compute Shopping List | Compute a shopping list from a set of simple foods. This endpoint does not require usernames. | POST | {'name': 'Compute Shopping List', 'url': 'https://spoonacular-recipe-food-nutrition-v1.p.rapidapi.com/mealplanner/shopping-list/compute', 'description': 'Compute a shopping list from a set of simple foods. This endpoint does not require usernames.', 'method': 'POST', 'required_parameters': [], 'optional_parameters': [], 'code': 'import requests\n\nurl = "https://spoonacular-recipe-food-nutrition-v1.p.rapidapi.com/mealplanner/shopping-list/compute"\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "spoonacular-recipe-food-nutrition-v1.p.rapidapi.com"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://spoonacular-recipe-food-nutrition-v1.p.rapidapi.com/mealplanner/shopping-list/compute"\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "spoonacular-recipe-food-nutrition-v1.p.rapidapi.com"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n', 'test_endpoint': '...', 'statuscode': 200, 'schema': {}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 84 | Food | Recipe - Food - Nutrition | The spoonacular Nutrition, Recipe, and Food API allows you to access over 365,000 recipes and 86,000 food products. Our food ontology and semantic recipe search engine makes it possible to search for recipes using natural language queries, such as "gluten free brownies without sugar" or "low fat vegan cupcakes." You can automatically calculate the nutritional information for any recipe, analyze recipe costs, visualize ingredient lists, find recipes for what's in your fridge, find recipes based on special diets, nutritional requirements, or favorite ingredients, classify recipes into types and cuisines, convert ingredient amounts, or even compute an entire meal plan. With our powerful API, you can create many kinds of food and especially nutrition apps. Special diets/dietary requirements currently available include: vegan, vegetarian, pescetarian, gluten free, grain free, dairy free, high protein, low sodium, low carb, Paleo, Primal, ketogenic, FODMAP, and Whole 30. We will soon be adding Weight Watcher points, too. | Generate Shopping List | Generate the shopping list for a user from the meal planner in a given time frame. | POST | {'name': 'Generate Shopping List', 'url': 'https://spoonacular-recipe-food-nutrition-v1.p.rapidapi.com/mealplanner/dsky/shopping-list/2020-06-01/2020-06-07', 'description': 'Generate the shopping list for a user from the meal planner in a given time frame.', 'method': 'POST', 'required_parameters': [{'name': 'end-date', 'type': 'string', 'description': 'The end date in the format yyyy-mm-dd.', 'default': '2020-06-07'}, {'name': 'hash', 'type': 'STRING', 'description': 'The private hash for the username.', 'default': '4b5v4398573406'}, {'name': 'start-date', 'type': 'string', 'description': 'The start date in the format yyyy-mm-dd.', 'default': '2020-06-01'}, {'name': 'username', 'type': 'string', 'description': 'The username.', 'default': 'dsky'}], 'optional_parameters': [], 'code': 'import requests\n\nurl = "https://spoonacular-recipe-food-nutrition-v1.p.rapidapi.com/mealplanner/dsky/shopping-list/2020-06-01/2020-06-07"\nquerystring = {"hash": "4b5v4398573406"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "spoonacular-recipe-food-nutrition-v1.p.rapidapi.com"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://spoonacular-recipe-food-nutrition-v1.p.rapidapi.com/mealplanner/{username}/shopping-list/{start_date}/{end_date}"\nquerystring = {"hash": "4b5v4398573406"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "spoonacular-recipe-food-nutrition-v1.p.rapidapi.com"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n', 'test_endpoint': '...'} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 85 | Food | Recipe - Food - Nutrition | The spoonacular Nutrition, Recipe, and Food API allows you to access over 365,000 recipes and 86,000 food products. Our food ontology and semantic recipe search engine makes it possible to search for recipes using natural language queries, such as "gluten free brownies without sugar" or "low fat vegan cupcakes." You can automatically calculate the nutritional information for any recipe, analyze recipe costs, visualize ingredient lists, find recipes for what's in your fridge, find recipes based on special diets, nutritional requirements, or favorite ingredients, classify recipes into types and cuisines, convert ingredient amounts, or even compute an entire meal plan. With our powerful API, you can create many kinds of food and especially nutrition apps. Special diets/dietary requirements currently available include: vegan, vegetarian, pescetarian, gluten free, grain free, dairy free, high protein, low sodium, low carb, Paleo, Primal, ketogenic, FODMAP, and Whole 30. We will soon be adding Weight Watcher points, too. | Add to Shopping List | Add an item to the current shopping list of a user. | POST | {'name': 'Add to Shopping List', 'url': 'https://spoonacular-recipe-food-nutrition-v1.p.rapidapi.com/mealplanner/dsky/shopping-list/items', 'description': 'Add an item to the current shopping list of a user.', 'method': 'POST', 'required_parameters': [{'name': 'hash', 'type': 'STRING', 'description': 'The private hash for the username.', 'default': '4b5v4398573406'}, {'name': 'username', 'type': 'string', 'description': 'The username.', 'default': 'dsky'}], 'optional_parameters': [], 'code': 'import requests\n\nurl = "https://spoonacular-recipe-food-nutrition-v1.p.rapidapi.com/mealplanner/dsky/shopping-list/items"\nquerystring = {"hash": "4b5v4398573406"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "spoonacular-recipe-food-nutrition-v1.p.rapidapi.com"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://spoonacular-recipe-food-nutrition-v1.p.rapidapi.com/mealplanner/{username}/shopping-list/items"\nquerystring = {"hash": "4b5v4398573406"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "spoonacular-recipe-food-nutrition-v1.p.rapidapi.com"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n', 'test_endpoint': '...'} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 86 | Food | Recipe - Food - Nutrition | The spoonacular Nutrition, Recipe, and Food API allows you to access over 365,000 recipes and 86,000 food products. Our food ontology and semantic recipe search engine makes it possible to search for recipes using natural language queries, such as "gluten free brownies without sugar" or "low fat vegan cupcakes." You can automatically calculate the nutritional information for any recipe, analyze recipe costs, visualize ingredient lists, find recipes for what's in your fridge, find recipes based on special diets, nutritional requirements, or favorite ingredients, classify recipes into types and cuisines, convert ingredient amounts, or even compute an entire meal plan. With our powerful API, you can create many kinds of food and especially nutrition apps. Special diets/dietary requirements currently available include: vegan, vegetarian, pescetarian, gluten free, grain free, dairy free, high protein, low sodium, low carb, Paleo, Primal, ketogenic, FODMAP, and Whole 30. We will soon be adding Weight Watcher points, too. | Add Meal Plan Template | Add a meal plan template for a user. | POST | {'name': 'Add Meal Plan Template', 'url': 'https://spoonacular-recipe-food-nutrition-v1.p.rapidapi.com/mealplanner/dsky/templates', 'description': 'Add a meal plan template for a user.', 'method': 'POST', 'required_parameters': [{'name': 'username', 'type': 'string', 'description': 'The username.', 'default': 'dsky'}, {'name': 'hash', 'type': 'STRING', 'description': 'The private hash for the username.', 'default': '4b5v4398573406'}], 'optional_parameters': [], 'code': 'import requests\n\nurl = "https://spoonacular-recipe-food-nutrition-v1.p.rapidapi.com/mealplanner/dsky/templates"\nquerystring = {"hash": "4b5v4398573406"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "spoonacular-recipe-food-nutrition-v1.p.rapidapi.com"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://spoonacular-recipe-food-nutrition-v1.p.rapidapi.com/mealplanner/{username}/templates"\nquerystring = {"hash": "4b5v4398573406"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "spoonacular-recipe-food-nutrition-v1.p.rapidapi.com"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n', 'test_endpoint': '...'} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 87 | Food | Recipe - Food - Nutrition | The spoonacular Nutrition, Recipe, and Food API allows you to access over 365,000 recipes and 86,000 food products. Our food ontology and semantic recipe search engine makes it possible to search for recipes using natural language queries, such as "gluten free brownies without sugar" or "low fat vegan cupcakes." You can automatically calculate the nutritional information for any recipe, analyze recipe costs, visualize ingredient lists, find recipes for what's in your fridge, find recipes based on special diets, nutritional requirements, or favorite ingredients, classify recipes into types and cuisines, convert ingredient amounts, or even compute an entire meal plan. With our powerful API, you can create many kinds of food and especially nutrition apps. Special diets/dietary requirements currently available include: vegan, vegetarian, pescetarian, gluten free, grain free, dairy free, high protein, low sodium, low carb, Paleo, Primal, ketogenic, FODMAP, and Whole 30. We will soon be adding Weight Watcher points, too. | Add to Meal Plan | Add an item to the user's meal plan. The Add to Meal Plan endpoint is complex, be sure to review the [guide here](https://spoonacular.com/food-api/docs#Add-to-Meal-Plan) | POST | {'name': 'Add to Meal Plan', 'url': 'https://spoonacular-recipe-food-nutrition-v1.p.rapidapi.com/mealplanner/dsky/items', 'description': "Add an item to the user's meal plan. The Add to Meal Plan endpoint is complex, be sure to review the [guide here](https://spoonacular.com/food-api/docs#Add-to-Meal-Plan)", 'method': 'POST', 'required_parameters': [{'name': 'hash', 'type': 'STRING', 'description': 'The private hash for the username.', 'default': '4b5v4398573406'}, {'name': 'username', 'type': 'string', 'description': 'The username.', 'default': 'dsky'}], 'optional_parameters': [], 'code': 'import requests\n\nurl = "https://spoonacular-recipe-food-nutrition-v1.p.rapidapi.com/mealplanner/dsky/items"\nquerystring = {"hash": "4b5v4398573406"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "spoonacular-recipe-food-nutrition-v1.p.rapidapi.com"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://spoonacular-recipe-food-nutrition-v1.p.rapidapi.com/mealplanner/{username}/items"\nquerystring = {"hash": "4b5v4398573406"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "spoonacular-recipe-food-nutrition-v1.p.rapidapi.com"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n', 'test_endpoint': '...'} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 88 | Food | Recipe - Food - Nutrition | The spoonacular Nutrition, Recipe, and Food API allows you to access over 365,000 recipes and 86,000 food products. Our food ontology and semantic recipe search engine makes it possible to search for recipes using natural language queries, such as "gluten free brownies without sugar" or "low fat vegan cupcakes." You can automatically calculate the nutritional information for any recipe, analyze recipe costs, visualize ingredient lists, find recipes for what's in your fridge, find recipes based on special diets, nutritional requirements, or favorite ingredients, classify recipes into types and cuisines, convert ingredient amounts, or even compute an entire meal plan. With our powerful API, you can create many kinds of food and especially nutrition apps. Special diets/dietary requirements currently available include: vegan, vegetarian, pescetarian, gluten free, grain free, dairy free, high protein, low sodium, low carb, Paleo, Primal, ketogenic, FODMAP, and Whole 30. We will soon be adding Weight Watcher points, too. | Classify Grocery Product Bulk | Provide a set of product jsons, get back classified products. | POST | {'name': 'Classify Grocery Product Bulk', 'url': 'https://spoonacular-recipe-food-nutrition-v1.p.rapidapi.com/food/products/classifyBatch', 'description': 'Provide a set of product jsons, get back classified products.', 'method': 'POST', 'required_parameters': [], 'optional_parameters': [{'name': 'locale', 'type': 'STRING', 'description': 'The display name of the returned category, supported is en_US (for American English) and en_GB (for British English).', 'default': 'en_US'}], 'code': 'import requests\n\nurl = "https://spoonacular-recipe-food-nutrition-v1.p.rapidapi.com/food/products/classifyBatch"\nquerystring = {"locale": "en_US"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "spoonacular-recipe-food-nutrition-v1.p.rapidapi.com"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://spoonacular-recipe-food-nutrition-v1.p.rapidapi.com/food/products/classifyBatch"\nquerystring = {"locale": "en_US"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "spoonacular-recipe-food-nutrition-v1.p.rapidapi.com"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n', 'test_endpoint': '...', 'statuscode': 200, 'schema': {'type': 'array', 'items': {'type': 'object', 'properties': {'breadcrumbs': {'type': 'array', 'items': {'type': 'string'}}, 'category': {'type': 'string'}, 'usdaCode': {'type': 'integer'}, 'image': {'type': 'string'}, 'cleanTitle': {'type': 'string'}}}}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 89 | Food | Recipe - Food - Nutrition | The spoonacular Nutrition, Recipe, and Food API allows you to access over 365,000 recipes and 86,000 food products. Our food ontology and semantic recipe search engine makes it possible to search for recipes using natural language queries, such as "gluten free brownies without sugar" or "low fat vegan cupcakes." You can automatically calculate the nutritional information for any recipe, analyze recipe costs, visualize ingredient lists, find recipes for what's in your fridge, find recipes based on special diets, nutritional requirements, or favorite ingredients, classify recipes into types and cuisines, convert ingredient amounts, or even compute an entire meal plan. With our powerful API, you can create many kinds of food and especially nutrition apps. Special diets/dietary requirements currently available include: vegan, vegetarian, pescetarian, gluten free, grain free, dairy free, high protein, low sodium, low carb, Paleo, Primal, ketogenic, FODMAP, and Whole 30. We will soon be adding Weight Watcher points, too. | Compute Glycemic Load | Retrieve the glycemic index for a list of ingredients and compute the individual and total glycemic load. | POST | {'name': 'Compute Glycemic Load', 'url': 'https://spoonacular-recipe-food-nutrition-v1.p.rapidapi.com/food/ingredients/glycemicLoad', 'description': 'Retrieve the glycemic index for a list of ingredients and compute the individual and total glycemic load.', 'method': 'POST', 'required_parameters': [], 'optional_parameters': [{'name': 'language', 'type': 'STRING', 'description': 'The input language, either \\\\\\"en\\\\\\" or \\\\\\"de\\\\\\".', 'default': 'en'}], 'code': 'import requests\n\nurl = "https://spoonacular-recipe-food-nutrition-v1.p.rapidapi.com/food/ingredients/glycemicLoad"\nquerystring = {"language": "en"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "spoonacular-recipe-food-nutrition-v1.p.rapidapi.com"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://spoonacular-recipe-food-nutrition-v1.p.rapidapi.com/food/ingredients/glycemicLoad"\nquerystring = {"language": "en"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "spoonacular-recipe-food-nutrition-v1.p.rapidapi.com"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n', 'test_endpoint': '...', 'statuscode': 200, 'schema': {}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 90 | Food | Recipe - Food - Nutrition | The spoonacular Nutrition, Recipe, and Food API allows you to access over 365,000 recipes and 86,000 food products. Our food ontology and semantic recipe search engine makes it possible to search for recipes using natural language queries, such as "gluten free brownies without sugar" or "low fat vegan cupcakes." You can automatically calculate the nutritional information for any recipe, analyze recipe costs, visualize ingredient lists, find recipes for what's in your fridge, find recipes based on special diets, nutritional requirements, or favorite ingredients, classify recipes into types and cuisines, convert ingredient amounts, or even compute an entire meal plan. With our powerful API, you can create many kinds of food and especially nutrition apps. Special diets/dietary requirements currently available include: vegan, vegetarian, pescetarian, gluten free, grain free, dairy free, high protein, low sodium, low carb, Paleo, Primal, ketogenic, FODMAP, and Whole 30. We will soon be adding Weight Watcher points, too. | Parse Ingredients | Extract an ingredient from plain text. | POST | {'name': 'Parse Ingredients', 'url': 'https://spoonacular-recipe-food-nutrition-v1.p.rapidapi.com/recipes/parseIngredients', 'description': 'Extract an ingredient from plain text.', 'method': 'POST', 'required_parameters': [{'name': 'ingredientList', 'type': 'STRING', 'description': 'The ingredient list of the recipe, one ingredient per line.', 'default': '3 oz pork shoulder'}, {'name': 'servings', 'type': 'NUMBER', 'description': 'The number of servings that you can make from the ingredients.', 'default': '2'}], 'optional_parameters': [{'name': 'includeNutrition', 'type': 'BOOLEAN', 'description': 'Whether nutrition data should be added to correctly parsed ingredients.', 'default': ''}], 'code': 'import requests\n\nurl = "https://spoonacular-recipe-food-nutrition-v1.p.rapidapi.com/recipes/parseIngredients"\nquerystring = {"ingredientList": "3 oz pork shoulder", "servings": "2", "includeNutrition": ""}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "spoonacular-recipe-food-nutrition-v1.p.rapidapi.com"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://spoonacular-recipe-food-nutrition-v1.p.rapidapi.com/recipes/parseIngredients"\nquerystring = {"ingredientList": "3 oz pork shoulder", "servings": "2", "includeNutrition": ""}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "spoonacular-recipe-food-nutrition-v1.p.rapidapi.com"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n', 'test_endpoint': '...', 'statuscode': 1, 'schema': ''} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 91 | Food | Recipe - Food - Nutrition | The spoonacular Nutrition, Recipe, and Food API allows you to access over 365,000 recipes and 86,000 food products. Our food ontology and semantic recipe search engine makes it possible to search for recipes using natural language queries, such as "gluten free brownies without sugar" or "low fat vegan cupcakes." You can automatically calculate the nutritional information for any recipe, analyze recipe costs, visualize ingredient lists, find recipes for what's in your fridge, find recipes based on special diets, nutritional requirements, or favorite ingredients, classify recipes into types and cuisines, convert ingredient amounts, or even compute an entire meal plan. With our powerful API, you can create many kinds of food and especially nutrition apps. Special diets/dietary requirements currently available include: vegan, vegetarian, pescetarian, gluten free, grain free, dairy free, high protein, low sodium, low carb, Paleo, Primal, ketogenic, FODMAP, and Whole 30. We will soon be adding Weight Watcher points, too. | Analyze Recipe | This endpoint allows you to send raw recipe information, such as title, servings, and ingredients, to then see what we compute (badges, diets, nutrition, and more). This is useful if you have your own recipe data and want to enrich it with our semantic analysis. | POST | {'name': 'Analyze Recipe', 'url': 'https://spoonacular-recipe-food-nutrition-v1.p.rapidapi.com/recipes/analyze', 'description': 'This endpoint allows you to send raw recipe information, such as title, servings, and ingredients, to then see what we compute (badges, diets, nutrition, and more). This is useful if you have your own recipe data and want to enrich it with our semantic analysis.', 'method': 'POST', 'required_parameters': [], 'optional_parameters': [{'name': 'includeTaste', 'type': 'BOOLEAN', 'description': '', 'default': 'false'}, {'name': 'includeNutrition', 'type': 'BOOLEAN', 'description': '', 'default': 'false'}, {'name': 'language', 'type': 'STRING', 'description': 'The input language, either \\\\\\"en\\\\\\" or \\\\\\"de\\\\\\".', 'default': 'en'}], 'code': 'import requests\n\nurl = "https://spoonacular-recipe-food-nutrition-v1.p.rapidapi.com/recipes/analyze"\nquerystring = {"includeTaste": "false", "includeNutrition": "false", "language": "en"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "spoonacular-recipe-food-nutrition-v1.p.rapidapi.com"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://spoonacular-recipe-food-nutrition-v1.p.rapidapi.com/recipes/analyze"\nquerystring = {"includeTaste": "false", "includeNutrition": "false", "language": "en"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "spoonacular-recipe-food-nutrition-v1.p.rapidapi.com"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n', 'test_endpoint': '...', 'statuscode': 200, 'schema': {}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 92 | Food | Recipe - Food - Nutrition | The spoonacular Nutrition, Recipe, and Food API allows you to access over 365,000 recipes and 86,000 food products. Our food ontology and semantic recipe search engine makes it possible to search for recipes using natural language queries, such as "gluten free brownies without sugar" or "low fat vegan cupcakes." You can automatically calculate the nutritional information for any recipe, analyze recipe costs, visualize ingredient lists, find recipes for what's in your fridge, find recipes based on special diets, nutritional requirements, or favorite ingredients, classify recipes into types and cuisines, convert ingredient amounts, or even compute an entire meal plan. With our powerful API, you can create many kinds of food and especially nutrition apps. Special diets/dietary requirements currently available include: vegan, vegetarian, pescetarian, gluten free, grain free, dairy free, high protein, low sodium, low carb, Paleo, Primal, ketogenic, FODMAP, and Whole 30. We will soon be adding Weight Watcher points, too. | Analyze Recipe Instructions | Extract ingredients and equipment from the recipe instruction steps. | POST | {'name': 'Analyze Recipe Instructions', 'url': 'https://spoonacular-recipe-food-nutrition-v1.p.rapidapi.com/recipes/analyzeInstructions', 'description': 'Extract ingredients and equipment from the recipe instruction steps.', 'method': 'POST', 'required_parameters': [{'name': 'instructions', 'type': 'STRING', 'description': 'The instructions text.', 'default': 'Put the garlic in a pan and then add the onion.'}], 'optional_parameters': [], 'code': 'import requests\n\nurl = "https://spoonacular-recipe-food-nutrition-v1.p.rapidapi.com/recipes/analyzeInstructions"\nquerystring = {"instructions": "Put the garlic in a pan and then add the onion."}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "spoonacular-recipe-food-nutrition-v1.p.rapidapi.com"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://spoonacular-recipe-food-nutrition-v1.p.rapidapi.com/recipes/analyzeInstructions"\nquerystring = {"instructions": "Put the garlic in a pan and then add the onion."}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "spoonacular-recipe-food-nutrition-v1.p.rapidapi.com"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n', 'test_endpoint': '...'} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 93 | Food | Recipe - Food - Nutrition | The spoonacular Nutrition, Recipe, and Food API allows you to access over 365,000 recipes and 86,000 food products. Our food ontology and semantic recipe search engine makes it possible to search for recipes using natural language queries, such as "gluten free brownies without sugar" or "low fat vegan cupcakes." You can automatically calculate the nutritional information for any recipe, analyze recipe costs, visualize ingredient lists, find recipes for what's in your fridge, find recipes based on special diets, nutritional requirements, or favorite ingredients, classify recipes into types and cuisines, convert ingredient amounts, or even compute an entire meal plan. With our powerful API, you can create many kinds of food and especially nutrition apps. Special diets/dietary requirements currently available include: vegan, vegetarian, pescetarian, gluten free, grain free, dairy free, high protein, low sodium, low carb, Paleo, Primal, ketogenic, FODMAP, and Whole 30. We will soon be adding Weight Watcher points, too. | Connect User | In order to call user-specific endpoints, you need to connect your app's users to spoonacular users. Just call this endpoint with your user's information and you will get back a username and hash that you must save on your side. In future requests that you make on this user's behalf you simply pass their username and hash alongside your API key. | POST | {'name': 'Connect User', 'url': 'https://spoonacular-recipe-food-nutrition-v1.p.rapidapi.com/users/connect', 'description': "In order to call user-specific endpoints, you need to connect your app's users to spoonacular users.\n\nJust call this endpoint with your user's information and you will get back a username and hash that you must save on your side. In future requests that you make on this user's behalf you simply pass their username and hash alongside your API key.", 'method': 'POST', 'required_parameters': [], 'optional_parameters': [], 'code': 'import requests\n\nurl = "https://spoonacular-recipe-food-nutrition-v1.p.rapidapi.com/users/connect"\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "spoonacular-recipe-food-nutrition-v1.p.rapidapi.com"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://spoonacular-recipe-food-nutrition-v1.p.rapidapi.com/users/connect"\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "spoonacular-recipe-food-nutrition-v1.p.rapidapi.com"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n', 'test_endpoint': '...', 'statuscode': 200, 'schema': {}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 94 | Food | Recipe - Food - Nutrition | The spoonacular Nutrition, Recipe, and Food API allows you to access over 365,000 recipes and 86,000 food products. Our food ontology and semantic recipe search engine makes it possible to search for recipes using natural language queries, such as "gluten free brownies without sugar" or "low fat vegan cupcakes." You can automatically calculate the nutritional information for any recipe, analyze recipe costs, visualize ingredient lists, find recipes for what's in your fridge, find recipes based on special diets, nutritional requirements, or favorite ingredients, classify recipes into types and cuisines, convert ingredient amounts, or even compute an entire meal plan. With our powerful API, you can create many kinds of food and especially nutrition apps. Special diets/dietary requirements currently available include: vegan, vegetarian, pescetarian, gluten free, grain free, dairy free, high protein, low sodium, low carb, Paleo, Primal, ketogenic, FODMAP, and Whole 30. We will soon be adding Weight Watcher points, too. | Map Ingredients to Grocery Products | Map a set of ingredients to products you can buy in the grocery store. | POST | {'name': 'Map Ingredients to Grocery Products', 'url': 'https://spoonacular-recipe-food-nutrition-v1.p.rapidapi.com/food/ingredients/map', 'description': 'Map a set of ingredients to products you can buy in the grocery store.', 'method': 'POST', 'required_parameters': [], 'optional_parameters': [], 'code': 'import requests\n\nurl = "https://spoonacular-recipe-food-nutrition-v1.p.rapidapi.com/food/ingredients/map"\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "spoonacular-recipe-food-nutrition-v1.p.rapidapi.com"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://spoonacular-recipe-food-nutrition-v1.p.rapidapi.com/food/ingredients/map"\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "spoonacular-recipe-food-nutrition-v1.p.rapidapi.com"\n }\n\nresponse = requests.post(url, headers=headers)\nprint(response.json())\n', 'test_endpoint': '...', 'statuscode': 1, 'schema': ''} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 95 | Food | Recipe - Food - Nutrition | The spoonacular Nutrition, Recipe, and Food API allows you to access over 365,000 recipes and 86,000 food products. Our food ontology and semantic recipe search engine makes it possible to search for recipes using natural language queries, such as "gluten free brownies without sugar" or "low fat vegan cupcakes." You can automatically calculate the nutritional information for any recipe, analyze recipe costs, visualize ingredient lists, find recipes for what's in your fridge, find recipes based on special diets, nutritional requirements, or favorite ingredients, classify recipes into types and cuisines, convert ingredient amounts, or even compute an entire meal plan. With our powerful API, you can create many kinds of food and especially nutrition apps. Special diets/dietary requirements currently available include: vegan, vegetarian, pescetarian, gluten free, grain free, dairy free, high protein, low sodium, low carb, Paleo, Primal, ketogenic, FODMAP, and Whole 30. We will soon be adding Weight Watcher points, too. | Classify a Grocery Product | Given a grocery product title, this endpoint allows you to detect what basic ingredient it is. | POST | {'name': 'Classify a Grocery Product', 'url': 'https://spoonacular-recipe-food-nutrition-v1.p.rapidapi.com/food/products/classify', 'description': 'Given a grocery product title, this endpoint allows you to detect what basic ingredient it is.', 'method': 'POST', 'required_parameters': [], 'optional_parameters': [{'name': 'locale', 'type': 'STRING', 'description': 'The locale of the returned category, supported is en\\_US and en\\_GB.', 'default': 'en_us'}], 'code': 'import requests\n\nurl = "https://spoonacular-recipe-food-nutrition-v1.p.rapidapi.com/food/products/classify"\nquerystring = {"locale": "en_us"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "spoonacular-recipe-food-nutrition-v1.p.rapidapi.com"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://spoonacular-recipe-food-nutrition-v1.p.rapidapi.com/food/products/classify"\nquerystring = {"locale": "en_us"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "spoonacular-recipe-food-nutrition-v1.p.rapidapi.com"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n', 'test_endpoint': '...', 'statuscode': 200, 'schema': {'properties': {'breadcrumbs': {'items': {'type': 'string'}, 'type': 'array'}, 'category': {'type': 'string'}, 'cleanTitle': {'type': 'string'}, 'usdaCode': {'type': 'integer'}}, 'type': 'object'}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 96 | Food | Recipe - Food - Nutrition | The spoonacular Nutrition, Recipe, and Food API allows you to access over 365,000 recipes and 86,000 food products. Our food ontology and semantic recipe search engine makes it possible to search for recipes using natural language queries, such as "gluten free brownies without sugar" or "low fat vegan cupcakes." You can automatically calculate the nutritional information for any recipe, analyze recipe costs, visualize ingredient lists, find recipes for what's in your fridge, find recipes based on special diets, nutritional requirements, or favorite ingredients, classify recipes into types and cuisines, convert ingredient amounts, or even compute an entire meal plan. With our powerful API, you can create many kinds of food and especially nutrition apps. Special diets/dietary requirements currently available include: vegan, vegetarian, pescetarian, gluten free, grain free, dairy free, high protein, low sodium, low carb, Paleo, Primal, ketogenic, FODMAP, and Whole 30. We will soon be adding Weight Watcher points, too. | Classify Cuisine | Classify the recipe's cuisine. | POST | {'name': 'Classify Cuisine', 'url': 'https://spoonacular-recipe-food-nutrition-v1.p.rapidapi.com/recipes/cuisine', 'description': "Classify the recipe's cuisine.", 'method': 'POST', 'required_parameters': [{'name': 'ingredientList', 'type': 'STRING', 'description': 'The ingredient list of the recipe, one ingredient per line.', 'default': '3 oz pork shoulder'}, {'name': 'title', 'type': 'STRING', 'description': 'The title of the recipe.', 'default': 'Pork roast with green beans'}], 'optional_parameters': [], 'code': 'import requests\n\nurl = "https://spoonacular-recipe-food-nutrition-v1.p.rapidapi.com/recipes/cuisine"\nquerystring = {"ingredientList": "3 oz pork shoulder", "title": "Pork roast with green beans"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "spoonacular-recipe-food-nutrition-v1.p.rapidapi.com"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://spoonacular-recipe-food-nutrition-v1.p.rapidapi.com/recipes/cuisine"\nquerystring = {"ingredientList": "3 oz pork shoulder", "title": "Pork roast with green beans"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "spoonacular-recipe-food-nutrition-v1.p.rapidapi.com"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n', 'test_endpoint': '...', 'statuscode': 1, 'schema': ''} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 97 | Food | Recipe - Food - Nutrition | The spoonacular Nutrition, Recipe, and Food API allows you to access over 365,000 recipes and 86,000 food products. Our food ontology and semantic recipe search engine makes it possible to search for recipes using natural language queries, such as "gluten free brownies without sugar" or "low fat vegan cupcakes." You can automatically calculate the nutritional information for any recipe, analyze recipe costs, visualize ingredient lists, find recipes for what's in your fridge, find recipes based on special diets, nutritional requirements, or favorite ingredients, classify recipes into types and cuisines, convert ingredient amounts, or even compute an entire meal plan. With our powerful API, you can create many kinds of food and especially nutrition apps. Special diets/dietary requirements currently available include: vegan, vegetarian, pescetarian, gluten free, grain free, dairy free, high protein, low sodium, low carb, Paleo, Primal, ketogenic, FODMAP, and Whole 30. We will soon be adding Weight Watcher points, too. | Image Classification (File) | Classify a food image. | POST | {'name': 'Image Classification (File)', 'url': 'https://spoonacular-recipe-food-nutrition-v1.p.rapidapi.com/food/images/classify', 'description': 'Classify a food image.', 'method': 'POST', 'required_parameters': [{'name': 'file', 'type': 'BINARY', 'description': '', 'default': ''}], 'optional_parameters': [], 'code': 'import requests\n\nurl = "https://spoonacular-recipe-food-nutrition-v1.p.rapidapi.com/food/images/classify"\nquerystring = {"file": ""}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "spoonacular-recipe-food-nutrition-v1.p.rapidapi.com"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://spoonacular-recipe-food-nutrition-v1.p.rapidapi.com/food/images/classify"\nquerystring = {"file": ""}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "spoonacular-recipe-food-nutrition-v1.p.rapidapi.com"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n', 'test_endpoint': '...'} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 98 | Travel | Booking com | 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 | Search cars locations | Search cars locations by name | GET | {'name': 'Search cars locations', 'url': 'https://booking-com.p.rapidapi.com/v1/car-rental/locations', 'description': 'Search cars locations by name', 'method': 'GET', 'required_parameters': [{'name': 'locale', 'type': 'STRING', 'description': '', 'default': 'en-gb'}, {'name': 'name', 'type': 'STRING', 'description': 'Name', 'default': 'Berlin'}], 'optional_parameters': [], 'code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/car-rental/locations"\nquerystring = {"locale": "en-gb", "name": "Berlin"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/car-rental/locations"\nquerystring = {"locale": "en-gb", "name": "Berlin"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'test_endpoint': "{'message': 'You are not subscribed to this API.'}...", 'statuscode': 1, 'schema': ''} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 99 | Travel | Booking com | 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 | Search car rental | Search car rental. Browse our inventory of hundreds of cheap car rentals. Get the best rental car deals on your next trip | GET | {'name': 'Search car rental', 'url': 'https://booking-com.p.rapidapi.com/v1/car-rental/search', 'description': 'Search car rental. Browse our inventory of hundreds of cheap car rentals. Get the best rental car deals on your next trip', 'method': 'GET', 'required_parameters': [{'name': 'currency', 'type': 'STRING', 'description': '', 'default': 'AED'}, {'name': 'drop_off_latitude', 'type': 'NUMBER', 'description': 'Drop off latitude', 'default': 50.08773}, {'name': 'sort_by', 'type': 'STRING', 'description': '', 'default': 'recommended'}, {'name': 'drop_off_datetime', 'type': 'STRING', 'description': 'Drop off datetime', 'default': '2023-06-30 16:00:00'}, {'name': 'from_country', 'type': 'STRING', 'description': '', 'default': 'it'}, {'name': 'pick_up_latitude', 'type': 'NUMBER', 'description': 'Pick up latitude', 'default': 50.08773}, {'name': 'locale', 'type': 'STRING', 'description': '', 'default': 'en-gb'}, {'name': 'pick_up_datetime', 'type': 'STRING', 'description': 'Pick up datetime', 'default': '2023-06-29 16:00:00'}, {'name': 'drop_off_longitude', 'type': 'NUMBER', 'description': 'Drop off longitude', 'default': 14.421133}, {'name': 'pick_up_longitude', 'type': 'NUMBER', 'description': 'Pick up longitude', 'default': 14.421133}], 'optional_parameters': [], 'code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/car-rental/search"\nquerystring = {"currency": "AED", "drop_off_latitude": 50.08773, "sort_by": "recommended", "drop_off_datetime": "2023-06-30 16:00:00", "from_country": "it", "pick_up_latitude": 50.08773, "locale": "en-gb", "pick_up_datetime": "2023-06-29 16:00:00", "drop_off_longitude": 14.421133, "pick_up_longitude": 14.421133}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/car-rental/search"\nquerystring = {"currency": "AED", "drop_off_latitude": 50.08773, "sort_by": "recommended", "drop_off_datetime": "2023-06-30 16:00:00", "from_country": "it", "pick_up_latitude": 50.08773, "locale": "en-gb", "pick_up_datetime": "2023-06-29 16:00:00", "drop_off_longitude": 14.421133, "pick_up_longitude": 14.421133}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'test_endpoint': '...', 'statuscode': 200, 'schema': {}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 100 | Travel | Booking com | 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 | Vehicle supplier details | Vehicle supplier details by vehicle_id | GET | {'name': 'Vehicle supplier details', 'url': 'https://booking-com.p.rapidapi.com/v1/car-rental/supplier/details', 'description': 'Vehicle supplier details by vehicle_id', 'method': 'GET', 'required_parameters': [{'name': 'from_country', 'type': 'STRING', 'description': '', 'default': 'it'}, {'name': 'locale', 'type': 'STRING', 'description': '', 'default': 'en-gb'}, {'name': 'vehicle_id', 'type': 'NUMBER', 'description': 'Vehicle id', 'default': 699544941}], 'optional_parameters': [], 'code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/car-rental/supplier/details"\nquerystring = {"from_country": "it", "locale": "en-gb", "vehicle_id": 699544941}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/car-rental/supplier/details"\nquerystring = {"from_country": "it", "locale": "en-gb", "vehicle_id": 699544941}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'test_endpoint': '...', 'statuscode': 200, 'schema': {}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 101 | Travel | Booking com | 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 | Important information | Important information of vehicles | GET | {'name': 'Important information', 'url': 'https://booking-com.p.rapidapi.com/v1/car-rental/important-info', 'description': 'Important information of vehicles', 'method': 'GET', 'required_parameters': [{'name': 'locale', 'type': 'STRING', 'description': '', 'default': 'en-gb'}, {'name': 'pick_up_location_id', 'type': 'NUMBER', 'description': 'Pick up location id', 'default': 4123205}, {'name': 'drop_off_location_id', 'type': 'NUMBER', 'description': 'Drop off location id', 'default': 4123205}, {'name': 'drop_off_datetime', 'type': 'STRING', 'description': 'Drop off datetime', 'default': '2023-09-28 16:00:00'}, {'name': 'from_country', 'type': 'STRING', 'description': '', 'default': 'it'}, {'name': 'pick_up_datetime', 'type': 'STRING', 'description': 'Pick up datetime', 'default': '2023-09-27 16:00:00'}, {'name': 'driver_age', 'type': 'NUMBER', 'description': 'Driver age', 'default': 30}, {'name': 'vehicle_id', 'type': 'NUMBER', 'description': 'Vehicle id', 'default': 663317713}], 'optional_parameters': [], 'code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/car-rental/important-info"\nquerystring = {"locale": "en-gb", "pick_up_location_id": 4123205, "drop_off_location_id": 4123205, "drop_off_datetime": "2023-09-28 16:00:00", "from_country": "it", "pick_up_datetime": "2023-09-27 16:00:00", "driver_age": 30, "vehicle_id": 663317713}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/car-rental/important-info"\nquerystring = {"locale": "en-gb", "pick_up_location_id": 4123205, "drop_off_location_id": 4123205, "drop_off_datetime": "2023-09-28 16:00:00", "from_country": "it", "pick_up_datetime": "2023-09-27 16:00:00", "driver_age": 30, "vehicle_id": 663317713}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'test_endpoint': '...', 'statuscode': 200, 'schema': {}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 102 | Travel | Booking com | 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 | Exchange rates | Get currency exchange rates | GET | {'name': 'Exchange rates', 'url': 'https://booking-com.p.rapidapi.com/v1/metadata/exchange-rates', 'description': 'Get currency exchange rates', 'method': 'GET', 'required_parameters': [{'name': 'currency', 'type': 'STRING', 'description': '', 'default': 'AED'}, {'name': 'locale', 'type': 'STRING', 'description': '', 'default': 'en-gb'}], 'optional_parameters': [], 'code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/metadata/exchange-rates"\nquerystring = {"currency": "AED", "locale": "en-gb"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/metadata/exchange-rates"\nquerystring = {"currency": "AED", "locale": "en-gb"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'test_endpoint': '...', 'statuscode': 200, 'schema': {}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 103 | Travel | Booking com | 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 | Car rental details | Car rental details by vehicle_id. First, call `Search car rental` | GET | {'name': 'Car rental details', 'url': 'https://booking-com.p.rapidapi.com/v1/car-rental/detail', 'description': 'Car rental details by vehicle_id. First, call `Search car rental`', 'method': 'GET', 'required_parameters': [{'name': 'vehicle_id', 'type': 'NUMBER', 'description': 'Vehicle id', 'default': 699544941}, {'name': 'currency', 'type': 'STRING', 'description': '', 'default': 'AED'}, {'name': 'from_country', 'type': 'STRING', 'description': '', 'default': 'it'}, {'name': 'locale', 'type': 'STRING', 'description': '', 'default': 'en-gb'}, {'name': 'search_key', 'type': 'STRING', 'description': 'Search key', 'default': 'eyJkcml2ZXJzQWdlIjozNSwiZHJvcE9mZkRhdGVUaW1lIjoiMjAyMS0xMS0xMlQxMDowMDowMCIsImRyb3BPZmZMb2NhdGlvbiI6IjU1Ljc1MjIwMSwzNy42MTU2MDEiLCJkcm9wT2ZmTG9jYXRpb25UeXBlIjoiTEFUTE9ORyIsInBpY2tVcERhdGVUaW1lIjoiMjAyMS0xMS0wOVQxMDowMDowMCIsInBpY2tVcExvY2F0aW9uIjoiNTUuNzUyMjAxLDM3LjYxNTYwMSIsInBpY2tVcExvY2F0aW9uVHlwZSI6IkxBVExPTkciLCJyZW50YWxEdXJhdGlvbkluRGF5cyI6Mywic2VydmljZUZlYXR1cmVzIjpbIk5PX09QQVFVRVMiLCJTVVBSRVNTX0ZJWEVEX1BSSUNFX1ZFSElDTEVTIl19'}], 'optional_parameters': [], 'code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/car-rental/detail"\nquerystring = {"vehicle_id": 699544941, "currency": "AED", "from_country": "it", "locale": "en-gb", "search_key": "eyJkcml2ZXJzQWdlIjozNSwiZHJvcE9mZkRhdGVUaW1lIjoiMjAyMS0xMS0xMlQxMDowMDowMCIsImRyb3BPZmZMb2NhdGlvbiI6IjU1Ljc1MjIwMSwzNy42MTU2MDEiLCJkcm9wT2ZmTG9jYXRpb25UeXBlIjoiTEFUTE9ORyIsInBpY2tVcERhdGVUaW1lIjoiMjAyMS0xMS0wOVQxMDowMDowMCIsInBpY2tVcExvY2F0aW9uIjoiNTUuNzUyMjAxLDM3LjYxNTYwMSIsInBpY2tVcExvY2F0aW9uVHlwZSI6IkxBVExPTkciLCJyZW50YWxEdXJhdGlvbkluRGF5cyI6Mywic2VydmljZUZlYXR1cmVzIjpbIk5PX09QQVFVRVMiLCJTVVBSRVNTX0ZJWEVEX1BSSUNFX1ZFSElDTEVTIl19"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/car-rental/detail"\nquerystring = {"vehicle_id": 699544941, "currency": "AED", "from_country": "it", "locale": "en-gb", "search_key": "eyJkcml2ZXJzQWdlIjozNSwiZHJvcE9mZkRhdGVUaW1lIjoiMjAyMS0xMS0xMlQxMDowMDowMCIsImRyb3BPZmZMb2NhdGlvbiI6IjU1Ljc1MjIwMSwzNy42MTU2MDEiLCJkcm9wT2ZmTG9jYXRpb25UeXBlIjoiTEFUTE9ORyIsInBpY2tVcERhdGVUaW1lIjoiMjAyMS0xMS0wOVQxMDowMDowMCIsInBpY2tVcExvY2F0aW9uIjoiNTUuNzUyMjAxLDM3LjYxNTYwMSIsInBpY2tVcExvY2F0aW9uVHlwZSI6IkxBVExPTkciLCJyZW50YWxEdXJhdGlvbkluRGF5cyI6Mywic2VydmljZUZlYXR1cmVzIjpbIk5PX09QQVFVRVMiLCJTVVBSRVNTX0ZJWEVEX1BSSUNFX1ZFSElDTEVTIl19"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'test_endpoint': '...', 'statuscode': 200, 'schema': {}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 104 | Travel | Booking com | 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 | Rental terms | Rental terms and conditions by pick up location_id | GET | {'name': 'Rental terms', 'url': 'https://booking-com.p.rapidapi.com/v1/car-rental/terms-conditions', 'description': 'Rental terms and conditions by pick up location_id', 'method': 'GET', 'required_parameters': [{'name': 'from_country', 'type': 'STRING', 'description': '', 'default': 'it'}, {'name': 'pick_up_location_id', 'type': 'NUMBER', 'description': 'Pick up location id. Use `Vehicle supplier details`', 'default': 4516789}, {'name': 'locale', 'type': 'STRING', 'description': '', 'default': 'en-gb'}], 'optional_parameters': [], 'code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/car-rental/terms-conditions"\nquerystring = {"from_country": "it", "pick_up_location_id": 4516789, "locale": "en-gb"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/car-rental/terms-conditions"\nquerystring = {"from_country": "it", "pick_up_location_id": 4516789, "locale": "en-gb"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'test_endpoint': '...', 'statuscode': 200, 'schema': {}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 105 | Travel | Booking com | 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 | Rental extras | Get additional services when renting | GET | {'name': 'Rental extras', 'url': 'https://booking-com.p.rapidapi.com/v1/car-rental/extras', 'description': 'Get additional services when renting', 'method': 'GET', 'required_parameters': [{'name': 'pick_up_datetime', 'type': 'STRING', 'description': 'Pick up datetime', 'default': '2023-09-27 16:00:00'}, {'name': 'currency', 'type': 'STRING', 'description': '', 'default': 'AED'}, {'name': 'from_country', 'type': 'STRING', 'description': '', 'default': 'it'}, {'name': 'locale', 'type': 'STRING', 'description': '', 'default': 'en-gb'}, {'name': 'price', 'type': 'NUMBER', 'description': 'Price', 'default': 2860.87}, {'name': 'drop_off_datetime', 'type': 'STRING', 'description': 'Drop off datetime', 'default': '2023-09-28 16:00:00'}, {'name': 'driver_age', 'type': 'NUMBER', 'description': 'Driver age', 'default': 30}, {'name': 'vehicle_id', 'type': 'NUMBER', 'description': 'Vehicle id', 'default': 663317713}], 'optional_parameters': [], 'code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/car-rental/extras"\nquerystring = {"pick_up_datetime": "2023-09-27 16:00:00", "currency": "AED", "from_country": "it", "locale": "en-gb", "price": 2860.87, "drop_off_datetime": "2023-09-28 16:00:00", "driver_age": 30, "vehicle_id": 663317713}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/car-rental/extras"\nquerystring = {"pick_up_datetime": "2023-09-27 16:00:00", "currency": "AED", "from_country": "it", "locale": "en-gb", "price": 2860.87, "drop_off_datetime": "2023-09-28 16:00:00", "driver_age": 30, "vehicle_id": 663317713}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'test_endpoint': '...', 'statuscode': 1, 'schema': ''} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 106 | Travel | Booking com | 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 | Reviews metadata of the hotel | Get reviews metadata of the hotel by hotel_id | GET | {'name': 'Reviews metadata of the hotel', 'url': 'https://booking-com.p.rapidapi.com/v1/hotels/reviews-filter-metadata', 'description': 'Get reviews metadata of the hotel by hotel_id', 'method': 'GET', 'required_parameters': [{'name': 'locale', 'type': 'STRING', 'description': '', 'default': 'en-gb'}, {'name': 'hotel_id', 'type': 'NUMBER', 'description': 'Hotel id', 'default': 1676161}], 'optional_parameters': [], 'code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/hotels/reviews-filter-metadata"\nquerystring = {"locale": "en-gb", "hotel_id": 1676161}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/hotels/reviews-filter-metadata"\nquerystring = {"locale": "en-gb", "hotel_id": 1676161}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'test_endpoint': '...', 'statuscode': 1, 'schema': ''} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 107 | Travel | Booking com | 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 | Nearby cities | Get a list of nearby cities by coordinates | GET | {'name': 'Nearby cities', 'url': 'https://booking-com.p.rapidapi.com/v1/hotels/nearby-cities', 'description': 'Get a list of nearby cities by coordinates', 'method': 'GET', 'required_parameters': [{'name': 'latitude', 'type': 'NUMBER', 'description': 'Latitude', 'default': 65.9667}, {'name': 'longitude', 'type': 'NUMBER', 'description': 'Longitude', 'default': -18.5333}, {'name': 'locale', 'type': 'STRING', 'description': '', 'default': 'en-gb'}], 'optional_parameters': [], 'code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/hotels/nearby-cities"\nquerystring = {"latitude": 65.9667, "longitude": -18.5333, "locale": "en-gb"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/hotels/nearby-cities"\nquerystring = {"latitude": 65.9667, "longitude": -18.5333, "locale": "en-gb"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'test_endpoint': '...', 'statuscode': 200, 'schema': {}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 108 | Travel | Booking com | 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 | Questions about the hotel | Get questions and answers of hotel staff by hotel_id | GET | {'name': 'Questions about the hotel', 'url': 'https://booking-com.p.rapidapi.com/v1/hotels/questions', 'description': 'Get questions and answers of hotel staff by hotel_id', 'method': 'GET', 'required_parameters': [{'name': 'hotel_id', 'type': 'NUMBER', 'description': 'Hotel id', 'default': 1676161}, {'name': 'locale', 'type': 'STRING', 'description': '', 'default': 'en-gb'}], 'optional_parameters': [], 'code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/hotels/questions"\nquerystring = {"hotel_id": 1676161, "locale": "en-gb"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/hotels/questions"\nquerystring = {"hotel_id": 1676161, "locale": "en-gb"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'test_endpoint': '...', 'statuscode': 1, 'schema': ''} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 109 | Travel | Booking com | 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 | Hotel on the map | Get nearby landmarks and geo info of the hotel by hotel_id | GET | {'name': 'Hotel on the map', 'url': 'https://booking-com.p.rapidapi.com/v1/hotels/map-markers', 'description': 'Get nearby landmarks and geo info of the hotel by hotel_id', 'method': 'GET', 'required_parameters': [{'name': 'hotel_id', 'type': 'NUMBER', 'description': 'Hotel id', 'default': 1676161}, {'name': 'locale', 'type': 'STRING', 'description': '', 'default': 'en-gb'}], 'optional_parameters': [], 'code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/hotels/map-markers"\nquerystring = {"hotel_id": 1676161, "locale": "en-gb"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/hotels/map-markers"\nquerystring = {"hotel_id": 1676161, "locale": "en-gb"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'test_endpoint': '...', 'statuscode': 200, 'schema': {}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 110 | Travel | Booking com | 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 | Room list of the hotel | Get room list of the hotel by hotel_id. Room prices, photos and full room descriptions | GET | {'name': 'Room list of the hotel', 'url': 'https://booking-com.p.rapidapi.com/v1/hotels/room-list', 'description': 'Get room list of the hotel by hotel_id. Room prices, photos and full room descriptions', 'method': 'GET', 'required_parameters': [{'name': 'hotel_id', 'type': 'NUMBER', 'description': 'Hotel id', 'default': 1676161}, {'name': 'currency', 'type': 'STRING', 'description': '', 'default': 'AED'}, {'name': 'checkout_date', 'type': 'STRING', 'description': 'Checkout date', 'default': '2023-09-28'}, {'name': 'locale', 'type': 'STRING', 'description': '', 'default': 'en-gb'}, {'name': 'checkin_date', 'type': 'STRING', 'description': 'Checkin date', 'default': '2023-09-27'}, {'name': 'adults_number_by_rooms', 'type': 'STRING', 'description': 'The number of adults in each room. Specify the number of adults separated by commas, for example: `3,1` Means that the first room will accommodate three adults, and the second room will accommodate 1 adult. If you are looking for just one room for two adults, please specify `2`', 'default': '3,1'}, {'name': 'units', 'type': 'STRING', 'description': '', 'default': 'metric'}], 'optional_parameters': [{'name': 'children_ages', 'type': 'STRING', 'description': 'The age of every child. If children will be staying in the room, please indicate their ages separated by commas. 0-less than a year', 'default': '5,0,9'}, {'name': 'children_number_by_rooms', 'type': 'STRING', 'description': 'The number of children in each room. Specify the number of children separated by commas, for example: `3,1` Means that the first room will accommodate three children, and the second room will accommodate 1 children', 'default': '2,1'}], 'code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/hotels/room-list"\nquerystring = {"hotel_id": 1676161, "currency": "AED", "checkout_date": "2023-09-28", "locale": "en-gb", "children_ages": "5,0,9", "checkin_date": "2023-09-27", "children_number_by_rooms": "2,1", "adults_number_by_rooms": "3,1", "units": "metric"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/hotels/room-list"\nquerystring = {"hotel_id": 1676161, "currency": "AED", "checkout_date": "2023-09-28", "locale": "en-gb", "children_ages": "5,0,9", "checkin_date": "2023-09-27", "children_number_by_rooms": "2,1", "adults_number_by_rooms": "3,1", "units": "metric"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'test_endpoint': '...', 'statuscode': 200, 'schema': {}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 111 | Travel | Booking com | 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 | Reviews about the supplier of vehicles | Reviews about the supplier of vehicles by location_id | GET | {'name': 'Reviews about the supplier of vehicles ', 'url': 'https://booking-com.p.rapidapi.com/v1/car-rental/supplier/reviews', 'description': 'Reviews about the supplier of vehicles by location_id', 'method': 'GET', 'required_parameters': [{'name': 'locale', 'type': 'STRING', 'description': '', 'default': 'en-gb'}, {'name': 'location_id', 'type': 'NUMBER', 'description': 'Location id', 'default': 4123205}, {'name': 'from_country', 'type': 'STRING', 'description': '', 'default': 'it'}], 'optional_parameters': [], 'code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/car-rental/supplier/reviews"\nquerystring = {"locale": "en-gb", "location_id": 4123205, "from_country": "it"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/car-rental/supplier/reviews"\nquerystring = {"locale": "en-gb", "location_id": 4123205, "from_country": "it"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'test_endpoint': '...', 'statuscode': 200, 'schema': {}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 112 | Travel | Booking com | 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 | Location highlights of the hotel | Get location highlights of the hotel by hotel_id. Ex.: metro, rail | GET | {'name': 'Location highlights of the hotel', 'url': 'https://booking-com.p.rapidapi.com/v1/hotels/location-highlights', 'description': 'Get location highlights of the hotel by hotel_id. Ex.: metro, rail', 'method': 'GET', 'required_parameters': [{'name': 'hotel_id', 'type': 'NUMBER', 'description': 'Hotel id', 'default': 1377073}, {'name': 'locale', 'type': 'STRING', 'description': '', 'default': 'en-gb'}], 'optional_parameters': [], 'code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/hotels/location-highlights"\nquerystring = {"hotel_id": 1377073, "locale": "en-gb"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/hotels/location-highlights"\nquerystring = {"hotel_id": 1377073, "locale": "en-gb"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'test_endpoint': '...', 'statuscode': 200, 'schema': {}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 113 | Travel | Booking com | 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 | Description of the hotel | Get description of the hotel by hotel_id | GET | {'name': 'Description of the hotel', 'url': 'https://booking-com.p.rapidapi.com/v1/hotels/description', 'description': 'Get description of the hotel by hotel_id', 'method': 'GET', 'required_parameters': [{'name': 'hotel_id', 'type': 'NUMBER', 'description': 'Hotel id', 'default': 1377073}, {'name': 'locale', 'type': 'STRING', 'description': '', 'default': 'en-gb'}], 'optional_parameters': [], 'code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/hotels/description"\nquerystring = {"hotel_id": 1377073, "locale": "en-gb"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/hotels/description"\nquerystring = {"hotel_id": 1377073, "locale": "en-gb"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'test_endpoint': '...', 'statuscode': 1, 'schema': ''} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 114 | Travel | Booking com | 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 | Review scores of the hotel | Get review scores of the hotel by hotel_id | GET | {'name': 'Review scores of the hotel', 'url': 'https://booking-com.p.rapidapi.com/v1/hotels/review-scores', 'description': 'Get review scores of the hotel by hotel_id', 'method': 'GET', 'required_parameters': [{'name': 'hotel_id', 'type': 'NUMBER', 'description': 'Hotel id', 'default': 1377073}, {'name': 'locale', 'type': 'STRING', 'description': '', 'default': 'en-gb'}], 'optional_parameters': [], 'code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/hotels/review-scores"\nquerystring = {"hotel_id": 1377073, "locale": "en-gb"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/hotels/review-scores"\nquerystring = {"hotel_id": 1377073, "locale": "en-gb"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'test_endpoint': '...', 'statuscode': 1, 'schema': ''} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 115 | Travel | Booking com | 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 | Hotel children policy | Get hotel children policy by hotel_id | GET | {'name': 'Hotel children policy', 'url': 'https://booking-com.p.rapidapi.com/v1/hotels/children-policies', 'description': 'Get hotel children policy by hotel_id', 'method': 'GET', 'required_parameters': [{'name': 'locale', 'type': 'STRING', 'description': '', 'default': 'en-gb'}, {'name': 'hotel_id', 'type': 'NUMBER', 'description': 'Hotel id', 'default': 1676161}], 'optional_parameters': [{'name': 'children_age', 'type': 'NUMBER', 'description': 'Children age', 'default': 5}], 'code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/hotels/children-policies"\nquerystring = {"locale": "en-gb", "hotel_id": 1676161, "children_age": 5}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/hotels/children-policies"\nquerystring = {"locale": "en-gb", "hotel_id": 1676161, "children_age": 5}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'test_endpoint': '...', 'statuscode': 200, 'schema': {}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 116 | Travel | Booking com | 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 | Search hotels by coordinates | Get available hotels by coordinates latitude and longitude | GET | {'name': 'Search hotels by coordinates', 'url': 'https://booking-com.p.rapidapi.com/v1/hotels/search-by-coordinates', 'description': 'Get available hotels by coordinates latitude and longitude', 'method': 'GET', 'required_parameters': [{'name': 'units', 'type': 'STRING', 'description': '', 'default': 'metric'}, {'name': 'room_number', 'type': 'NUMBER', 'description': 'Number of rooms', 'default': '1'}, {'name': 'longitude', 'type': 'NUMBER', 'description': 'Longitude', 'default': -18.5333}, {'name': 'latitude', 'type': 'NUMBER', 'description': 'Latitude', 'default': 65.9667}, {'name': 'filter_by_currency', 'type': 'STRING', 'description': '', 'default': 'AED'}, {'name': 'order_by', 'type': 'STRING', 'description': '', 'default': 'popularity'}, {'name': 'locale', 'type': 'STRING', 'description': '', 'default': 'en-gb'}, {'name': 'checkout_date', 'type': 'STRING', 'description': 'Checkout date', 'default': '2023-09-28'}, {'name': 'adults_number', 'type': 'NUMBER', 'description': 'Number of adults', 'default': '2'}, {'name': 'checkin_date', 'type': 'STRING', 'description': 'Checkin date', 'default': '2023-09-27'}], 'optional_parameters': [{'name': 'children_ages', 'type': 'STRING', 'description': 'The age of every child. If children will be staying in the room, please indicate their ages separated by commas. 0-less than a year', 'default': '5,0'}, {'name': 'include_adjacency', 'type': 'BOOLEAN', 'description': 'Include nearby places. If there are few hotels in the selected location, nearby locations will be added. You should pay attention to the `primary_count` parameter - it is the number of hotels from the beginning of the array that matches the strict filter.', 'default': True}, {'name': 'children_number', 'type': 'NUMBER', 'description': 'Number of children', 'default': '2'}, {'name': 'page_number', 'type': 'NUMBER', 'description': 'Page number', 'default': '0'}, {'name': 'categories_filter_ids', 'type': 'STRING', 'description': 'Search filter IDs. For possible filters use `@Filters for search`', 'default': 'class::2,class::4,free_cancellation::1'}], 'code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/hotels/search-by-coordinates"\nquerystring = {"children_ages": "5,0", "units": "metric", "room_number": "1", "longitude": -18.5333, "latitude": 65.9667, "filter_by_currency": "AED", "order_by": "popularity", "locale": "en-gb", "include_adjacency": true, "checkout_date": "2023-09-28", "adults_number": "2", "children_number": "2", "checkin_date": "2023-09-27", "page_number": "0", "categories_filter_ids": "class::2,class::4,free_cancellation::1"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/hotels/search-by-coordinates"\nquerystring = {"children_ages": "5,0", "units": "metric", "room_number": "1", "longitude": -18.5333, "latitude": 65.9667, "filter_by_currency": "AED", "order_by": "popularity", "locale": "en-gb", "include_adjacency": true, "checkout_date": "2023-09-28", "adults_number": "2", "children_number": "2", "checkin_date": "2023-09-27", "page_number": "0", "categories_filter_ids": "class::2,class::4,free_cancellation::1"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'test_endpoint': '...', 'statuscode': 200, 'schema': {}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 117 | Travel | Booking com | 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 | Policies of the hotel | Get policies of the hotel by hotel_id | GET | {'name': 'Policies of the hotel', 'url': 'https://booking-com.p.rapidapi.com/v1/hotels/policies', 'description': 'Get policies of the hotel by hotel_id', 'method': 'GET', 'required_parameters': [{'name': 'locale', 'type': 'STRING', 'description': '', 'default': 'en-gb'}, {'name': 'hotel_id', 'type': 'NUMBER', 'description': 'Hotel id', 'default': 1676161}], 'optional_parameters': [], 'code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/hotels/policies"\nquerystring = {"locale": "en-gb", "hotel_id": 1676161}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/hotels/policies"\nquerystring = {"locale": "en-gb", "hotel_id": 1676161}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'test_endpoint': '...', 'statuscode': 1, 'schema': ''} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 118 | Travel | Booking com | 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 | Payment features of the hotel | Get payment features of the hotel by hotel_id | GET | {'name': 'Payment features of the hotel', 'url': 'https://booking-com.p.rapidapi.com/v1/hotels/payment-features', 'description': 'Get payment features of the hotel by hotel_id', 'method': 'GET', 'required_parameters': [{'name': 'hotel_id', 'type': 'NUMBER', 'description': 'Hotel id', 'default': 1676161}, {'name': 'locale', 'type': 'STRING', 'description': '', 'default': 'en-gb'}], 'optional_parameters': [], 'code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/hotels/payment-features"\nquerystring = {"hotel_id": 1676161, "locale": "en-gb"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/hotels/payment-features"\nquerystring = {"hotel_id": 1676161, "locale": "en-gb"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'test_endpoint': '...', 'statuscode': 200, 'schema': {}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 119 | Travel | Booking com | 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 | Reviews of the hotel | Get reviews of the hotel by hotel_id | GET | {'name': 'Reviews of the hotel', 'url': 'https://booking-com.p.rapidapi.com/v1/hotels/reviews', 'description': 'Get reviews of the hotel by hotel_id', 'method': 'GET', 'required_parameters': [{'name': 'sort_type', 'type': 'STRING', 'description': '', 'default': 'SORT_MOST_RELEVANT'}, {'name': 'hotel_id', 'type': 'NUMBER', 'description': 'Hotel id', 'default': 1676161}, {'name': 'locale', 'type': 'STRING', 'description': '', 'default': 'en-gb'}], 'optional_parameters': [{'name': 'page_number', 'type': 'NUMBER', 'description': 'Page number', 'default': 0}, {'name': 'language_filter', 'type': 'STRING', 'description': 'Filter reviews by language', 'default': 'en-gb,de,fr'}, {'name': 'customer_type', 'type': 'STRING', 'description': 'Customer types', 'default': 'solo_traveller,review_category_group_of_friends'}], 'code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/hotels/reviews"\nquerystring = {"sort_type": "SORT_MOST_RELEVANT", "hotel_id": 1676161, "locale": "en-gb", "page_number": 0, "language_filter": "en-gb,de,fr", "customer_type": "solo_traveller,review_category_group_of_friends"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/hotels/reviews"\nquerystring = {"sort_type": "SORT_MOST_RELEVANT", "hotel_id": 1676161, "locale": "en-gb", "page_number": 0, "language_filter": "en-gb,de,fr", "customer_type": "solo_traveller,review_category_group_of_friends"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'test_endpoint': '...', 'statuscode': 1, 'schema': ''} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 120 | Travel | Booking com | 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 | Search hotels | Get available hotels by the filter. Indicate the `destination_id` and `dest_type` -> use **@Search locations** endpoint, check-in and check-out date, number of adults and children. For possible filters use **@Filters for search** endpoint. Use `page_number` to paginate and navigate through the result pages! <br/> Comparable to:  | GET | {'name': 'Search hotels', 'url': 'https://booking-com.p.rapidapi.com/v1/hotels/search', 'description': 'Get available hotels by the filter. Indicate the `destination_id` and `dest_type` -> use **@Search locations** endpoint, check-in and check-out date, number of adults and children. For possible filters use **@Filters for search** endpoint. Use `page_number` to paginate and navigate through the result pages! <br/> Comparable to: ', 'method': 'GET', 'required_parameters': [{'name': 'checkin_date', 'type': 'STRING', 'description': 'Checkin date', 'default': '2023-09-27'}, {'name': 'dest_type', 'type': 'STRING', 'description': '', 'default': 'city'}, {'name': 'units', 'type': 'STRING', 'description': '', 'default': 'metric'}, {'name': 'checkout_date', 'type': 'STRING', 'description': 'Checkout date', 'default': '2023-09-28'}, {'name': 'adults_number', 'type': 'NUMBER', 'description': 'Number of adults', 'default': '2'}, {'name': 'order_by', 'type': 'STRING', 'description': '', 'default': 'popularity'}, {'name': 'dest_id', 'type': 'NUMBER', 'description': 'Destination id, use `Search locations` to find a place, field `dest_id` and `dest_type`', 'default': -553173}, {'name': 'filter_by_currency', 'type': 'STRING', 'description': '', 'default': 'AED'}, {'name': 'locale', 'type': 'STRING', 'description': '', 'default': 'en-gb'}, {'name': 'room_number', 'type': 'NUMBER', 'description': 'Number of rooms', 'default': '1'}], 'optional_parameters': [{'name': 'children_number', 'type': 'NUMBER', 'description': 'Number of children', 'default': '2'}, {'name': 'children_ages', 'type': 'STRING', 'description': 'The age of every child. If children will be staying in the room, please indicate their ages separated by commas. 0-less than a year', 'default': '5,0'}, {'name': 'categories_filter_ids', 'type': 'STRING', 'description': 'Search filter IDs. For possible filters use `@Filters for search`', 'default': 'class::2,class::4,free_cancellation::1'}, {'name': 'page_number', 'type': 'NUMBER', 'description': 'Page number', 'default': '0'}, {'name': 'include_adjacency', 'type': 'BOOLEAN', 'description': 'Include nearby places. If there are few hotels in the selected location, nearby locations will be added. You should pay attention to the `primary_count` parameter - it is the number of hotels from the beginning of the array that matches the strict filter.', 'default': True}], 'code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/hotels/search"\nquerystring = {"checkin_date": "2023-09-27", "dest_type": "city", "children_number": "2", "units": "metric", "checkout_date": "2023-09-28", "children_ages": "5,0", "adults_number": "2", "categories_filter_ids": "class::2,class::4,free_cancellation::1", "order_by": "popularity", "dest_id": -553173, "filter_by_currency": "AED", "locale": "en-gb", "room_number": "1", "page_number": "0", "include_adjacency": true}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/hotels/search"\nquerystring = {"checkin_date": "2023-09-27", "dest_type": "city", "children_number": "2", "units": "metric", "checkout_date": "2023-09-28", "children_ages": "5,0", "adults_number": "2", "categories_filter_ids": "class::2,class::4,free_cancellation::1", "order_by": "popularity", "dest_id": -553173, "filter_by_currency": "AED", "locale": "en-gb", "room_number": "1", "page_number": "0", "include_adjacency": true}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'test_endpoint': '...', 'statuscode': 200, 'schema': {}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 121 | Travel | Booking com | 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 | Tips of the hotel | Get guest tips of the hotel by hotel_id | GET | {'name': 'Tips of the hotel', 'url': 'https://booking-com.p.rapidapi.com/v1/hotels/tips', 'description': 'Get guest tips of the hotel by hotel_id', 'method': 'GET', 'required_parameters': [{'name': 'hotel_id', 'type': 'NUMBER', 'description': 'Hotel id', 'default': 1676161}, {'name': 'sort_type', 'type': 'STRING', 'description': '', 'default': 'SORT_MOST_RELEVANT'}, {'name': 'locale', 'type': 'STRING', 'description': '', 'default': 'en-gb'}], 'optional_parameters': [{'name': 'language_filter', 'type': 'STRING', 'description': 'Filter reviews by language', 'default': 'en-gb,de,fr'}, {'name': 'page_number', 'type': 'NUMBER', 'description': 'Page number', 'default': 0}, {'name': 'customer_type', 'type': 'STRING', 'description': 'Customer types', 'default': 'solo_traveller,review_category_group_of_friends'}], 'code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/hotels/tips"\nquerystring = {"hotel_id": 1676161, "sort_type": "SORT_MOST_RELEVANT", "language_filter": "en-gb,de,fr", "locale": "en-gb", "page_number": 0, "customer_type": "solo_traveller,review_category_group_of_friends"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/hotels/tips"\nquerystring = {"hotel_id": 1676161, "sort_type": "SORT_MOST_RELEVANT", "language_filter": "en-gb,de,fr", "locale": "en-gb", "page_number": 0, "customer_type": "solo_traveller,review_category_group_of_friends"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'test_endpoint': '...', 'statuscode': 200, 'schema': {}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 122 | Travel | Booking com | 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 | Facilities of the hotel | Get facilities of the hotel by hotel_id. Ex.: `Restaurant`, `Room service`, `Breakfast in the room` | GET | {'name': 'Facilities of the hotel', 'url': 'https://booking-com.p.rapidapi.com/v1/hotels/facilities', 'description': 'Get facilities of the hotel by hotel_id. Ex.: `Restaurant`, `Room service`, `Breakfast in the room`', 'method': 'GET', 'required_parameters': [{'name': 'hotel_id', 'type': 'NUMBER', 'description': 'Hotel id', 'default': 1676161}, {'name': 'locale', 'type': 'STRING', 'description': '', 'default': 'en-gb'}], 'optional_parameters': [], 'code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/hotels/facilities"\nquerystring = {"hotel_id": 1676161, "locale": "en-gb"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/hotels/facilities"\nquerystring = {"hotel_id": 1676161, "locale": "en-gb"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'test_endpoint': '...', 'statuscode': 200, 'schema': {}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 123 | Travel | Booking com | 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 | Search locations | Search locations or hotels by name. Comparable to:  | GET | {'name': 'Search locations', 'url': 'https://booking-com.p.rapidapi.com/v1/hotels/locations', 'description': 'Search locations or hotels by name. Comparable to: ', 'method': 'GET', 'required_parameters': [{'name': 'name', 'type': 'STRING', 'description': 'Name', 'default': 'Berlin'}, {'name': 'locale', 'type': 'STRING', 'description': '', 'default': 'en-gb'}], 'optional_parameters': [], 'code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/hotels/locations"\nquerystring = {"name": "Berlin", "locale": "en-gb"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/hotels/locations"\nquerystring = {"name": "Berlin", "locale": "en-gb"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'test_endpoint': '...', 'statuscode': 200, 'schema': {}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 124 | Travel | Booking com | 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 | Nearby places of the hotel | Get nearby places of the hotel by hotel_id. Ex.: nearby `Airport`, `Shopping Centre` | GET | {'name': 'Nearby places of the hotel', 'url': 'https://booking-com.p.rapidapi.com/v1/hotels/nearby-places', 'description': 'Get nearby places of the hotel by hotel_id. Ex.: nearby `Airport`, `Shopping Centre`', 'method': 'GET', 'required_parameters': [{'name': 'hotel_id', 'type': 'NUMBER', 'description': 'Hotel id', 'default': 1676161}, {'name': 'locale', 'type': 'STRING', 'description': '', 'default': 'en-gb'}], 'optional_parameters': [], 'code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/hotels/nearby-places"\nquerystring = {"hotel_id": 1676161, "locale": "en-gb"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/hotels/nearby-places"\nquerystring = {"hotel_id": 1676161, "locale": "en-gb"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'test_endpoint': '...', 'statuscode': 1, 'schema': ''} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 125 | Travel | Booking com | 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 | Photos of the hotel | Get all photos of the hotel by hotel_id | GET | {'name': 'Photos of the hotel', 'url': 'https://booking-com.p.rapidapi.com/v1/hotels/photos', 'description': 'Get all photos of the hotel by hotel_id', 'method': 'GET', 'required_parameters': [{'name': 'hotel_id', 'type': 'NUMBER', 'description': 'Hotel id', 'default': 1377073}, {'name': 'locale', 'type': 'STRING', 'description': '', 'default': 'en-gb'}], 'optional_parameters': [], 'code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/hotels/photos"\nquerystring = {"hotel_id": 1377073, "locale": "en-gb"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/hotels/photos"\nquerystring = {"hotel_id": 1377073, "locale": "en-gb"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'test_endpoint': '...', 'statuscode': 200, 'schema': {}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 126 | Travel | Booking com | 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 | Filters for search | Get a list of available filters for hotel search | GET | {'name': 'Filters for search', 'url': 'https://booking-com.p.rapidapi.com/v1/hotels/search-filters', 'description': 'Get a list of available filters for hotel search', 'method': 'GET', 'required_parameters': [{'name': 'locale', 'type': 'STRING', 'description': '', 'default': 'en-gb'}, {'name': 'dest_id', 'type': 'NUMBER', 'description': 'Destination id, use `Search locations` to find a place, field `dest_id` and `dest_type`', 'default': -553173}, {'name': 'checkin_date', 'type': 'STRING', 'description': 'Checkin date', 'default': '2023-09-27'}, {'name': 'filter_by_currency', 'type': 'STRING', 'description': '', 'default': 'AED'}, {'name': 'checkout_date', 'type': 'STRING', 'description': 'Checkout date', 'default': '2023-09-28'}, {'name': 'dest_type', 'type': 'STRING', 'description': '', 'default': 'city'}, {'name': 'units', 'type': 'STRING', 'description': '', 'default': 'metric'}, {'name': 'order_by', 'type': 'STRING', 'description': '', 'default': 'popularity'}, {'name': 'adults_number', 'type': 'NUMBER', 'description': 'Number of adults', 'default': '2'}, {'name': 'room_number', 'type': 'NUMBER', 'description': 'Number of rooms', 'default': '1'}], 'optional_parameters': [{'name': 'page_number', 'type': 'NUMBER', 'description': 'Page number', 'default': '0'}, {'name': 'children_number', 'type': 'NUMBER', 'description': 'Number of children', 'default': '2'}, {'name': 'include_adjacency', 'type': 'BOOLEAN', 'description': 'Include nearby places. If there are few hotels in the selected location, nearby locations will be added. You should pay attention to the `primary_count` parameter - it is the number of hotels from the beginning of the array that matches the strict filter.', 'default': True}, {'name': 'categories_filter_ids', 'type': 'STRING', 'description': 'Search filter IDs. For possible filters use `@Filters for search`', 'default': 'class::2,class::4,free_cancellation::1'}, {'name': 'children_ages', 'type': 'STRING', 'description': 'The age of every child. If children will be staying in the room, please indicate their ages separated by commas. 0-less than a year', 'default': '5,0'}], 'code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/hotels/search-filters"\nquerystring = {"locale": "en-gb", "page_number": "0", "dest_id": -553173, "checkin_date": "2023-09-27", "children_number": "2", "include_adjacency": true, "filter_by_currency": "AED", "checkout_date": "2023-09-28", "dest_type": "city", "units": "metric", "order_by": "popularity", "adults_number": "2", "categories_filter_ids": "class::2,class::4,free_cancellation::1", "children_ages": "5,0", "room_number": "1"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/hotels/search-filters"\nquerystring = {"locale": "en-gb", "page_number": "0", "dest_id": -553173, "checkin_date": "2023-09-27", "children_number": "2", "include_adjacency": true, "filter_by_currency": "AED", "checkout_date": "2023-09-28", "dest_type": "city", "units": "metric", "order_by": "popularity", "adults_number": "2", "categories_filter_ids": "class::2,class::4,free_cancellation::1", "children_ages": "5,0", "room_number": "1"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'test_endpoint': '...', 'statuscode': 200, 'schema': {}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 127 | Travel | Booking com | 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 | List of Districts | Returns all the districts where Booking offers hotels. | GET | {'name': 'List of Districts', 'url': 'https://booking-com.p.rapidapi.com/v1/static/districts', 'description': 'Returns all the districts where Booking offers hotels.', 'method': 'GET', 'required_parameters': [], 'optional_parameters': [{'name': 'name', 'type': 'STRING', 'description': 'District name', 'default': ''}, {'name': 'country', 'type': 'STRING', 'description': 'Country ID', 'default': ''}, {'name': 'city_id', 'type': 'STRING', 'description': 'City ID', 'default': ''}, {'name': 'district_id', 'type': 'STRING', 'description': 'District ID', 'default': ''}, {'name': 'page', 'type': 'NUMBER', 'description': 'Page number', 'default': '0'}], 'code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/static/districts"\nquerystring = {"name": "", "country": "", "city_id": "", "district_id": "", "page": "0"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/static/districts"\nquerystring = {"name": "", "country": "", "city_id": "", "district_id": "", "page": "0"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'test_endpoint': '...', 'statuscode': 200, 'schema': {}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 128 | Travel | Booking com | 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 | Hotel data | Get hotel data by hotel_id | GET | {'name': 'Hotel data', 'url': 'https://booking-com.p.rapidapi.com/v1/hotels/data', 'description': 'Get hotel data by hotel_id', 'method': 'GET', 'required_parameters': [{'name': 'hotel_id', 'type': 'NUMBER', 'description': 'Hotel id', 'default': 1377073}, {'name': 'locale', 'type': 'STRING', 'description': '', 'default': 'en-gb'}], 'optional_parameters': [], 'code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/hotels/data"\nquerystring = {"hotel_id": 1377073, "locale": "en-gb"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/hotels/data"\nquerystring = {"hotel_id": 1377073, "locale": "en-gb"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'test_endpoint': '...', 'statuscode': 200, 'schema': {}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 129 | Travel | Booking com | 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 | List of Payment types | Returns a list of payments. Only payments with {bookable} set to 1, can be used in processBooking. For processBooking, we always support Visa, Mastercard and American Express. | GET | {'name': 'List of Payment types', 'url': 'https://booking-com.p.rapidapi.com/v1/static/payment-types', 'description': 'Returns a list of payments. Only payments with {bookable} set to 1, can be used in processBooking. For processBooking, we always support Visa, Mastercard and American Express.', 'method': 'GET', 'required_parameters': [], 'optional_parameters': [{'name': 'payment_id', 'type': 'STRING', 'description': 'Payment ID', 'default': ''}], 'code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/static/payment-types"\nquerystring = {"payment_id": ""}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/static/payment-types"\nquerystring = {"payment_id": ""}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'test_endpoint': '...', 'statuscode': 200, 'schema': {}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 130 | Travel | Booking com | 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 | List of Cities | Returns a list of cities where Booking.com offers hotels. location: Latitude and longitude. timezone: Timezone of the city. | GET | {'name': 'List of Cities', 'url': 'https://booking-com.p.rapidapi.com/v1/static/cities', 'description': 'Returns a list of cities where Booking.com offers hotels. location: Latitude and longitude. timezone: Timezone of the city.', 'method': 'GET', 'required_parameters': [], 'optional_parameters': [{'name': 'page', 'type': 'NUMBER', 'description': 'Page number', 'default': '0'}, {'name': 'city_id', 'type': 'STRING', 'description': 'City ID', 'default': ''}, {'name': 'name', 'type': 'STRING', 'description': 'City name', 'default': ''}, {'name': 'latitude', 'type': 'STRING', 'description': 'Latitude location', 'default': ''}, {'name': 'longitude', 'type': 'STRING', 'description': 'Longitude location', 'default': ''}, {'name': 'country', 'type': 'STRING', 'description': 'Country ID', 'default': 'it'}], 'code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/static/cities"\nquerystring = {"page": "0", "city_id": "", "name": "", "latitude": "", "longitude": "", "country": "it"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/static/cities"\nquerystring = {"page": "0", "city_id": "", "name": "", "latitude": "", "longitude": "", "country": "it"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'test_endpoint': '...', 'statuscode': 200, 'schema': {}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 131 | Travel | Booking com | 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 | List of Hotels | This call returns the hotel and room data. List of hotels | GET | {'name': 'List of Hotels', 'url': 'https://booking-com.p.rapidapi.com/v1/static/hotels', 'description': 'This call returns the hotel and room data. List of hotels', 'method': 'GET', 'required_parameters': [], 'optional_parameters': [{'name': 'page', 'type': 'NUMBER', 'description': 'Page number', 'default': '0'}, {'name': 'city_id', 'type': 'NUMBER', 'description': 'City ID', 'default': ''}, {'name': 'slug', 'type': 'STRING', 'description': 'Website slug. Ex. `ad/plaza` or `it/castello-delle-serre`', 'default': ''}, {'name': 'region_id', 'type': 'NUMBER', 'description': 'Region ID', 'default': ''}, {'name': 'country', 'type': 'STRING', 'description': 'Country ID', 'default': ''}, {'name': 'exact_class', 'type': 'NUMBER', 'description': 'Exact class', 'default': ''}, {'name': 'hotel_id', 'type': 'NUMBER', 'description': 'Hotel ID', 'default': ''}, {'name': 'zip_code', 'type': 'STRING', 'description': 'ZIP Code', 'default': ''}, {'name': 'hotel_type_id', 'type': 'NUMBER', 'description': 'Hotel type ID', 'default': ''}, {'name': 'district_id', 'type': 'NUMBER', 'description': 'District ID', 'default': ''}, {'name': 'name', 'type': 'STRING', 'description': 'Hotel name', 'default': ''}], 'code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/static/hotels"\nquerystring = {"page": "0", "city_id": "", "slug": "", "region_id": "", "country": "", "exact_class": "", "hotel_id": "", "zip_code": "", "hotel_type_id": "", "district_id": "", "name": ""}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/static/hotels"\nquerystring = {"page": "0", "city_id": "", "slug": "", "region_id": "", "country": "", "exact_class": "", "hotel_id": "", "zip_code": "", "hotel_type_id": "", "district_id": "", "name": ""}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'test_endpoint': '...', 'statuscode': 1, 'schema': ''} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 132 | Travel | Booking com | 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 | List of Facility types | Returns facility types names and their translations | GET | {'name': 'List of Facility types', 'url': 'https://booking-com.p.rapidapi.com/v1/static/facility-types', 'description': 'Returns facility types names and their translations', 'method': 'GET', 'required_parameters': [], 'optional_parameters': [{'name': 'facility_id', 'type': 'STRING', 'description': 'Facility ID', 'default': ''}], 'code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/static/facility-types"\nquerystring = {"facility_id": ""}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/static/facility-types"\nquerystring = {"facility_id": ""}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'test_endpoint': '...', 'statuscode': 200, 'schema': {}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 133 | Travel | Booking com | 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 | List of Regions | Returns all the regions where Booking offers hotels. | GET | {'name': 'List of Regions', 'url': 'https://booking-com.p.rapidapi.com/v1/static/regions', 'description': 'Returns all the regions where Booking offers hotels.', 'method': 'GET', 'required_parameters': [], 'optional_parameters': [{'name': 'region_id', 'type': 'STRING', 'description': 'Region IDs', 'default': ''}, {'name': 'page', 'type': 'NUMBER', 'description': 'Page number', 'default': '0'}, {'name': 'name', 'type': 'STRING', 'description': 'Region name', 'default': ''}, {'name': 'country', 'type': 'STRING', 'description': 'Country ID', 'default': ''}, {'name': 'region_type', 'type': 'STRING', 'description': 'Region types', 'default': ''}], 'code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/static/regions"\nquerystring = {"region_id": "", "page": "0", "name": "", "country": "", "region_type": ""}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/static/regions"\nquerystring = {"region_id": "", "page": "0", "name": "", "country": "", "region_type": ""}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'test_endpoint': '...', 'statuscode': 200, 'schema': {}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 134 | Travel | Booking com | 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 | List of Hotel types | Returns hotel types names and their translations. | GET | {'name': 'List of Hotel types', 'url': 'https://booking-com.p.rapidapi.com/v1/static/hotel-types', 'description': 'Returns hotel types names and their translations.', 'method': 'GET', 'required_parameters': [], 'optional_parameters': [{'name': 'hotel_type_id', 'type': 'STRING', 'description': 'Hotel type ID', 'default': ''}], 'code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/static/hotel-types"\nquerystring = {"hotel_type_id": ""}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/static/hotel-types"\nquerystring = {"hotel_type_id": ""}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'test_endpoint': '...', 'statuscode': 1, 'schema': ''} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 135 | Travel | Booking com | 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 | List of Room facility types | Returns room facility types names | GET | {'name': 'List of Room facility types', 'url': 'https://booking-com.p.rapidapi.com/v1/static/room-facility-types', 'description': 'Returns room facility types names', 'method': 'GET', 'required_parameters': [], 'optional_parameters': [{'name': 'room_facility_type_id', 'type': 'STRING', 'description': 'Room facility type ID', 'default': ''}, {'name': 'facility_type_id', 'type': 'STRING', 'description': 'Facility type ID', 'default': ''}], 'code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/static/room-facility-types"\nquerystring = {"room_facility_type_id": "", "facility_type_id": ""}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/static/room-facility-types"\nquerystring = {"room_facility_type_id": "", "facility_type_id": ""}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'test_endpoint': '...', 'statuscode': 200, 'schema': {}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 136 | Travel | Booking com | 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 | List of Hotel facility types | Returns hotel facility types names and their translations | GET | {'name': 'List of Hotel facility types', 'url': 'https://booking-com.p.rapidapi.com/v1/static/hotel-facility-types', 'description': 'Returns hotel facility types names and their translations', 'method': 'GET', 'required_parameters': [], 'optional_parameters': [{'name': 'hotel_facility_type_id', 'type': 'STRING', 'description': 'Hotel facility type ID', 'default': ''}, {'name': 'facility_type_id', 'type': 'STRING', 'description': 'Facility type ID', 'default': ''}], 'code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/static/hotel-facility-types"\nquerystring = {"hotel_facility_type_id": "", "facility_type_id": ""}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/static/hotel-facility-types"\nquerystring = {"hotel_facility_type_id": "", "facility_type_id": ""}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'test_endpoint': '...', 'statuscode': 200, 'schema': {}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 137 | Travel | Booking com | 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 | List of Room types | Returns room types names | GET | {'name': 'List of Room types', 'url': 'https://booking-com.p.rapidapi.com/v1/static/room-types', 'description': 'Returns room types names', 'method': 'GET', 'required_parameters': [], 'optional_parameters': [{'name': 'room_type_id', 'type': 'STRING', 'description': 'Room type ID', 'default': ''}], 'code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/static/room-types"\nquerystring = {"room_type_id": ""}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/static/room-types"\nquerystring = {"room_type_id": ""}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'test_endpoint': '...', 'statuscode': 1, 'schema': ''} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 138 | Travel | Booking com | 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 | List of Hotel chains | Returns a list of hotel chains. | GET | {'name': 'List of Hotel chains', 'url': 'https://booking-com.p.rapidapi.com/v1/static/chain-types', 'description': 'Returns a list of hotel chains.', 'method': 'GET', 'required_parameters': [], 'optional_parameters': [{'name': 'name', 'type': 'STRING', 'description': 'Hotel chain name', 'default': ''}, {'name': 'chain_id', 'type': 'STRING', 'description': 'Chain ID', 'default': ''}], 'code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/static/chain-types"\nquerystring = {"name": "", "chain_id": ""}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/static/chain-types"\nquerystring = {"name": "", "chain_id": ""}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'test_endpoint': '...', 'statuscode': 200, 'schema': {}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 139 | Travel | Booking com | 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 | List of Countries | Returns all the country where booking offers hotels. | GET | {'name': 'List of Countries', 'url': 'https://booking-com.p.rapidapi.com/v1/static/country', 'description': 'Returns all the country where booking offers hotels.', 'method': 'GET', 'required_parameters': [], 'optional_parameters': [{'name': 'country', 'type': 'STRING', 'description': 'Country ID', 'default': ''}], 'code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/static/country"\nquerystring = {"country": ""}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v1/static/country"\nquerystring = {"country": ""}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'test_endpoint': '...', 'statuscode': 200, 'schema': {}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 140 | Travel | Booking com | 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 | Hotels Details | Hotels Details | GET | {'name': 'Hotels Details', 'url': 'https://booking-com.p.rapidapi.com/v2/hotels/details', 'description': 'Hotels Details', 'method': 'GET', 'required_parameters': [{'name': 'hotel_id', 'type': 'NUMBER', 'description': 'Hotel id', 'default': 1676161}, {'name': 'currency', 'type': 'STRING', 'description': '', 'default': 'AED'}, {'name': 'locale', 'type': 'STRING', 'description': '', 'default': 'en-gb'}, {'name': 'checkout_date', 'type': 'STRING', 'description': 'Checkout date', 'default': '2023-09-28'}, {'name': 'checkin_date', 'type': 'STRING', 'description': 'Checkin date', 'default': '2023-09-27'}], 'optional_parameters': [], 'code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v2/hotels/details"\nquerystring = {"hotel_id": 1676161, "currency": "AED", "locale": "en-gb", "checkout_date": "2023-09-28", "checkin_date": "2023-09-27"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v2/hotels/details"\nquerystring = {"hotel_id": 1676161, "currency": "AED", "locale": "en-gb", "checkout_date": "2023-09-28", "checkin_date": "2023-09-27"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'test_endpoint': '...', 'statuscode': 200, 'schema': {}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 141 | Travel | Booking com | 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 | Hotels Search | Get available hotels by the filter. Indicate the `destination_id` and `dest_type` -> use **@Search locations** endpoint, check-in and check-out date, number of adults and children. For possible filters use **@Filters for search** endpoint. Use `page_number` to paginate and navigate through the result pages! <br/> Comparable to:  | GET | {'name': 'Hotels Search', 'url': 'https://booking-com.p.rapidapi.com/v2/hotels/search', 'description': 'Get available hotels by the filter. Indicate the `destination_id` and `dest_type` -> use **@Search locations** endpoint, check-in and check-out date, number of adults and children. For possible filters use **@Filters for search** endpoint. Use `page_number` to paginate and navigate through the result pages! <br/> Comparable to: ', 'method': 'GET', 'required_parameters': [{'name': 'order_by', 'type': 'STRING', 'description': '', 'default': 'popularity'}, {'name': 'adults_number', 'type': 'NUMBER', 'description': 'Number of adults', 'default': '2'}, {'name': 'checkin_date', 'type': 'STRING', 'description': 'Checkin date', 'default': '2023-09-27'}, {'name': 'filter_by_currency', 'type': 'STRING', 'description': '', 'default': 'AED'}, {'name': 'dest_id', 'type': 'NUMBER', 'description': 'Destination id, use `Search locations` to find a place, field `dest_id` and `dest_type`', 'default': -553173}, {'name': 'locale', 'type': 'STRING', 'description': '', 'default': 'en-gb'}, {'name': 'checkout_date', 'type': 'STRING', 'description': 'Checkout date', 'default': '2023-09-28'}, {'name': 'units', 'type': 'STRING', 'description': '', 'default': 'metric'}, {'name': 'room_number', 'type': 'NUMBER', 'description': 'Number of rooms', 'default': '1'}, {'name': 'dest_type', 'type': 'STRING', 'description': '', 'default': 'city'}], 'optional_parameters': [{'name': 'include_adjacency', 'type': 'BOOLEAN', 'description': 'Include nearby places. If there are few hotels in the selected location, nearby locations will be added. You should pay attention to the `primary_count` parameter - it is the number of hotels from the beginning of the array that matches the strict filter.', 'default': True}, {'name': 'children_number', 'type': 'NUMBER', 'description': 'Number of children', 'default': '2'}, {'name': 'page_number', 'type': 'NUMBER', 'description': 'Page number', 'default': '0'}, {'name': 'children_ages', 'type': 'STRING', 'description': 'The age of every child. If children will be staying in the room, please indicate their ages separated by commas. 0-less than a year', 'default': '5,0'}, {'name': 'categories_filter_ids', 'type': 'STRING', 'description': 'Search filter IDs. For possible filters use `@Filters for search` ex: `price::USD-140-190`, or `price::USD-150-min` or `price::USD-150-max`', 'default': 'class::2,class::4,free_cancellation::1'}], 'code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v2/hotels/search"\nquerystring = {"include_adjacency": true, "children_number": "2", "order_by": "popularity", "adults_number": "2", "checkin_date": "2023-09-27", "filter_by_currency": "AED", "page_number": "0", "dest_id": -553173, "locale": "en-gb", "checkout_date": "2023-09-28", "units": "metric", "room_number": "1", "children_ages": "5,0", "dest_type": "city", "categories_filter_ids": "class::2,class::4,free_cancellation::1"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v2/hotels/search"\nquerystring = {"include_adjacency": true, "children_number": "2", "order_by": "popularity", "adults_number": "2", "checkin_date": "2023-09-27", "filter_by_currency": "AED", "page_number": "0", "dest_id": -553173, "locale": "en-gb", "checkout_date": "2023-09-28", "units": "metric", "room_number": "1", "children_ages": "5,0", "dest_type": "city", "categories_filter_ids": "class::2,class::4,free_cancellation::1"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'test_endpoint': '...', 'statuscode': 1, 'schema': ''} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 142 | Travel | Booking com | 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 | Meta Properties description | Get meta properties description | GET | {'name': 'Meta Properties description', 'url': 'https://booking-com.p.rapidapi.com/v2/hotels/meta-properties', 'description': 'Get meta properties description', 'method': 'GET', 'required_parameters': [], 'optional_parameters': [], 'code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v2/hotels/meta-properties"\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v2/hotels/meta-properties"\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers)\nprint(response.json())\n', 'test_endpoint': '...', 'statuscode': 200, 'schema': {}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 143 | Travel | Booking com | 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 | Filters for search | Get a list of available filters for hotel search | GET | {'name': 'Filters for search', 'url': 'https://booking-com.p.rapidapi.com/v2/hotels/search-filters', 'description': 'Get a list of available filters for hotel search', 'method': 'GET', 'required_parameters': [{'name': 'checkin_date', 'type': 'STRING', 'description': 'Checkin date', 'default': '2023-09-27'}, {'name': 'locale', 'type': 'STRING', 'description': '', 'default': 'en-gb'}, {'name': 'room_number', 'type': 'NUMBER', 'description': 'Number of rooms', 'default': '1'}, {'name': 'dest_id', 'type': 'NUMBER', 'description': 'Destination id, use `Search locations` to find a place, field `dest_id` and `dest_type`', 'default': -553173}, {'name': 'checkout_date', 'type': 'STRING', 'description': 'Checkout date', 'default': '2023-09-28'}, {'name': 'adults_number', 'type': 'NUMBER', 'description': 'Number of adults', 'default': '2'}, {'name': 'filter_by_currency', 'type': 'STRING', 'description': '', 'default': 'AED'}, {'name': 'dest_type', 'type': 'STRING', 'description': '', 'default': 'city'}, {'name': 'order_by', 'type': 'STRING', 'description': '', 'default': 'popularity'}, {'name': 'units', 'type': 'STRING', 'description': '', 'default': 'metric'}], 'optional_parameters': [{'name': 'include_adjacency', 'type': 'BOOLEAN', 'description': 'Include nearby places. If there are few hotels in the selected location, nearby locations will be added. You should pay attention to the `primary_count` parameter - it is the number of hotels from the beginning of the array that matches the strict filter.', 'default': True}, {'name': 'categories_filter_ids', 'type': 'STRING', 'description': 'Search filter IDs. For possible filters use `@Filters for search` ex: `price::USD-140-190`, or `price::USD-150-min` or `price::USD-150-max`', 'default': 'class::2,class::4,free_cancellation::1'}, {'name': 'page_number', 'type': 'NUMBER', 'description': 'Page number', 'default': '0'}, {'name': 'children_number', 'type': 'NUMBER', 'description': 'Number of children', 'default': '2'}, {'name': 'children_ages', 'type': 'STRING', 'description': 'The age of every child. If children will be staying in the room, please indicate their ages separated by commas. 0-less than a year', 'default': '5,0'}], 'code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v2/hotels/search-filters"\nquerystring = {"checkin_date": "2023-09-27", "locale": "en-gb", "include_adjacency": true, "categories_filter_ids": "class::2,class::4,free_cancellation::1", "room_number": "1", "dest_id": -553173, "checkout_date": "2023-09-28", "page_number": "0", "adults_number": "2", "filter_by_currency": "AED", "dest_type": "city", "children_number": "2", "order_by": "popularity", "children_ages": "5,0", "units": "metric"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v2/hotels/search-filters"\nquerystring = {"checkin_date": "2023-09-27", "locale": "en-gb", "include_adjacency": true, "categories_filter_ids": "class::2,class::4,free_cancellation::1", "room_number": "1", "dest_id": -553173, "checkout_date": "2023-09-28", "page_number": "0", "adults_number": "2", "filter_by_currency": "AED", "dest_type": "city", "children_number": "2", "order_by": "popularity", "children_ages": "5,0", "units": "metric"}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'test_endpoint': '...', 'statuscode': 1, 'schema': ''} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 144 | Travel | Booking com | 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 | Description of the hotel | Get description of the hotel by hotel_id | GET | {'name': 'Description of the hotel', 'url': 'https://booking-com.p.rapidapi.com/v2/hotels/description', 'description': 'Get description of the hotel by hotel_id', 'method': 'GET', 'required_parameters': [{'name': 'locale', 'type': 'STRING', 'description': '', 'default': 'en-gb'}, {'name': 'hotel_id', 'type': 'NUMBER', 'description': 'Hotel id', 'default': 1377073}], 'optional_parameters': [], 'code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v2/hotels/description"\nquerystring = {"locale": "en-gb", "hotel_id": 1377073}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://booking-com.p.rapidapi.com/v2/hotels/description"\nquerystring = {"locale": "en-gb", "hotel_id": 1377073}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com.p.rapidapi.com"\n }\n\nresponse = requests.get(url, headers=headers, params=querystring)\nprint(response.json())\n', 'test_endpoint': '...', 'statuscode': 200, 'schema': {}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |
| 145 | Travel | Booking com | 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 | flights/multi-city | Get flights multi-city | POST | {'name': 'flights/multi-city', 'url': 'https://booking-com13.p.rapidapi.com/flights/multi-city', 'description': 'Get flights multi-city', 'method': 'POST', 'required_parameters': [], 'optional_parameters': [{'name': 'min_price', 'type': 'NUMBER', 'description': '', 'default': ''}, {'name': 'infant_age', 'type': 'STRING', 'description': 'The `infant_age `must be a number(0, 1) and separated by commas\nEx: 0,1', 'default': ''}, {'name': 'page', 'type': 'NUMBER', 'description': '', 'default': '1'}, {'name': 'number_of_stops', 'type': 'ENUM', 'description': 'Default: `All`', 'default': ''}, {'name': 'children_age', 'type': 'STRING', 'description': 'The `children_age `must be a number and separated by commas\nEx: 9,2,16\n', 'default': ''}, {'name': 'country_flag', 'type': 'STRING', 'description': '`countryFlag` from `languages` endpoint\n\nDefault: `us`', 'default': 'us'}, {'name': 'adult_number', 'type': 'NUMBER', 'description': 'Default: 1', 'default': ''}, {'name': 'max_price', 'type': 'NUMBER', 'description': '', 'default': ''}, {'name': 'class', 'type': 'ENUM', 'description': 'Default: `Economy`', 'default': ''}, {'name': 'travel_time', 'type': 'STRING', 'description': 'Format: `hh:mm`\nEx: 21:30', 'default': ''}, {'name': 'airlines', 'type': 'STRING', 'description': 'airlines comma-separated or empty for all types\nGet from this API\nresultSetMetaData->marketingCarriers[index]->code\nEx: SK,BT', 'default': ''}], 'code': 'import requests\n\nurl = "https://booking-com13.p.rapidapi.com/flights/multi-city"\nquerystring = {"min_price": "", "infant_age": "", "page": "1", "number_of_stops": "", "children_age": "", "country_flag": "us", "adult_number": "", "max_price": "", "class": "", "travel_time": "", "airlines": ""}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com13.p.rapidapi.com"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n', 'convert_code': 'import requests\n\nurl = "https://booking-com13.p.rapidapi.com/flights/multi-city"\nquerystring = {"min_price": "", "infant_age": "", "page": "1", "number_of_stops": "", "children_age": "", "country_flag": "us", "adult_number": "", "max_price": "", "class": "", "travel_time": "", "airlines": ""}\n\nheaders = {\n "X-RapidAPI-Key": "YOUR_RAPID_API_KEY",\n "X-RapidAPI-Host": "booking-com13.p.rapidapi.com"\n }\n\nresponse = requests.post(url, headers=headers, params=querystring)\nprint(response.json())\n', 'test_endpoint': '...', 'statuscode': 200, 'schema': {'type': 'object', 'properties': {'currentPage': {'type': 'integer'}, 'data': {'type': 'object', 'properties': {'__typename': {'type': 'string'}, 'availableFilters': {'type': 'array'}, 'availableSortTypes': {'type': 'array', 'items': {'type': 'object', 'properties': {'__typename': {'type': 'string'}, 'code': {'type': 'string'}, 'name': {'type': 'string'}}}}, 'carrierCodes': {'type': 'array'}, 'carrierNames': {'type': 'array'}, 'filteredFlightsCount': {'type': 'integer'}, 'flights': {'type': 'array', 'items': {'type': 'object'}}, 'flightsCount': {'type': 'integer'}, 'quickSortPrices': {'type': 'object', 'properties': {'__typename': {'type': 'string'}, 'carrierPromo': {'type': 'object', 'properties': {'__typename': {'type': 'string'}, 'currency': {'type': 'object', 'properties': {'__typename': {'type': 'string'}, 'code': {'type': 'string'}}}, 'value': {'type': 'integer'}}}, 'cheapTrip': {'type': 'object', 'properties': {'__typename': {'type': 'string'}, 'currency': {'type': 'object', 'properties': {'__typename': {'type': 'string'}, 'code': {'type': 'string'}}}, 'value': {'type': 'integer'}}}, 'recommendation': {'type': 'object', 'properties': {'__typename': {'type': 'string'}, 'currency': {'type': 'object', 'properties': {'__typename': {'type': 'string'}, 'code': {'type': 'string'}}}, 'value': {'type': 'integer'}}}, 'shortTrip': {'type': 'object', 'properties': {'__typename': {'type': 'string'}, 'currency': {'type': 'object', 'properties': {'__typename': {'type': 'string'}, 'code': {'type': 'string'}}}, 'value': {'type': 'integer'}}}}}, 'resultSetMetaData': {'type': 'object', 'properties': {'__typename': {'type': 'string'}, 'marketingCarriers': {'type': 'array', 'items': {'type': 'object', 'properties': {'__typename': {'type': 'string'}, 'code': {'type': 'string'}, 'name': {'type': 'string'}}}}, 'priceRange': {'type': 'object', 'properties': {'__typename': {'type': 'string'}, 'max': {'type': 'integer'}, 'min': {'type': 'integer'}}}, 'travelTimeRange': {'type': 'object', 'properties': {'__typename': {'type': 'string'}, 'max': {'type': 'integer'}, 'min': {'type': 'integer'}}}}}, 'routes': {'type': 'array', 'items': {'type': 'object', 'properties': {'__typename': {'type': 'string'}, 'departureAt': {'type': 'string'}, 'departureDate': {'type': 'string'}, 'departureTimeOfDay': {'type': 'null'}, 'destination': {'type': 'object', 'properties': {'__typename': {'type': 'string'}, 'cityCode': {'type': 'string'}, 'cityName': {'type': 'string'}, 'code': {'type': 'string'}, 'continentCode': {'type': 'string'}, 'continentName': {'type': 'string'}, 'countryCode': {'type': 'string'}, 'countryName': {'type': 'string'}, 'name': {'type': 'string'}}}, 'origin': {'type': 'object', 'properties': {'__typename': {'type': 'string'}, 'cityCode': {'type': 'string'}, 'cityName': {'type': 'string'}, 'code': {'type': 'string'}, 'continentCode': {'type': 'string'}, 'continentName': {'type': 'string'}, 'countryCode': {'type': 'string'}, 'countryName': {'type': 'string'}, 'name': {'type': 'string'}}}}}}, 'searchPath': {'type': 'string'}, 'sponsoredTrips': {'type': 'array', 'items': {'type': 'object'}}, 'travelers': {'type': 'array', 'items': {'type': 'object', 'properties': {'__typename': {'type': 'string'}, 'ageType': {'type': 'string'}}}}, 'tripCampaigns': {'type': 'array'}, 'type': {'type': 'string'}, 'validWithVoucher': {'type': 'boolean'}}}, 'message': {'type': 'string'}, 'resultsPerPage': {'type': 'integer'}, 'status': {'type': 'boolean'}, 'totalResultCount': {'type': 'integer'}}}} | {'SIGN-UP-FOR-KEY': 'YOUR_RAPID_API_KEY'} | RapidAPI |