Similarweb API V5 Documentation ## Sections • [Introduction](https://app.theneo.io/similarweb/api-v5/getting-started/welcome-to-similarweb-api.md): Jump into the Similarweb API V5: discover how to connect, explore data, and bring web and app insights into your own tools in minutes. • [What's New in V5](https://app.theneo.io/similarweb/api-v5/getting-started/what-s-new-in-v5.md): See what’s new in the Similarweb API V5, fresh endpoints, smarter data streams and updates to power your next-gen digital insights. • [Authentication](https://app.theneo.io/similarweb/api-v5/getting-started/authentication.md): Learn how to sign in to the Similarweb API V5, full guide to API keys, tokens and setup so your code can grab web & app insights with ease. • [Making Your First Request](https://app.theneo.io/similarweb/api-v5/getting-started/making-your-first-request.md): Learn how to make your first request with the Similarweb API V5, step-by-step guidance to send calls, retrieve data and integrate insights into your workflows. • [Available Data](https://app.theneo.io/similarweb/api-v5/guides/available-data.md): Explore the data available via the Similarweb API V5, review endpoint types, metrics and datasets to power your web, app and market-intelligence integrations. • [Popular Use Cases](https://app.theneo.io/similarweb/api-v5/guides/popular-use-cases.md): Discover popular use-cases for the Similarweb API V5, actionable scenarios, integrations and examples to leverage web & app insights across your business. • [Batch API Request - Step-by-Step Walkthrough](https://app.theneo.io/similarweb/api-v5/guides/popular-use-cases/recipes/batch-api-request-step-by-step-walkthrough.md): This guide provides a step-by-step walkthrough for using Similarweb’s Batch API to make a report request. You’ll submit a batch job, check its status, and finally download the results once processing is complete. 1 Batch API Request Endpoint The Batch API request is a POST request to this endpoint. It will initiate the batch job. JSON curl --location 'https://api.similarweb.com/batch/v5/request-report' \ 2 Request Headers The POST request has the following headers: API-key: Include your unique API key in the request header. Content-Type: Set to application/json to indicate you are sending JSON data. JSON --header 'api-key: {{API_KEY}}' \ --header 'Content-Type: application/json' \ 3 Request Body The actual request is incorporated in the body. In this section you can configure all the report parameters such as the dataset, metrics, dates, and more JSON --data '{ "delivery_information": { "response_format": "csv", "delivery_method": "download_link" }, "report_query": { "tables": [ { "vtable": "traffic_and_engagement", "granularity": "monthly", "filters": { "domains": [ "amazon.com", "ebay.com", "etsy.com", "aliexpress.com" ], "countries": [ "WW" ], "include_subdomains": true }, "metrics": [ "all_traffic_visits", "mobile_visits", "desktop_visits", "desktop_unique_visitors", "mobile_unique_visitors", "all_page_views" ], "start_date": "2024-04", "end_date": "2024-09" } ] } }' 4 Delivery Information Here you can configure output definitions such as response format (e.g., csv) and delivery method for the report (download link, integrations, etc) JSON "delivery_information": { "response_format": "csv", "delivery_method": "download_link" }, 5 Dataset / Data Table Define the dataset you're looking to query (vtable). For a full list of available datasets use the Batch Describe endpoint. JSON "vtable": "traffic_and_engagement", 6 Build you Report / Query Based on the dataset you chose, you can now build your report including: granularity, filters (e.g., domains, countries, subdomains), metrics, and date range for the data you want to pull. JSON "granularity": "monthly", "filters": { "domains": [ "amazon.com", "ebay.com", "etsy.com", "aliexpress.com" ], "countries": [ "WW" ], "include_subdomains": true }, "metrics": [ "all_traffic_visits", "mobile_visits", "desktop_visits", "desktop_unique_visitors", "mobile_unique_visitors", "all_page_views" ], "start_date": "2024-04", "end_date": "2024-09" 7 Submit the Request Submit the request using a tool like cURL, Postman, or any API client. Upon successful submission, you'll receive a response with a report_id. This report_id is crucial for the next steps, as it allows you to track the report's progress. JSON { "report_id": "845d6850-79d1-4125-964e-eaef0d6923e5", "status": "pending" } 8 Monitor Request Status Use the /request-status endpoint to check if your batch job is complete. In your request to /request-status, provide the request_id received in the previous step. Poll the request status endpoint periodically until you receive a status of complete. This indicates that the report is ready. JSON curl --location 'https://api.similarweb.com/batch/request-status/{report_id}' \ --header 'api-key: {{API_KEY}}' \ --header 'Content-Type: application/json' \ --------------------------------------------------------------------------------------- 9 Retrieve the Report Once the job status is complete, you'll receive a response with a download link. Use the provided download link to access your report. JSON "data_points_count": 1779429, "download_url": "example_url.com", "status": "completed", "used_quota": 35589 } • [Snowflake Table Integration](https://app.theneo.io/similarweb/api-v5/guides/popular-use-cases/recipes/snowflake-table-integration.md): This guide provides a step-by-step walkthrough for using Similarweb’s Batch API to create a Snowflake integration, manage tables, and efficiently extract data. 1 Create a new Snowflake connection Start by creating a new Snowflake integration to store and access data. You'll need to provide your snowflake_account_id and snowflake_region JSON "snowflake_account_id": "XXXXX", "snowflake_region": "AWS_EU_NORTH_1" --url https://api.similarweb.com/batch/v5/snowflake/setup \ 2 Generate a report using 'create table' url Creating a table is similar to requesting a one-time report, but this time, you will modify the delivery information and use the create-table URL. This step allows you to set up a table to store data continuously. JSON --url https://api.similarweb.com/batch/v5/integration/create-table \ 3 Modify delivery information Adjust the delivery_information section to define where and how the data will be delivered. In this case, set the delivery method to snowflake to store the data in your snowflake account. JSON "delivery_information": { "delivery_method": "snowflake", "delivery_method_params": { "integration_name": "snowflake_default", "table_name": "test" 4 Specify the integration name The integration_name parameter should always be set to 'snowflake_default' to direct data to the appropriate integration. JSON "integration_name": "snowflake_default", 5 Name your table Provide a unique name for your table. This name will be used to identify and manage the table in Snowflake. Choose a meaningful name that corresponds to the data you will store. JSON "table_name": "test" 6 Run the request Once you have filled out the request body, submit the request to create the table. After submitting, the table will be set up in Snowflake, and the requested data will be added to it. 7 Retrieve the table path Upon successful creation of the table, you will receive a location that represents the Snowflake path where the table data is stored. This path is used to access the stored data. JSON "share_name": "SSBUYFY.BATCH_API_AWS_US_EAST_1.SIMILARWEB_10000003_SNOWFLAKE_DEFAULT/TEST", 8 Add data to the table To add more data to the table after it has been created, use the request report URL. This step allows you to append new data to the table. JSON --url https://api.similarweb.com/batch/v5/request-report \ 9 Send data to the table By specifying the integration name and table name, you can add new data to your existing table. This allows you to keep your data up-to-date with additional information as needed. JSON "delivery_information": { "delivery_method": "snowflake", "delivery_method_params": { "integration_name": "snowflake_default", "table_name": "test" } 10 Note "delivery_method": "snowflake" "integration_name":"snowflake_default", "table_name": "test" Must be the same as when you created the table JSON "delivery_information": { "delivery_method": "snowflake", "delivery_method_params": { "integration_name": "snowflake_default", "table_name": "test" } • [S3 Table Integration](https://app.theneo.io/similarweb/api-v5/guides/popular-use-cases/recipes/s3-table-integration.md): This guide provides a step-by-step walkthrough for using Similarweb’s Batch API to create an S3 integration, manage tables, and efficiently extract data. 1 Create a new S3 connection Start by creating a new S3 integration to store and access data. This setup will generate AWS access and secret keys that allow you to interact with your data securely in the specified S3 bucket. JSON --url https://api.similarweb.com/batch/v5/s3-connector/setup \ 2 Save your credentials After creating the connection, we’ll provide you with private credentials, including AWS access keys. These keys are essential to access the shared S3 bucket securely. Make sure to store them in a safe place. JSON { "aws_access_key": "S3-ACCESS-KEY", "aws_secret_key": "S3-SECRET-KEY", "expiration_date": "2025-10-22", "integration_name": "s3_default", "s3_bucket": "my_bucket", "s3_prefix": "account_id/my_new_integration/" } 3 Generate a report using 'create table' url Creating a table is similar to requesting a one-time report, but this time, you will modify the delivery information and use the create-table URL. This step allows you to set up a table to store data continuously. JSON --url https://api.similarweb.com/batch/v5/integration/create-table \ 4 Modify delivery information Adjust the delivery_information section to define where and how the data will be delivered. In this case, set the delivery method to bucket_access to store the data in your S3 bucket. JSON "delivery_information": { "response_format": "csv", "delivery_method": "bucket_access", "delivery_method_params": { "integration_name": "s3_default", "table_name": "test" } 5 Specify the integration name The integration_name parameter should always be set to s3_default to direct data to the appropriate integration. JSON "integration_name": "s3_default", 6 Name your table Provide a unique name for your table. This name will be used to identify and manage the table in your S3 bucket. Choose a meaningful name that corresponds to the data you will store. JSON "table_name": "test" 7 Run the request Once you have filled out the request body, submit the request to create the table. After submitting, the table will be set up in your S3 bucket, and the requested data will be added to it. 8 Retrieve the table path Upon successful creation of the table, you will receive a location that represents the S3 path where the table data is stored. This path is used to access the stored data. JSON "location": "s3://web-bulk-api-reports-production-us-east-1/12345678/s3_default/test", 9 Add data to the table To add more data to the table after it has been created, use the request report URL. This step allows you to append new data to the table. JSON --url https://api.similarweb.com/batch/v5/request-report \ 10 Send data to the table By specifying the integration name and table name, you can add new data to your existing table. This allows you to keep your data up-to-date with additional information as needed. JSON "delivery_information": { "response_format": "csv", "delivery_method": "bucket_access", "delivery_method_params": { "integration_name": "s3_default", "table_name": "test" 11 Note "response_format": "csv", "delivery_method": "bucket_access" "integration_name": "s3_default", "table_name": "test" Must be the same as when you created the table JSON "response_format": "csv", "delivery_method": "bucket_access", "delivery_method_params": { "integration_name": "s3_default", "table_name": "test" • [GCS Table Integration](https://app.theneo.io/similarweb/api-v5/guides/popular-use-cases/recipes/gcs-table-integration.md): This guide provides a step-by-step walkthrough for using Similarweb’s Batch API to create a GCS integration, manage tables, and efficiently extract data. 1 Create a new Google Cloud connection Start by creating a new GCS integration to store and access data. This setup will generate GCS access and secret keys that allow you to interact with your data securely in the specified bucket. SHELL --url https://api.similarweb.com/v4/batch/gcs-connector/setup \ 2 Save your credentials After creating the connection, we’ll provide you with private credentials, including access keys. These keys are essential to access the share bucket securely. Make sure to store them in a safe place. SHELL "expiration_date": "2025-09-21", "gcs_bucket": "sw-daas-production", "gcs_prefix": "account_id/my_integration/", "integration_name": "my_integration", "secret": { "auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs", "auth_uri": "https://accounts.google.com/o/oauth2/auth", "client_email": "GCP_CLIENT_EMAIL", "client_id": "GCP_CLIENT_ID", "client_x509_cert_url": "GCP_CLIENT_X509_CERT_URL", "private_key": "GCP_PRIVATE_KEY", "private_key_id": "GCP_KEY_ID", "project_id": "GCP_PROJECT_ID", "token_uri": "https://oauth2.googleapis.com/token", "type": "service_account", "universe_domain": "googleapis.com" 3 Generate a report using 'create table' url Creating a table is similar to requesting a one-time report, but this time, you will modify the delivery information and use the create-table URL. This step allows you to set up a table to store data continuously. SHELL --url https://api.similarweb.com/batch/v5/integration/create-table \ 4 Modify delivery information Adjust the delivery_information section to define where and how the data will be delivered. In this case, set the delivery method to google_bucket_access to store the data in your google_bucket_access. SHELL "delivery_method": "google_bucket_access", 5 Specify the integration name The integration_name parameter should always be set to gcs_default to direct data to the appropriate integration. SHELL "integration_name": "gcs_default", 6 Name your table Provide a unique name for your table. This name will be used to identify and manage the table in your google bucket. Choose a meaningful name that corresponds to the data you will store. SHELL "table_name": "test" 7 Run the request Once you have filled out the request body, submit the request to create the table. After submitting, the table will be set up in your google bucket, and the requested data will be added to it. 8 Retrieve the table path Upon successful creation of the table, you will receive a location that represents the path where the table data is stored. This path is used to access the stored data. SHELL "location": "gs://sw-daas-production/account_id/my_integration/test", 9 Add data to the table To add more data to the table after it has been created, use the request report URL. This step allows you to append new data to the table. SHELL --url https://api.similarweb.com/batch/v5/request-report \ 10 Send data to the table By specifying the integration name and table name, you can add new data to your existing table. This allows you to keep your data up-to-date with additional information as needed. SHELL "response_format": "csv", "delivery_method": "google_bucket_access", "delivery_method_params": { "integration_name": "gcs_default", "table_name": "test" 11 Note "response_format": "csv", "delivery_method": "google_bucket_access" "integration_name": "gcs_default", "table_name": "test" Must be the same as when you created the table JSON {"success":true} • [Batch API - Segment from REST](https://app.theneo.io/similarweb/api-v5/guides/popular-use-cases/recipes/batch-api-segment-from-rest.md): This guide provides a walkthrough of how to pull website segments using Batch API 1 ⚠️ Limitations - Supported granularities: daily, monthly- Up to 100 websites / segment IDs / keywords per request SHELL curl --request POST \ --url https://api.similarweb.com/batch/v5/request-report \ --header 'accept: application/json' \ --header 'api-key: ADD_YOUR_API_KEY' \ --header 'content-type: application/json' \ --data ' { "delivery_information": { "delivery_method": "download_link", "response_format": "csv" }, "report_query": { "tables": [ { "vtable": "segments", "start_date": "2022-01", "end_date": "2022-01", "granularity": "monthly", "filters": { "countries": ["WW"], "segment_ids": [ "001ccf03-1bb3-468d-a204-b52c10dcd138", "001ccf03-1bb3-468d-a204-b52c10ffff", "$PS_1000196669" ] }, "metrics": [ "segment_total_visits", "segment_total_unique_visitors", "segment_total_pages_per_visit", "segment_total_visit_duration", "segment_total_page_views", "segment_total_bounce_rate", "segment_total_share" ] } ] } }' 2 Select vtable "segments" SHELL "vtable": "segments", 3 Add segment IDs SHELL "segment_ids": [ "001ccf03-1bb3-468d-a204-b52c10dcd138", "001ccf03-1bb3-468d-a204-b52c10ffff", "$PS_1000196669" 4 Select relevant metrics SHELL }, "metrics": [ "segment_total_visits", "segment_total_unique_visitors", "segment_total_pages_per_visit", "segment_total_visit_duration", "segment_total_page_views", "segment_total_bounce_rate", JSON { "report_id": "845d6440-79d1-4125-964e-eaef0d6923e5", "status": "pending" } • [Batch API - Traffic and Engagement from REST](https://app.theneo.io/similarweb/api-v5/guides/popular-use-cases/recipes/batch-api-traffic-and-engagement-from-rest.md): Recipe Description 1 ⚠️ Limitations - Supported granularities: daily, monthly- Up to 100 websites / segment IDs / keywords per request 2 Select vtable "traffic_and_engagement" SHELL "vtable": "traffic_and_engagement", 3 Select relevant metrics you can mix and match from the native Batch API and the REST data in the same request, But it would have to Limitations mentioned above SHELL "social_channel_desktop_average_visit_duration", "email_channel_desktop_average_visit_duration", "display_ads_channel_desktop_average_visit_duration", "referrals_channel_desktop_average_visit_duration", "direct_channel_desktop_average_visit_duration", "organic_search_channel_desktop_average_visit_duration", "paid_search_channel_desktop_average_visit_duration", "social_channel_desktop_pages_per_visit", "paid_search_channel_desktop_pages_per_visit", "email_channel_desktop_pages_per_visit", "display_ads_channel_desktop_pages_per_visit", "referrals_channel_desktop_pages_per_visit", "organic_search_channel_desktop_pages_per_visit", "direct_channel_desktop_pages_per_visit", "organic_search_channel_desktop_bounce_rate", "paid_search_channel_desktop_bounce_rate", "direct_channel_desktop_bounce_rate", "email_channel_desktop_bounce_rate", "social_channel_desktop_bounce_rate", "referrals_channel_desktop_bounce_rate", "display_ads_channel_desktop_bounce_rate" JSON { "report_id": "845d6440-79d1-4125-964e-eaef0d6923e5", "status": "pending" } • [Batch API - Keywords from REST](https://app.theneo.io/similarweb/api-v5/guides/popular-use-cases/recipes/batch-api-keywords-from-rest.md): Recipe Description 1 ⚠️ Limitations Supported granularities: daily, monthly Up to 100 keywords per request 2 Select vtable "keywords" SHELL "vtable": "keywords", 3 Select relevant metrics SHELL "total_keyword_analysis_volume_change", "total_keyword_analysis_clicks", "total_keyword_analysis_clicks_change", "total_keyword_analysis_zero_clicks_searches", "total_keyword_analysis_zero_clicks_searches_change", "total_keyword_analysis_classic_organic_traffic_share", "total_keyword_analysis_organic_serp_traffic_share", "total_keyword_analysis_organic_serp_traffic_share", "total_keyword_analysis_text_ads_traffic_share", "total_keyword_analysis_pla_traffic_share", "total_keyword_analysis_cpc_range_low_bid", "total_keyword_analysis_cpc_range_high_bid", "total_keyword_analysis_min_total_spent", "total_keyword_analysis_max_total_spent", "total_keyword_analysis_paid_competition", "total_keyword_analysis_organic_difficulty", "total_keyword_analysis_volume", "total_keyword_analysis_primary_intent", "mobile_keyword_analysis_volume_change", "mobile_keyword_analysis_clicks", "mobile_keyword_analysis_clicks_change", "mobile_keyword_analysis_classic_organic_traffic_share", "mobile_keyword_analysis_organic_serp_traffic_share", "mobile_keyword_analysis_text_ads_traffic_share", "mobile_keyword_analysis_min_total_spent", "mobile_keyword_analysis_max_total_spent", "mobile_keyword_analysis_pla_traffic_share", "mobile_keyword_analysis_volume", "desktop_keyword_analysis_pla_traffic_share", "desktop_keyword_analysis_volume_change", "desktop_keyword_analysis_clicks", "desktop_keyword_analysis_clicks_change", "desktop_keyword_analysis_classic_organic_traffic_share", "desktop_keyword_analysis_organic_serp_traffic_share", "desktop_keyword_analysis_text_ads_traffic_share", "desktop_keyword_analysis_min_total_spent", "desktop_keyword_analysis_max_total_spent", "desktop_keyword_analysis_volume", "total_organic_keywords_analysis_sub_domain", "total_organic_keywords_analysis_main_domain", "total_organic_keywords_analysis_clicks", "total_organic_keywords_analysis_traffic_share", "total_organic_keywords_analysis_serp_feature", "total_organic_keywords_analysis_position", "total_organic_keywords_analysis_top_url", "total_paid_keywords_analysis_sub_domain", "total_paid_keywords_analysis_main_domain", "total_paid_keywords_analysis_clicks", "total_paid_keywords_analysis_traffic_share", "total_paid_keywords_analysis_serp_feature", "total_paid_keywords_analysis_top_url", "total_paid_keywords_analysis_position", "desktop_organic_keywords_analysis_sub_domain", "desktop_organic_keywords_analysis_main_domain", "desktop_organic_keywords_analysis_clicks", "desktop_organic_keywords_analysis_traffic_share", "desktop_organic_keywords_analysis_serp_feature", "desktop_organic_keywords_analysis_position", "desktop_organic_keywords_analysis_top_url", "desktop_paid_keywords_analysis_sub_domain", "desktop_paid_keywords_analysis_main_domain", "desktop_paid_keywords_analysis_clicks", "desktop_paid_keywords_analysis_traffic_share", "desktop_paid_keywords_analysis_serp_feature", "desktop_paid_keywords_analysis_position", "desktop_paid_keywords_analysis_top_url", "mobile_organic_keywords_analysis_sub_domain", "mobile_organic_keywords_analysis_main_domain", "mobile_organic_keywords_analysis_clicks", "mobile_organic_keywords_analysis_traffic_share", "mobile_organic_keywords_analysis_serp_feature", "mobile_organic_keywords_analysis_position", "mobile_organic_keywords_analysis_top_url", "mobile_paid_keywords_analysis_sub_domain", "mobile_paid_keywords_analysis_main_domain", "mobile_paid_keywords_analysis_clicks", "mobile_paid_keywords_analysis_traffic_share", "mobile_paid_keywords_analysis_serp_feature", "mobile_paid_keywords_analysis_position", "mobile_paid_keywords_analysis_top_url" JSON { "report_id": "845d6440-79d1-4125-964e-eaef0d6923e5", "status": "pending" } • [Batch API - Referrals from REST](https://app.theneo.io/similarweb/api-v5/guides/popular-use-cases/recipes/batch-api-referrals-from-rest.md): Recipe Description 1 ⚠️ Limitations Supported granularities: daily, monthly Up to 100 websites per request 2 Select vtable "referrals" SHELL "vtable": "referrals", 3 Select relevant metrics15 you can mix and match from the native Batch API and the REST data in the same request, But it would have to Limitations mentioned above SHELL "mobile_outgoing_referral_share", "mobile_outgoing_referral_change" JSON { "report_id": "845d6440-79d1-4125-964e-eaef0d6923e5", "status": "pending" } • [Batch API - Geography from REST](https://app.theneo.io/similarweb/api-v5/guides/popular-use-cases/recipes/batch-api-geography-from-rest.md): Recipe Description 1 ⚠️ Limitations Supported granularities: daily, monthly Up to 100 websites per request 2 Select vtable "geography" SHELL "vtable": "geography", 3 Select relevant metrics SHELL "geo_total_share", "geo_total_visits", "geo_total_pages_per_visit", "geo_total_average_time", "geo_total_bounce_rate", "geo_total_rank", "geo_mobile_share", "geo_mobile_visits", "geo_mobile_pages_per_visit", "geo_mobile_average_time", "geo_mobile_bounce_rate", "geo_mobile_rank", "geo_desktop_share", "geo_desktop_visits", "geo_desktop_pages_per_visit", "geo_desktop_average_time", "geo_desktop_bounce_rate", "geo_desktop_rank" JSON { "report_id": "845d6440-79d1-4125-964e-eaef0d6923e5", "status": "pending" } • [REST API vs Batch API](https://app.theneo.io/similarweb/api-v5/guides/rest-api-vs-batch-api.md): Compare REST and Batch APIs in Similarweb API V5. Understand their differences, learn when to use each, and choose the best method for your data needs. • [API Pricing & Data Credits](https://app.theneo.io/similarweb/api-v5/guides/data-credits-calculations.md): Understand how data credits are calculated in the Similarweb API V5. Get clear guidelines on credit usage per endpoint, request type, and dataset access. • [Check Data Credits Balance](https://app.theneo.io/similarweb/api-v5/guides/data-credits-calculations/check-credit-balance.md): Check your remaining data credits with Similarweb API V5. Learn how to view account and user usage so you can monitor spending and stay within limits. • [Error Handling & Troubleshooting](https://app.theneo.io/similarweb/api-v5/guides/error-handling-and-troubleshooting.md): Explore how to handle errors and troubleshoot effectively with Similarweb API V5. Learn best practices to diagnose issues, interpret responses, and fix problems. • [Web Intelligence API](https://app.theneo.io/similarweb/api-v5/api-reference/website-analysis-api.md): Explore the Web intelligence API in Similarweb API V5. Access traffic, ranking, audience, and technology data to support accurate reporting and analysis. • [Traffic & Engagement](https://app.theneo.io/similarweb/api-v5/api-reference/website-analysis-api/website-performance/traffic-and-engagement.md): Use the Traffic & Engagement endpoint in Similarweb API V5 to retrieve detailed website performance data including visits, bounce rate, time on site and page views. • [Conversion Rates Over Time](https://app.theneo.io/similarweb/api-v5/api-reference/website-analysis-api/website-performance/conversion-rates-over-time.md): Returns monthly conversion performance data for Ecommerce sites, including conversion rates and absolute converted visits. Enables benchmarking across a curated set of 150,000 Ecommerce domains. • [Conversion Rates Aggregated](https://app.theneo.io/similarweb/api-v5/api-reference/website-analysis-api/website-performance/conversion-rates-aggregated.md): Returns aggregated conversion performance data for Ecommerce sites, including conversion rates and absolute converted visits. Enables benchmarking across a curated set of 150,000 Ecommerce domains. • [Website Ranking](https://app.theneo.io/similarweb/api-v5/api-reference/website-analysis-api/website-performance/website-ranking.md): Explore the Website Ranking endpoint in Similarweb API V5. Retrieve global rank and ranking trends for websites to benchmark performance and competitive standing. • [Top Sites Ranking](https://app.theneo.io/similarweb/api-v5/api-reference/website-analysis-api/website-performance/top-sites-ranking.md): Discover the Top Sites Ranking endpoint in the Similarweb API V5. Access lists of most-visited websites by category, country, or overall traffic. • [Marketing Channel Sources](https://app.theneo.io/similarweb/api-v5/api-reference/website-analysis-api/website-performance/marketing-channel-sources.md): Review the Marketing Channel Sources endpoint for Similarweb API V5. Understand how traffic is attributed across channels such as Search, Social, Display and Direct. • [Referrals](https://app.theneo.io/similarweb/api-v5/api-reference/website-analysis-api/website-performance/referrals.md): Explore the Referrals endpoint in the Similarweb API V5. Discover which sites are sending referral traffic, view referral volumes and see how partner links perform. • [PPC Spend](https://app.theneo.io/similarweb/api-v5/api-reference/website-analysis-api/website-performance/ppc-spend.md): Explore the PPC Spend endpoint in the Similarweb API V5. Access estimated monthly paid search spend by domain, currency, and country to support competitive benchmarking • [Traffic Geography](https://app.theneo.io/similarweb/api-v5/api-reference/website-analysis-api/website-performance/traffic-geography.md): Access the Traffic Geography endpoint in the Similarweb API V5. View website visits by country and region to understand global audience distribution. • [SimilarSites](https://app.theneo.io/similarweb/api-v5/api-reference/website-analysis-api/website-performance/similarsites.md): Discover the Similar Sites endpoint in Similarweb API V5. Retrieve websites with similar audience and traffic patterns to benchmark competitors and explore market opportunities. • [Ad Networks](https://app.theneo.io/similarweb/api-v5/api-reference/website-analysis-api/website-performance/ad-networks.md): Use the Ad Networks endpoint in the Similarweb API V5 to view which ad networks drive site traffic, including share by network and performance trends. • [List User Segments](https://app.theneo.io/similarweb/api-v5/api-reference/website-analysis-api/website-segments/list-user-segments.md): Access the List User Segments endpoint in the Similarweb API V5. Retrieve and manage custom audience segments created for website analysis and targeting. • [List predefined segments](https://app.theneo.io/similarweb/api-v5/api-reference/website-analysis-api/website-segments/list-predefined-segments.md): View the List Predefined Segments endpoint in Similarweb API V5. Retrieve available predefined audience segments to streamline website-segment analysis. • [Segments Analysis](https://app.theneo.io/similarweb/api-v5/api-reference/website-analysis-api/website-segments/segments.md): Explore the Segments endpoint in Similarweb API V5. Retrieve detailed traffic, engagement and channel data for custom or predefined website segments. • [Segments Marketing Channels](https://app.theneo.io/similarweb/api-v5/api-reference/website-analysis-api/website-segments/segments-marketing-channels.md): Use the Segments Marketing Channels endpoint in Similarweb API V5 to access traffic and engagement data for a website segment broken down by marketing channel. • [Demographics](https://app.theneo.io/similarweb/api-v5/api-reference/website-analysis-api/website-audience/demographics.md): Access the Demographics endpoint in Similarweb API V5 to view visitor breakdowns by age and gender, including engagement metrics for each audience segment. • [Demographics - specific groups](https://app.theneo.io/similarweb/api-v5/api-reference/website-analysis-api/website-audience/demographics-specific-groups.md): Use the Specific Groups Demographics endpoint in Similarweb API V5 to view custom audience breakdowns by age and gender for targeted analysis. • [Deduplicated Audience](https://app.theneo.io/similarweb/api-v5/api-reference/website-analysis-api/website-audience/deduplicated-audience.md): Access the Deduplicated Audience endpoint in Similarweb API V5 to retrieve monthly unique visitors across devices and better understand your true audience reach. • [Audience Interest](https://app.theneo.io/similarweb/api-v5/api-reference/website-analysis-api/website-audience/audience-interest.md): Access the Audience Interest endpoint in Similarweb API V5 to view visitor behaviour, discover the sites they visit and analyse affinity across domains and segments. • [Audience Overlap](https://app.theneo.io/similarweb/api-v5/api-reference/website-analysis-api/website-audience/audience-overlap.md): Access the Audience Overlap endpoint in Similarweb API V5 to compare shared unique visitors across up to five websites and uncover untapped audience potential. • [Website Technologies](https://app.theneo.io/similarweb/api-v5/api-reference/website-analysis-api/website-content/website-technologies.md): Access the Website Technologies endpoint in Similarweb API V5 to view the tech stack of any site, from CMS and analytics to advertising tools, and track adoption. • [Website Folders](https://app.theneo.io/similarweb/api-v5/api-reference/website-analysis-api/website-content/website-folders.md): Use the Folders endpoint in the Similarweb API V5 to retrieve leading site folders and their traffic share by domain, aiding structural analysis. • [Popular pages](https://app.theneo.io/similarweb/api-v5/api-reference/website-analysis-api/website-content/popular-pages.md): Access the Popular Pages endpoint in Similarweb API V5 to retrieve a ranked list of website pages by traffic share, view trends and discover top-performing content. • [Website Subdomains](https://app.theneo.io/similarweb/api-v5/api-reference/website-analysis-api/website-content/website-subdomains.md): Use the Website Subdomains endpoint in Similarweb API V5 to view traffic share for each subdomain and analyze how different sections of a site perform. • [Search Intelligence API](https://app.theneo.io/similarweb/api-v5/api-reference/search-analysis-api.md): Explore the Search intelligence API in Similarweb API V5. Retrieve keyword trends, search engine shares, competitor keywords and organic search insights. • [Keywords Overview](https://app.theneo.io/similarweb/api-v5/api-reference/search-analysis-api/keywords-overview.md): Get the full performance picture for a keyword or a saved keyword group: total search volume, clicks broken down by traffic type (organic, paid, PLA, search ads, SERP features), zero-click searches, SEO difficulty, paid competition, CPC bid range, AI Overview presence, and search intent split. Use it to size demand for a topic, score difficulty before targeting a term, or track how a keyword's volume and click distribution shifts month over month. Output metrics: volume Total search volume for the keyword in the selected country and period. clicks Total clicks across all SERP outcomes (organic + paid + features). paid_clicks Sum of search_ads_clicks and pla_clicks . classic_organic_clicks Clicks on standard organic blue-link results. organic_serp_features_clicks Clicks driven by organic SERP features (e.g., featured snippets, knowledge panels). search_ads_clicks Clicks on text-based search ads. pla_clicks Clicks on Product Listing Ads (Shopping). total_valid_serp_clicks All measurable SERP clicks, used as the denominator for share calculations. zero_clicks Searches that ended without a click on any result. difficulty SEO difficulty score, 0–100. Higher means harder to rank organically. competition Paid competition score, 0–100. Higher means more advertisers bidding. ai_overview Array of phrases that triggered an AI Overview on this keyword in the period. Empty or null if none. cpc_low_bid Low end of the CPC bid range, in micros (divide by 1,000,000 for currency units). cpc_high_bid High end of the CPC bid range, in micros. transactional_intent_volume Volume share with transactional intent. informational_intent_volume Volume share with informational intent. navigational_intent_volume Volume share with navigational intent. local_intent_volume Volume share with local intent. job_search_intent_volume Volume share with job-search intent. Constraints: Granularity vs. lookback: monthly returns up to the last 3 complete months . daily returns the last 28 days only . Daily date range: When granularity=daily , start_date and end_date must cover exactly the last 28 days , or both must be omitted (the API defaults to that window). Custom sub-ranges return a 400. Country coverage: Country support varies per metric and per time period. Hit the describe endpoint to get the supported country list and date range before querying. Web Source: desktop , mobile_web , or total . Some metrics (intent volumes, AI Overview, CPC) may return null on non-desktop sources. Single keyword vs. group: Pass a single keyword string by default. To query a saved keyword group, pass the group name as keyword and set is_keyword_group=true . See Querying a keyword group. How to find your Keyword List ID Visit an existing keyword list on the Similarweb platform and extract the ID (e.g. 5dd82db8-3ec5-462c-9699-5aa37a1b71de) from the URL (e.g. https://pro.similarweb.com/#/marketing/keyword/search/999/3m/*5dd82db8-3ec5-462c-9699-5aa37a1b71de/overview Send a request with is_keyword_group=true and the group name. A 200 response confirms the group exists and is accessible to your API key. A 404 or validation error means the name is wrong, the group is owned by a different account, or it hasn't been shared with your user. • [Keyword Competitors](https://app.theneo.io/similarweb/api-v5/api-reference/search-analysis-api/keyword-competitors.md): Use the Keyword Competitors endpoint in Similarweb API V5 to identify sites ranking for a given keyword, view their search traffic share, and benchmark competitor activity. • [Website Keywords](https://app.theneo.io/similarweb/api-v5/api-reference/search-analysis-api/website-keywords.md): Use the Website Keywords endpoint in Similarweb API V5 to retrieve the keywords driving search clicks to a domain and view metrics like volume, position, and traffic share. • [SERP Players - Clicks over time](https://app.theneo.io/similarweb/api-v5/api-reference/search-analysis-api/serp-players-clicks-over-time.md): Use the SERP Players Clicks Over Time endpoint in Similarweb API V5 to track how top websites gain search clicks for a keyword or keyword list over time. • [SERP Players - Aggregated](https://app.theneo.io/similarweb/api-v5/api-reference/search-analysis-api/serp-players-aggregated.md): Use the SERP Players Aggregated endpoint in Similarweb API V5 to view combined search traffic share, clicks and ranking trends for top domains over time. • [Landing Pages](https://app.theneo.io/similarweb/api-v5/api-reference/search-analysis-api/landing-pages.md): Returns a list of pages receiving incoming traffic from organic search traffic and traffic share per landing page. Output fields : url : The landing page URL receiving search traffic. Can be the root domain or subdomains. clicks : Estimated number of search clicks landing on this URL during the period. traffic_share : Proportion of the domain's total search traffic (organic or paid, based on filter) landing on this URL. desktop_share : Percentage of clicks to this URL coming from desktop devices. mobile_share : Percentage of clicks to this URL coming from mobile devices. keywords : Count of unique keywords driving traffic to this specific URL. High counts indicate broad SEO coverage; low counts suggest focused/branded traffic. top_keyword : The single keyword driving the most traffic to this URL. serp_features : RP features where this URL appears. Values include: organic, paid, organic_sitelinks, paid_sitelinks, organic_expanded_sitelinks, organic_inline_sitelinks, related_questions, local_pack, images, news. spend : Estimated PPC spend (USD) for this landing page. ads : Number of unique ad creatives/variations observed for this URL. Only populated when traffic_source =paid. Constraints: supports only monthly granularity for last month, or daily granularity for the last 28 days only" traffic_source : only 'paid' or 'organic' traffic is allowed • [Contacts Search](https://app.theneo.io/similarweb/api-v5/api-reference/company-analysis-api/contacts/contacts-search.md): Search for sales contacts based on company, job title, seniority, department, and location filters. Possible output fields: contact_id : Unique identifier for the contact company_domain : Domain associated with the contact’s company company_name : Company name associated with the contact first_name : Contact's first name last_name : Contact's last name job_title : Contact's role or position seniority : Contact's seniority level (e.g, C-level, Director, Manager) department : Contact's functional department country : Contact's country of residence city : Contact's city of residence location state : Contact's state of residence location linkedin_url : Contact's LinkedIn profile URL last_update_date : Last time the contact record was updated accuracy_score : Confidence score of the contact's details direct_phone_do_not_call : DNC indicator for direct phone mobile_phone_do_not_call : DNC indicator for mobile phone has_email : Indicates if an email is available for enrichment has_direct_phone : Indicates if a direct phone is available for enrichment has_mobile_phone : Indicates if a mobile phone is available for enrichment This endpoint doesn't use data credits. Constraints: All filters support is , not , contains , and exclude operations. Pagination is handled via limit and offset . Sorting is optional • [Contacts Enrichment - Single](https://app.theneo.io/similarweb/api-v5/api-reference/company-analysis-api/contacts/contacts-enrichment.md): Enrich contact information with detailed data, including email addresses, phone numbers, and professional details Possible output fields: contact_id : Unique identifier for the contact company_domain : Domain associated with the contact’s company company_name : Company name associated with the contact first_name : Contact's first name last_name : Contact's last name job_title : Contact's role or position seniority : Contact's seniority level (e.g, C-level, Director, Manager) department : Contact's functional department country : Contact's country of residence city : Contact's city of residence location state : Contact's state of residence location linkedin_url : Contact's LinkedIn profile URL last_update_date : Last time the contact record was updated accuracy_score : Confidence score of the contact's details direct_phone_do_not_call : DNC indicator for direct phone mobile_phone_do_not_call : DNC indicator for mobile phone emails : Contact's email addresses mobile_phones : Contact's mobile phones direct_phones : Contact's direct phones This endpoint uses data credits for enrichment of contact emails, mobile and direct phone numbers: Mobile number is 20 data credits Direct phone number is 1 data credits Email is 4 data credits Constraints: Each request must include one of the following to match a contact: contact_id email hashed_email linkedin_url first_name + last_name + ( company_name or domain ) full_name + ( company_name or domain ) hashed_email must be generated using MD5 , SHA1 , SHA256 , or SHA512. domain and company_name are used for disambiguation when multiple contacts share the same name or identifier. Pagination and sorting are not supported on this endpoint; each request targets a specific contact match. • [Contacts Enrichment - Bulk](https://app.theneo.io/similarweb/api-v5/api-reference/company-analysis-api/contacts/contacts-enrichment-bulk.md): Enrich up to 25 contacts in a single request with detailed data including email addresses, phone numbers, and professional details. Possible output fields: contact_id : Unique identifier for the contact company_domain : Domain associated with the contact’s company company_name : Company name associated with the contact first_name : Contact's first name last_name : Contact's last name job_title : Contact's role or position seniority : Contact's seniority level (e.g, C-level, Director, Manager) department : Contact's functional department country : Contact's country of residence city : Contact's city of residence location state : Contact's state of residence location linkedin_url : Contact's LinkedIn profile URL last_update_date : Last time the contact record was updated accuracy_score : Confidence score of the contact's details direct_phone_do_not_call : DNC indicator for direct phone mobile_phone_do_not_call : DNC indicator for mobile phone emails : Contact's email addresses mobile_phones : Contact's mobile phones direct_phones : Contact's direct phones This endpoint uses data credits for enrichment of contact emails, mobile and direct phone numbers: Mobile number is 20 data credits Direct phone number is 1 data credits Email is 4 data credits Constraints: Each contact matching input must include one of the following: contact_id email hashed_email linkedin_url first_name + last_name + ( company_name or domain ) full_name + ( company_name or domain ) hashed_email must be generated using MD5 , SHA1 , SHA256 , or SHA512. domain and company_name are used for disambiguation when multiple contacts share the same name or identifier. Pagination and sorting are not supported on this endpoint; each request targets a specific contact match. • [AI Outreach](https://app.theneo.io/similarweb/api-v5/api-reference/company-analysis-api/ai-outreach/sales-ai-outreach.md): The AI Outreach endpoint leverages the AI Outreach agent to generate high-conversion, insight-driven sales emails. By analyzing company performance metrics and recipient personas, it crafts personalized messages designed to resonate with specific business pain points. Possible output fields: subject : AI-optimized subject line. body_html : Full email body in HTML format, containing embedded charts and visual data insights. body_plain : The plain-text version of the generated email content Customizing Email Content You can control the focus of your email by using the preferred_metrics parameter. To see the full list of available metrics and supported date ranges for each country, use the Describe endpoint: GET /v5/sales-intelligence/emails/outreach/describe This endpoint uses data credits. 10 credit per email result. Constraints: start_date and end_date cannot be edited Maximum up to 5 email versions per company/recipient can be generated. • [Lead Enrichment](https://app.theneo.io/similarweb/api-v5/api-reference/company-analysis-api/lead-enrichment.md): Similarweb API V5 Documentation • [Lead Enrichment - Website](https://app.theneo.io/similarweb/api-v5/api-reference/company-analysis-api/lead-enrichment/enrich-website.md): Enrich a website domain with firmographics data, products & services, subsidiaries, and up to 3 competitors. Possible output fields: company_name : The official registered name of the company domain : The queried domain associated with the company main_domain : The primary domain representing the company's main web presence swid : SimilarWeb unique identifier for the company company_domains : List of domains associated with the company across regions and markets industry : The industry and sub-industry classification of the company hq_address : Street address of the company's headquarters hq_city : City where the company's headquarters is located hq_state : State or region where the company's headquarters is located hq_country : Country where the company's headquarters is located hq_postal_code : Postal/ZIP code of the company's headquarters hq_country_code : ISO 2-letter country code of the company's headquarters employee_count : Estimated number of employees at the company online_revenue : Estimated annual online revenue range of the company annual_revenue : Estimated total annual revenue range of the company phone_number : Primary contact phone number for the company email_address : Primary contact email address for the company company_linkedin_url : URL to the company's official LinkedIn profile is_site_type_transactional : Whether the website is transactional is_site_type_advertiser : Whether the website is an advertiser is_site_type_publisher : Whether the website is a publisher is_site_type_ecommerce_dtc : Whether the website is a direct-to-consumer ecommerce is_site_type_ecommerce_retailer : Whether the website is a retailer ecommerce is_site_type_ecommerce_other : Whether the website has other e-commerce characteristics not covered by the above types parent_company_domain : Domain of the company's parent/owning company parent_company_name : Name of the company's parent/owning company subsidiary_domains : List of domains belonging to the company's subsidiaries subsidiary_names : List of names of the company's subsidiary companies similar_sites : List of top 3 domains of websites with similar audiences or offerings business_model : Primary business model of the company (e.g. b2c , b2b ) products_and_services : List of products and services offered by the company company_description : A brief textual description of the company, its history, and offerings founding_year : The year the company was founded naics_codes : List of NAICS (North American Industry Classification System) codes associated with the company sic_codes : List of SIC (Standard Industrial Classification) codes associated with the company monthly_avg_transactions : Estimated average number of monthly transactions processed on the website This endpoint uses data credits. Read the following guide to estimate the credit costs. 1 credit per metric per result . If a field returns null , no credit is charged for it. domain and swid properties are free. Constraints: You must provide at least one of the following as input: a domain or a company_name • [Lead Enrichment - Company](https://app.theneo.io/similarweb/api-v5/api-reference/company-analysis-api/lead-enrichment/enrich-company.md): Enrich a company with firmographics data, products & services, subsidiaries, and up to 3 competitors. Possible output fields: company_name : The official registered name of the company domain : The queried domain associated with the company main_domain : The primary domain representing the company's main web presence swid : SimilarWeb unique identifier for the company company_domains : List of domains associated with the company across regions and markets industry : The industry and sub-industry classification of the company hq_address : Street address of the company's headquarters hq_city : City where the company's headquarters is located hq_state : State or region where the company's headquarters is located hq_country : Country where the company's headquarters is located hq_postal_code : Postal/ZIP code of the company's headquarters hq_country_code : ISO 2-letter country code of the company's headquarters employee_count : Estimated number of employees at the company online_revenue : Estimated annual online revenue range of the company annual_revenue : Estimated total annual revenue range of the company phone_number : Primary contact phone number for the company email_address : Primary contact email address for the company company_linkedin_url : URL to the company's official LinkedIn profile is_site_type_transactional : Whether the website is transactional is_site_type_advertiser : Whether the website is an advertiser is_site_type_publisher : Whether the website is a publisher is_site_type_ecommerce_dtc : Whether the website is a direct-to-consumer ecommerce is_site_type_ecommerce_retailer : Whether the website is a retailer ecommerce is_site_type_ecommerce_other : Whether the website has other e-commerce characteristics not covered by the above types parent_company_domain : Domain of the company's parent/owning company parent_company_name : Name of the company's parent/owning company subsidiary_domains : List of domains belonging to the company's subsidiaries subsidiary_names : List of names of the company's subsidiary companies similar_sites : List of top 3 domains of websites with similar audiences or offerings business_model : Primary business model of the company (e.g. b2c , b2b ) products_and_services : List of products and services offered by the company company_description : A brief textual description of the company, its history, and offerings founding_year : The year the company was founded naics_codes : List of NAICS (North American Industry Classification System) codes associated with the company sic_codes : List of SIC (Standard Industrial Classification) codes associated with the company monthly_avg_transactions : Estimated average number of monthly transactions processed on the website This endpoint uses data credits. Read the following guide to estimate the credit costs. 1 credit per metric per result . If a field returns null , no credit is charged for it. domain and swid properties are free. Constraints: You must provide at least one of the following as input: a domain or a company_name • [App Intelligence API](https://app.theneo.io/similarweb/api-v5/api-reference/app-analysis-api.md): Explore the App intelligence API in Similarweb API V5 to access mobile app data for downloads, usage, rankings and audience insights across iOS and Android. • [App Active Users (DAU/WAU/MAU)](https://app.theneo.io/similarweb/api-v5/api-reference/app-analysis-api/app-active-users.md): Returns the estimated active users for mobile apps across Google Play Store, Apple App Store, and both stores (“Unified”) over the given time frame. Daily granularity will return Daily Active Users (DAU) Weekly granularity will return Weekly Active Users (WAU) Monthly granularity will return Monthly Active Users (MAU) This endpoint uses 1 data credits per result in the “data” array response. Read the following guide to estimate the credit costs. • [App Sessions](https://app.theneo.io/similarweb/api-v5/api-reference/app-analysis-api/app-sessions.md): Returns the estimated Sessions Per User, Average Session Time Per Users and Total Sessions Time Per User for mobile apps across Google Play Store, Apple App Store, and both stores (“Unified”) over the given time frame. This endpoint uses 1 data credit per metric per result in the “data” array response. Read the following guide to estimate the credit costs. • [App Demographics](https://app.theneo.io/similarweb/api-v5/api-reference/app-analysis-api/app-demographics.md): Returns the age and gender distribution of a specified mobile app's active user base. This endpoint uses 1 credit per result. Example: male + female for 10 months of data = (1+ 1) * 10 = 20 credits. Read the following guide to estimate the credit costs. • [App Cross-Usage & Affinity](https://app.theneo.io/similarweb/api-v5/api-reference/app-analysis-api/app-cross-usage.md): Cross-Usage represents the percentage of users who use each listed app together with the target app. The Affinity Index shows how likely users of the target app are to use each app compared to average. 100% is the baseline Cross-Usage; above 100% means positive affinity, below 100% negative affinity This endpoint uses 3 data credits per app result in the “data” array response. Read the following guide to estimate the credit costs. • [App Search](https://app.theneo.io/similarweb/api-v5/api-reference/app-analysis-api/app-search.md): Use the App Search endpoint in Similarweb API V5 to retrieve keyword rankings, search visibility, and competitive app keywords for iOS and Android apps. • [App Downloads](https://app.theneo.io/similarweb/api-v5/api-reference/app-analysis-api/app-downloads.md): Returns the estimated Store Downloads for mobile apps across Google Play Store, Apple App Store, and both stores (“Unified”) over the given time frame. This endpoint uses 1 data credits per result in the “data” array response. Read the following guide to estimate the credit costs. • [App Install Penetration](https://app.theneo.io/similarweb/api-v5/api-reference/app-analysis-api/app-install-penetration.md): Returns the percentage of the devices in a country with the given app actively installed. This endpoint uses 1 data credit per rusult in the “data” array response. 10 days = 10 credits, 10 months = 10 credits. Read the following guide to estimate the credit costs. • [App Details](https://app.theneo.io/similarweb/api-v5/api-reference/app-analysis-api/app-details.md): Use the App Details endpoint in Similarweb API V5 to retrieve key information about a mobile app including title, publisher, price, category, and rating. • [App Ranks](https://app.theneo.io/similarweb/api-v5/api-reference/app-analysis-api/app-ranks.md): Returns historical ranking trends for a specific app across the Google Play and Apple App Store Top Charts. This endpoint uses 1 data credit per result (i.e. 1 day of rank) in the “data” array response. Example: 10 days of rank data = 10 credits. Read the following guide to estimate the credit costs. • [App Ratings](https://app.theneo.io/similarweb/api-v5/api-reference/app-analysis-api/app-ratings.md): Returns the average ratings, ratings counts and rating distribution for mobile apps across Google Play Store and Apple App Store. This endpoint uses 1 data credits per result per metric in the “data” array response. 10 days and 2 metrics= 20 credits, 10 months and 1 metric = 10 credits. Read the following guide to estimate the credit costs. • [App Retention](https://app.theneo.io/similarweb/api-v5/api-reference/app-analysis-api/app-retention.md): Returns the percentage of users who used the app during the first 30 days after installation. This endpoint uses 20 data credits per monthly result in the “data” array response. Read the following guide to estimate the credit costs. • [App IAB Categories](https://app.theneo.io/similarweb/api-v5/api-reference/app-analysis-api/app-iab-categories.md): Returns IAB categories for a given app from the iOS App Store or Google Play Store. This endpoint uses 1 data credits per IAB category result. Read the following guide to estimate the credit costs. • [App Top Charts](https://app.theneo.io/similarweb/api-v5/api-reference/app-analysis-api/app-top-charts.md): Returns a ranked list of top apps from the iOS App Store or Google Play. This endpoint uses 1 data credits per result in the “data” array response. Example: 10 apps ranked on a top chart = 10 credits. Read the following guide to estimate the credit costs. • [Gen AI Prompt Tracking](https://app.theneo.io/similarweb/api-v5/api-reference/gen-ai-intelligence-api/gen-ai-prompt-tracking.md): Returns the daily responses for the campaign tracked prompts, along with the AI platform, brands mentioned, citations, and brand sentiment • [Set up your Batch API](https://app.theneo.io/similarweb/api-v5/batch-api-general/set-up-your-batch-api.md): Welcome to Similarweb’s Batch API — giving you scalable access to the world’s largest digital measurement database. Get Similarweb data for more than 1,000,000 domains and 5 years of history, with tens of metrics, in one API call. This guide walks you through the two main steps required to get millions of data points from the API. Get started checklist 🔑 Get an API Key tutorial , or generate a new key directly from your account 📈 Choose the data and metrics you need based on your subscription on datahub.similarweb.com or discover new datasets here 📝 Create a request report with a valid JSON body 🔗 Connect and integrate to your data lake (S3, Snowflake, Databricks) Step-by-step guide 1 Submit a POST request Make a POST request with a JSON body — either inline or attached as a file using multipart/form-data . 2 Track your report After you receive your report ID , use the Request Report Status endpoint to receive the status and download URL once the report is ready. POST Python https :// api.similarweb.com / batch / v5 / request - report Python import requests url = "https://api.similarweb.com/batch/v5/request-report" payload = {} files = [ ('request', ('Batchexample.json', open('/Users/Batchexample.json', 'rb'), 'application/json')) ] headers = { 'api-key': '{{your_api_key}}' } response = requests.request("POST", url, headers=headers, data=payload, files=files) print(response.text) Example JSON body Request Body { "delivery_information": { "response_format": "csv" }, "report_query": { "tables": [ { "vtable": "traffic_and_engagement", "granularity": "monthly", "filters": { "domains": ["similarweb.com", "api.similarweb.com"], "countries": ["WW", "US"], "include_subdomains": true }, "metrics": [ "all_traffic_visits", "desktop_new_visitors", "desktop_pages_per_visit", "desktop_returning_visitors" ], "start_date": "2023-02", "end_date": "2024-02" } ] } } Mandatory parameters When requesting a report, include the following parameters in your JSON body. Parameter Description Acceptable values vtable The dataset you want to pull metrics from. See the full list on Datahub or the discovery endpoints. traffic_and_engagement domains Domain names may include letters, numbers, dashes, and hyphens. One request supports up to 1M domains. amazon.com countries 2-letter ISO country codes (case-sensitive, capital letters). Use "WW" for worldwide. When calling desktop_top_geo, remove all countries from your JSON. WW, US, GB metrics List of metrics per dataset. all_traffic_visits start_date, end_date Daily granularity uses YYYY-MM-DD; monthly granularity uses YYYY-MM. Daily: 2023-06-30 / Monthly: 2023-06 granularity Time series granularity. monthly, weekly, daily response_format Output format of the API call. JSON, csv, parquet, orc Save the report ID you receive after your API request — you'll need it to track the report status. The request limit is 20 pending requests per user. If you receive a 429 error, you've exceeded the limit. Reduce the frequency of your requests to stay within your account limits. Optional parameters Parameter Description Acceptable values delivery_method Default is "download_link". When set to "snowflake", the response_format field is not required. download_link, bucket_access, snowflake delivery_method_params Use when delivering reports to aggregated Snowflake tables. Input "table_name": "your_table_name". table_name, integration_name, retention_days, overwrite_partitions all_history When true, automatically overrides dates to the minimum start and maximum end dates. true / false latest When true, overrides the end date with the latest available date. true / false window_size Overrides the start date with a time relative to the end date. {number}{y/m/d} — e.g. 12d, 3m, 2y limit Limits the number of results per entity selected. Above 0; default is 100 for most metrics include_subdomains Default is true. true / false webhook_url Delivery URL we'll ping when the status of your report changes. URL sort Sort by a specific metric. "sort": "all_traffic_visits" Get the report status After submitting a request and receiving your report ID, use the Request Report Status endpoint to check progress. GET Python https :// api.similarweb.com /batch/request-status/ {{ generated_report_id }} Python import requests url = "https://api.similarweb.com/batch/request-status/{{generated_report_id}}" payload = {} headers = { 'api-key': '{{your_api_key}}' } response = requests.request("GET", url, headers=headers, data=payload) print(response.text) Example responses Completed In Progress Completed Report { "data_points_count": 1779429, "download_url": "example_url.com", "status": "completed", "used_quota": 35589 } In Progress { "status": "pending" } Data credits per request The download link remains valid for 30 days . We recommend saving it for some time in case you need our help troubleshooting any issue. Data credits are calculated for each report based on the number of results you are actually receiving: Formula: Number of domains × Number of metrics × history × cadence (daily/monthly) × Number of countries × Number of results In order to calculate the estimated credits the report will cost, you can use the "request-validate" endpoint: https://api.similarweb.com/v3/batch/request-validate • [Report Endpoints](https://app.theneo.io/similarweb/api-v5/batch-api-general/set-up-your-batch-api/report-endpoints.md): This section walks through three core report endpoints: Validate Report — get the data credits calculation and any warnings before running a report. Report Status — check the current status and download URL. Retry Endpoint — re-execute a failed request. 1. POST Request validate Before running your report, use the Request validate endpoint to calculate the estimated credits the report will cost and surface any warnings or alerts. Use the same code from your Request Report and change the URL. POST https://api.similarweb.com/batch/v5/request-validate Request body example Request Body { "delivery_information": { "response_format": "csv" }, "report_query": { "tables": [ { "vtable": "traffic_and_engagement", "granularity": "monthly", "filters": { "domains": ["similarweb.com", "api.similarweb.com"], "countries": ["WW", "US"], "include_subdomains": true }, "metrics": [ "all_traffic_visits", "desktop_new_visitors", "desktop_pages_per_visit", "desktop_returning_visitors" ], "start_date": "2023-02", "end_date": "2024-02" } ] } } Response examples Success Error Success { "estimated_credits": 208, "is_valid": true, "warnings": [] } Error { "errors": [ "granularity should be one of the following - daily, weekly, monthly." ], "is_valid": false, "warnings": [] } 2. GET Request Report Status GET Python GET https://api.similarweb.com/batch/request-status/{{GENERATED-REPORT-ID}} Python import requests url = "https://api.similarweb.com/batch/request-status/{{generated_report_id}}" payload = {} headers = { 'api-key': '{{your_api_key}}' } response = requests.request("GET", url, headers=headers, data=payload) print(response.text) Example responses Completed In Progress Completed { "data_points_count": 1779429, "download_url": "example_url.com", "status": "completed", "used_quota": 35589 } In Progress { "status": "pending" } The download link will remain valid for 30 days . We recommend saving these for a certain time period just in case you will need our assistance to troubleshoot any issue that may occur. Report statuses Once submitted, a request has a report_id you can use to track its progress through these statuses: pending — The request is valid; it has not yet been charged and is waiting to start report generation. processing — The request has been charged and report generation has started. completed — Report generation finished successfully and the report is ready. retry — The report is about to retry after a failure; the request was not yet charged. bad_request — The request is not valid (for example, incorrect dates, unavailable countries, unavailable metrics). internal_error — Unexpected server-side error. Use the retry mechanism. 3. POST Retry report If your request fails due to an internal error, use this retry endpoint with the report ID to re-execute the request. Your initial failed request will not affect your quota. POST https://api.similarweb.com/batch/retry/{{GENERATED-REPORT-ID}} • [Batch API - Discovery](https://app.theneo.io/similarweb/api-v5/batch-api-general/batch-api-discovery.md): The discovery endpoints help you understand what's available before you submit a report. Use them to describe the available virtual tables, validate your webhook URL, and check your remaining account or user credits — all free of charge and without consuming your quota. • [Describe Available Tables (GET)](https://app.theneo.io/similarweb/api-v5/batch-api-general/batch-api-discovery/describe-available-tables-get.md): This endpoint provides a comprehensive list of all available tables that can be queried using the Batch API. It is the key resource for understanding what data can be extracted via the request-report endpoint. • [Get Remaining Credits (GET)](https://app.theneo.io/similarweb/api-v5/batch-api-general/batch-api-discovery/get-remaining-credits-get.md): This endpoint returns your current remaining account credits. • [Get Remaining User Credits (GET)](https://app.theneo.io/similarweb/api-v5/batch-api-general/batch-api-discovery/get-remaining-user-credits-get.md): This endpoint returns your current remaining user credits. This endpoint is relevant only if the requesting user has a credits limitation set. If a limitation is not set, both user_allowance and user_remaining return as null — in that case, refer to the Get Remaining Credits endpoint instead. • [Batch API - Datasets](https://app.theneo.io/similarweb/api-v5/batch-api-general/batch-api-datasets.md): The Similarweb Batch API supports a range of datasets covering websites, audience and demographics, search and on-site search, apps, companies, technologies, ecommerce, and conversion analysis. Each dataset has its own dedicated page below with available metrics, filters, and sample requests. You can view the full list of datasets on Datahub or by calling the Describe Available Tables discovery endpoint. • [Intro to the Batch API Datasets](https://app.theneo.io/similarweb/api-v5/batch-api-general/batch-api-datasets/intro-to-the-batch-api-datasets.md): The Similarweb Batch API is designed for handling large-scale data extraction tasks. Instead of making individual requests for each piece of data, you submit batch jobs that specify the data you need and receive the results when the job completes. This approach suits scenarios where you need extensive historical data, long-term trend analysis, or periodic data updates. Batch API datasets You can view the latest list of datasets compatible with your subscription on Datahub or explore all available datasets via the Describe Available Tables discovery endpoint. Website intelligence datasets Websites — Traffic metrics for any website, including visits, engagements, ranking, and more. Website Referrals — Incoming and outgoing traffic data from websites. Websites Audience — Audience and demographic analysis for cross-browser behavior of a website's visitors and audience. Website Technologies — Comprehensive insights into more than 5,000 technologies used across the web. Search / Keywords datasets Website Keywords — Keywords that drive traffic to specific websites, broken down by total, paid, and organic channels. Keywords — Deep dive into keywords by volume, CPC, difficulty, and zero clicks. Company dataset Company firmographics — Company characteristics by employees, revenue, and location. Apps dataset App engagements — App usage, audience, and ranking metrics for performance evaluation and benchmarking. Ecommerce / Shopper datasets Uncover consumer shopping behavior to optimize your brand performance. Brands and categories Top brands in category Top products in category Top keywords in category Top products in brands Top keywords in brands • [Websites Dataset](https://app.theneo.io/similarweb/api-v5/batch-api-general/batch-api-datasets/websites-dataset.md): The Batch API Websites Dataset provides comprehensive web analytics across desktop and mobile platforms, enabling you to analyze website performance, user engagement, traffic sources, and competitive positioning. Access detailed metrics on visits, page views, bounce rates, marketing channels, and audience behavior. Historical Data Availability: Access up to 61 months of historical data, depending on your subscription plan. Starting May 31, 2026: Data upgrades are rolling out for the Traffic & Engagement and Marketing Channels vtables. Make sure to follow the action items below. For full details, visit our knowledge center guide . What you can track Traffic & Engagement — Visits, page views, bounce rates, session duration, and user behavior metrics. Marketing Channels & Traffic Sources — Traffic source analysis across organic search, paid search, direct, social, and more. Geographic Distribution — Country-level traffic breakdown and regional performance. Similar Sites — Competitive analysis and market positioning. Referrals — Referral traffic metrics showing visits from referring websites to target domains, both incoming and outgoing. Website description — Estimated e-commerce revenue and site meta description analysis. How to enter domain names? Domain names should be entered without protocol (e.g. example.com not https://example.com ). Getting started Authentication Include your Batch API key in the request headers: CURL curl --location 'https://api.similarweb.com/batch/v5/request-report' \ --header 'api-key: {{API_KEY}}' \ --header 'Content-Type: application/json' \ --request POST \ --data body Creating a report U se this URL: https://api.similarweb.com/batch/v5/request-report to make a report request. Available data tables (vtables) Traffic & Engagement vtable name: traffic_and_engagement Primary use case: Core website performance metrics, user engagement, and traffic analysis. Primary keys: domains , countries Starting May 31, 2026 , you must update your request parameters to continue accessing these metrics during the transition period. For more details and migration steps, please refer to the Knowledge Center guidance . Starting November 30, 2026 parts of this vtable will be fully deprecated. Metric Description Granularity all_traffic_visits Total estimated visits across all devices. Monthly, Weekly, Daily all_traffic_unique_visitors Total unique visitors across all devices. Monthly, Daily all_page_views Total page views across all devices. Monthly, Daily all_traffic_pages_per_visit Average pages viewed per visit. Monthly, Weekly, Daily all_traffic_average_visit_duration Average session duration in seconds. Monthly, Weekly, Daily all_traffic_bounce_rate Percentage of single-page sessions. Monthly, Weekly, Daily desktop_visits / desktop_unique_visitors / desktop_page_views Desktop-only volume metrics. Monthly, Weekly, Daily desktop_pages_per_visit / desktop_average_visit_duration / desktop_bounce_rate / desktop_share Desktop engagement and share metrics. Monthly, Weekly, Daily desktop_ppc_spend_usd Estimated desktop PPC spend in USD. Monthly mobile_visits / mobile_unique_visitors / mobile_page_views Mobile-only volume metrics. Monthly, Weekly, Daily mobile_pages_per_visit / mobile_average_visit_duration / mobile_bounce_rate / mobile_share Mobile engagement and share metrics. Monthly, Weekly, Daily mobile_ppc_spend_usd Estimated mobile PPC spend in USD. Monthly deduplicated_audience Unique audience across devices. Monthly total_new_visitors / total_returning_visitors New and returning visitor counts. Monthly category / global_rank / country_rank / category_rank_new Category and ranking attributes. Monthly Example Request { "delivery_information": { "response_format": "csv", "delivery_method_params": {"retention_days": 60} }, "report_query": { "tables": [ { "vtable": "traffic_and_engagement", "granularity": "monthly", "filters": {"countries": ["WW"], "include_subdomains": true}, "metrics": [ "all_page_views", "all_traffic_average_visit_duration", "all_traffic_bounce_rate", "all_traffic_pages_per_visit", "all_traffic_unique_visitors", "all_traffic_visits", "category", "category_rank_new", "country_rank", "deduplicated_audience", "global_rank", "total_new_visitors", "total_returning_visitors" ], "start_date": "2025-07", "end_date": "2025-07" } ] } } Marketing Channels vtable name: marketing_channels Primary use case: Traffic source analysis and marketing channel attribution. Primary keys: domains , countries , channels Available channels: organic_search , direct , paid_search , referrals , display_ads , social , mail , search Starting May 31, 2026, you must update your request parameters to continue using this vtable during the transition period. For more details and migration steps, please refer to the Knowledge Center guidance . You can use the website_marketing_channels vtable to retrieve the new data version. Starting November 30, this vtable will be fully deprecated. Metric Description Granularity desktop_marketing_channels_visits Desktop visits by traffic source. Monthly, Daily mobile_marketing_channels_visits Mobile visits by traffic source. Monthly desktop_marketing_channels_share Desktop traffic share by source. Monthly, Daily mobile_marketing_channels_share Mobile traffic share by source. Monthly Example Request { "delivery_information": {"response_format": "csv", "delivery_method_params": {"retention_days": 60}}, "report_query": { "tables": [{ "vtable": "marketing_channels", "granularity": "monthly", "filters": {"countries": ["US"], "channels": ["organic_search","direct","paid_search","social"]}, "metrics": ["desktop_marketing_channels_visits","desktop_marketing_channels_share","mobile_marketing_channels_visits","mobile_marketing_channels_share"], "start_date": "2025-06","end_date": "2025-07" }] } } (NEW) Website Marketing Channels This vtable will be available starting May 31, 2026. vtable name : website_marketing_channels Primary use case: Traffic source analysis and marketing channel attribution. Primary keys: domains , countries Available channels: organic_search , paid_search , referrals , display_ads , direct , organic_social , paid_social , mail , affiliates , gen_ai Sample { "delivery_information": {"response_format": "csv", "delivery_method_params": {"retention_days": 60}}, "report_query": { "tables": [{ "vtable": "website_marketing_channels", "granularity": "monthly", "filters": {"countries": ["US"], "channels": ["gen_ai", "organic_search","direct","paid_search","organic_social"]}, "metrics": ["marketing_channels_desktop_share","marketing_channels_desktop_visits","marketing_channels_mobile_share","marketing_channels_mobile_visits"], "start_date": "2026-04","end_date": "2026-05" }] } } Metric Description Granularity Type marketing_channels_desktop_share Offers insights into the distribution of desktop traffic across various marketing channels, expressed as a share of total traffic. Daily, Monthly Dobule marketing_channels_desktop_visits Provides an overview of the different sources driving desktop traffic to a site, categorizing visits based on marketing channels. Daily, Monthly Dobule marketing_channels_mobile_share Offers insights into the distribution of mobile traffic across various marketing channels, expressed as a share of total traffic. Daily, Monthly Dobule marketing_channels_mobile_visits Provides an overview of the different sources driving mobile traffic to a site, categorizing visits based on marketing channels. Daily, Monthly Dobule marketing_channels_total_share Aggregates desktop and mobile data to reveal the overall distribution of traffic across all marketing channels, illustrating each channel's contribution to total traffic share. Daily, Monthly Dobule marketing_channels_total_visits Presents the combined number of visits from both desktop and mobile devices, categorized by marketing channel. Offers a unified view of channel performance across all devices. Daily, Monthly Dobule Traffic Sources vtable name: traffic_sources Primary use case: Detailed referral analysis and specific traffic source identification. Primary keys: domains , countries Metric: desktop_traffic_source_share — Specific sources driving desktop traffic (e.g., Google, Facebook, YouTube). Granularity: Monthly. JSON { "delivery_information": { "response_format": "csv", "delivery_method_params": { "retention_days": 60 } }, "report_query": { "tables": [ { "vtable": "traffic_sources", "granularity": "monthly", "filters": { "countries": ["WW"] }, "metrics": [ "desktop_traffic_source_share" ], "start_date": "2025-07", "end_date": "2025-07" } ] } } Similar Sites vtable name: similar_sites Primary use case: Competitive analysis and website similarity measurement. Primary keys: domain1 , domain2 Metric: site_affinity — Similarity score between two websites. Granularity: Monthly. JSON { "delivery_information": { "response_format": "csv", "delivery_method_params": { "retention_days": 60 } }, "report_query": { "tables": [ { "vtable": "similar_sites", "granularity": "monthly", "filters": { "domain1": ["example.com"], "domain2": ["competitor.com"] }, "metrics": [ "site_affinity" ], "start_date": "2025-07", "end_date": "2025-07" } ] } } Desktop Top Geography vtable name: desktop_top_geo Primary use case: Geographic traffic distribution analysis. Primary keys: domains Metric: desktop_top_geo — Desktop traffic share by top 10 countries (minimum 1 month period). Granularity: Monthly. JSON { "delivery_information": { "response_format": "csv", "delivery_method_params": { "retention_days": 60 } }, "report_query": { "tables": [ { "vtable": "desktop_top_geo", "granularity": "monthly", "filters": {}, "metrics": [ "desktop_top_geo" ], "start_date": "2025-07", "end_date": "2025-07" } ] } } Website Search / Keywords Table vtable name: website_search_keywords Primary use case: Click metrics from search results for specific keywords leading to website visits. Primary keys: domains , keywords , countries Metric Description Granularity organic_desktop_site_clicks Clicks generated from organic search results on desktop. Daily, Weekly, Monthly organic_mobile_site_clicks Clicks generated from organic search results on mobile. Daily, Weekly, Monthly paid_desktop_site_clicks Clicks generated from paid search results on desktop. Daily, Weekly, Monthly paid_mobile_site_clicks Clicks generated from paid search results on mobile. Daily, Weekly, Monthly JSON { "delivery_information": { "response_format": "csv", "delivery_method_params": { "retention_days": 60 } }, "report_query": { "tables": [ { "vtable": "website_search_keywords", "granularity": "monthly", "filters": { "countries": ["WW"], "include_subdomains": true }, "metrics": [ "organic_desktop_site_clicks", "organic_mobile_site_clicks", "paid_desktop_site_clicks", "paid_mobile_site_clicks" ], "start_date": "2025-07", "end_date": "2025-07" } ] } }' Referrals vtable name: ( referrals ) Primary use case: Referral traffic metrics showing visits from referring websites to target domains, both incoming and outgoing. Primary keys: domains Metric Description Granularity desktop_referral_visits desktop_referral_share desktop_referral_change Desktop incoming referral metrics. Monthly desktop_outgoing_referral_visits desktop_outgoing_referral_share desktop_outgoing_referral_change Desktop outgoing referral metrics. Monthly mobile_referral_visits mobile_referral_share mobile_referral_change Mobile incoming referral metrics. Monthly JSON { "delivery_information": { "response_format": "csv", "delivery_method_params": { "retention_days": 60 } }, "report_query": { "tables": [ { "vtable": "referrals", "granularity": "monthly", "filters": { "countries": ["WW"], "include_subdomains": true }, "metrics": [ "desktop_outgoing_referral_change", "desktop_outgoing_referral_share", "desktop_outgoing_referral_visits", "desktop_referral_change", "desktop_referral_share", "desktop_referral_visits", "mobile_referral_change", "mobile_referral_share", "mobile_referral_visits" ], "start_date": "2025-07", "end_date": "2025-07" } ] } }' (New) GenAI Referrals This vtable will be available starting July 1st. vtable name: ( genai_referrals ) Primary use case: Referral traffic metrics showing visits from referring GenAI websites to target domains, both incoming and outgoing. Primary keys: domains Metric Description Granularity desktop_genai_referral_visits desktop_genai_referral_share desktop_genai_referral_change Desktop incoming GenAI referral metrics. Monthly desktop_outgoing_genai_referral_visits desktop_outgoing_genai_referral_share desktop_outgoing_genai_referral_change Desktop outgoing GenAI referral metrics. Monthly mobile_genai_referral_visits mobile_genai_referral_share mobile_genai_referral_change Mobile incoming GenAI referral metrics. Monthly mobile_outoging_genai_referral_visits mobile_outgoing_genai_referral_share mobile_outgoing_genai_referral_change Mobile outgoing GenAI referral metrics. Monthly Website Description vtable name: website Primary use case: Website metadata and revenue estimation. Primary keys: domains JSON { "delivery_information": { "response_format": "csv", "delivery_method_params": { "retention_days": 60 } }, "report_query": { "tables": [ { "vtable": "website", "granularity": "monthly", "filters": { "include_subdomains": true }, "metrics": [ "ecommerce_type", "first_level_domain", "main_category", "online_revenue", "sub_category" ], "start_date": "2025-07", "end_date": "2025-07" } ] } }' Metric Description Granularity ecommerce_type Type of e-commerce functionality (marketplace, direct seller, non-ecommerce). Monthly first_level_domain The first-level domain of the website. Monthly main_category / sub_category Primary and secondary industry categories. Monthly online_revenue Estimated monthly e-commerce revenue. Monthly • [Websites Audience & Demographics Dataset](https://app.theneo.io/similarweb/api-v5/batch-api-general/batch-api-datasets/websites-audience-and-demographics-dataset.md): Analyze the overlapping audiences across multiple websites and gain valuable insights into the demographics and interests of visitors to your website, your competitors’ websites, and your industry. Historical Data Availability: Access up to 37 months of historical data, depending on your subscription plan. What you can track Demographics — Demographic breakdown of website visitors by age and gender, including engagement metrics for each segment. Audience Interests — Websites frequently visited by the same audience and the overlap and affinity between different domains’ visitors. Batch API and REST API use different keys. Make sure you're using the correct one. Getting started 1. Authentication CURL curl --location 'https://api.similarweb.com/batch/v5/request-report' \ --header 'api-key: {{API_KEY}}' \ --header 'Content-Type: application/json' \ --request POST \ --data body Available tables (vtables) Demographics ( demographics ) Primary use case: Demographic breakdown of website visitors by age and gender, including engagement metrics. Primary keys: domains , countries Metric Description Granularity demographics_share Total traffic share for a given domain and demographics criteria (age + gender). Monthly demographics_avg_visit_duration Average visit duration (seconds) for a given domain and demographics criteria. Monthly demographics_bounce_rate Bounce rate for a given domain and demographics criteria. Monthly demographics_pages_per_visit Pages per visit for a given domain and demographics criteria. Monthly Demographics example { "delivery_information": {"response_format": "csv", "delivery_method_params": {"retention_days": 60}}, "report_query": { "tables": [{ "vtable": "demographics", "granularity": "monthly", "filters": { "domains": ["similarweb.com","google.com"], "countries": ["WW","US"], "age_groups": ["18-24","25-34","35-44","45-54","55-64","65+"], "gender": ["male","female"] }, "metrics": ["demographics_avg_visit_duration","demographics_bounce_rate","demographics_pages_per_visit","demographics_share"], "start_date": "2024-06","end_date": "2024-06" }] } } Additional request parameters age_groups — Optional. Specific age groups to filter. gender — Optional. Gender filter ( male , female ). Audience Interests ( audience_interests ) Primary use case: Identify websites frequently visited by the same audience and measure overlap and affinity between domains’ visitors. Primary keys: domains , countries Metric Description Granularity desktop_audience_interests_affinity Websites frequently visited by the same desktop visitors within the browsing session, with affinity score. Monthly mobile_audience_interests_affinity Websites frequently visited by the same mobile visitors within the browsing session, with affinity score. Monthly desktop_audience_interests_overlap Percentage of visitors that visit both the analyzed domain and other domains on desktop. Monthly mobile_audience_interests_overlap Percentage of visitors that visit both the analyzed domain and other domains on mobile. Monthly Audience Interests example { "delivery_information": {"response_format": "csv", "delivery_method_params": {"retention_days": 60}}, "report_query": { "tables": [{ "vtable": "audience_interests", "granularity": "monthly", "filters": {"domains": ["similarweb.com","google.com"], "countries": ["WW","US"]}, "metrics": ["desktop_audience_interests_affinity","desktop_audience_interests_overlap","mobile_audience_interests_affinity","mobile_audience_interests_overlap"], "start_date": "2024-06","end_date": "2024-06" }] } } • [Search Dataset](https://app.theneo.io/similarweb/api-v5/batch-api-general/batch-api-datasets/search-dataset.md): Discover the website keywords driving traffic to uncover search opportunities and build a winning digital marketing strategy. Keyword Analysis provides a deep-dive into any keyword on the web to discover the competitive landscape for any search term. Historical Data Availability: Historical data is available from January 2023. Access depends on your subscription plan. What you can track Keyword metrics — Search volume, CPC, and difficulty scores. Website keywords — Click metrics from search results for specific keywords leading to website visits. Zero-click analysis — Searches that don’t result in clicks. SERP features — Which features appear for keywords. Device-specific data — Desktop vs. mobile keyword performance. Competitive positioning — URLs and positions for organic and paid results. Batch API and REST API use different keys. Ensure you're using your Batch API key . Granularity Consistency: When generating a report, make sure all metrics are supported by the same granularity as the requested report. Getting started 1. Authentication CURL curl --location 'https://api.similarweb.com/batch/v5/request-report' \ --header 'api-key: {{API_KEY}}' \ --header 'Content-Type: application/json' \ --request POST \ --data body Available tables (vtables) Keywords ( keywords ) Primary use case: Comprehensive keyword metrics including search volume, CPC, difficulty scores, and zero-click analysis. Primary keys: keywords , countries Metric Description Granularity keyword_search_volume Total searches for a keyword on Google. Monthly, Weekly, Daily all_keyword_cpc Average CPC for the keyword (desktop + mobile). Monthly desktop_keyword_difficulty Difficulty score (1-100) for ranking in top results. Monthly zero_clicks_share Percentage of searches with no clicks. Monthly zero_clicks_latest_serp_date Most recent SERP analysis date. Monthly Keywords example { "delivery_information": {"response_format": "csv", "delivery_method_params": {"retention_days": 60}}, "report_query": { "tables": [{ "vtable": "keywords", "granularity": "monthly", "filters": {"countries": ["WW","US"]}, "metrics": ["all_keyword_cpc","keyword_search_volume","desktop_keyword_difficulty","zero_clicks_latest_serp_date","zero_clicks_share"], "start_date": "2025-06","end_date": "2025-06" }] } } Website Search / Keywords ( website_search_keywords ) Primary use case: Click metrics from search results for specific keywords leading to website visits. Primary keys: domains , keywords , countries Metric Description Granularity organic_desktop_site_clicks Clicks generated from organic search results on desktop. Daily, Weekly, Monthly organic_mobile_site_clicks Clicks generated from organic search results on mobile. Daily, Weekly, Monthly paid_desktop_site_clicks Clicks generated from paid search results on desktop. Daily, Weekly, Monthly paid_mobile_site_clicks Clicks generated from paid search results on mobile. Daily, Weekly, Monthly REST API endpoints via Batch API You can access certain REST API endpoints through Batch API, leveraging Batch API’s asynchronous processing for REST endpoints. Limitations Supported granularities: daily, monthly. Up to 100 keywords per request. Available keyword analysis endpoints SERP Players Keywords Overview • [On-Site Search Dataset](https://app.theneo.io/similarweb/api-v5/batch-api-general/batch-api-datasets/on-site-search-dataset.md): Discover the phrases consumers use when searching on specific websites and segments. This dataset helps identify trends in consumer behavior by analyzing search phrases across domains and segments. Using OSS in the Batch API You can unlock new insights, such as: Find search phrases by segment or domain — Identify the leading phrases being searched within a specific domain or segment. View the full list of supported segments via the conversion segments reference. Search by phrases to discover domains — Find new domains where the phrases of interest are being used. Amazon domains and segments are not supported in this dataset. For Amazon-specific data, contact your account manager about the Shopper Intelligence solution. Sample requests Search by segment Search by phrase Search by segment { "delivery_information": {"response_format": "csv"}, "report_query": { "tables": [{ "vtable": "oss_phrase_conversion", "granularity": "monthly", "latest": true, "filters": {"countries": ["US"], "segment_ids": ["airbnb.com#"]}, "metrics": [ "oss_phrase_sector","oss_phrase_rank", "oss_phrase_conversion_rate","oss_phrase_visits", "oss_phrase_converted_visits" ], "paging": {"limit": 10} }] } } Search by phrase { "delivery_information": {"response_format": "csv"}, "report_query": { "tables": [{ "vtable": "oss_phrase_conversion", "granularity": "monthly", "latest": true, "filters": {"countries": ["US"], "oss_phrase_terms": ["running shoes"]}, "metrics": [ "oss_phrase_sector","oss_phrase_rank", "oss_phrase_conversion_rate","oss_phrase_visits", "oss_phrase_converted_visits" ], "paging": {"limit": 10} }] } } Dataset: OSS Phrase Conversion Table URL: https://api.similarweb.com/batch/v4/request-report vtable: oss_phrase_conversion Primary keys: domains , countries , segment_id , search_term Optional keys: sector Metrics Metric Description Granularity Type oss_phrase_sector The sector to which the domain/segment belongs. Monthly String oss_phrase_rank The rank of a search phrase among all searched phrases under a given domain or segment. Monthly Integer oss_phrase_conversion_rate Percentage of visits that included at least one on-site search with this phrase and ended with a conversion. Monthly Double oss_phrase_visits Number of visits that included at least one on-site search with this phrase. Monthly Double oss_phrase_converted_visits Number of visits that included at least one on-site search with this phrase and ended with conversion. Monthly Double Filters and parameters Filter Type Description domains list List of websites of interest. countries list List of countries of interest. segment_ids list Domain and segment combination (e.g., airbnb.com#Experiences). oss_phrase_terms list An exact keyword that was searched on a site. sectors list A group of domains or segments within a specific category (e.g. Flights, Cosmetics/Beauty). • [Apps Dataset](https://app.theneo.io/similarweb/api-v5/batch-api-general/batch-api-datasets/apps-dataset.md): The Batch API Apps Dataset provides comprehensive app intelligence across iOS and Android platforms, enabling you to analyze app performance, user behavior, competitive positioning, and technology adoption. Access detailed metrics on downloads, user engagement, demographics, retention, rankings, and cross-platform usage patterns. Historical Data Availability: Access up to 37 months of historical data, depending on your subscription plan. What you can track App performance — Monthly active users, downloads, session data, and engagement metrics. User demographics — Age and gender breakdowns for app audiences. Technology stack — SDKs and third-party integrations within apps. Review analysis — Analyze apps’ reviews at scale, with sentiment and key topics. Ratings — Apps’ ratings and rating trends over time. User retention — 30-day retention rates for Android apps. App store rankings — Historical placement data for both iOS and Android. App affinity — User overlap between apps for partnership and competitive analysis. Batch API and REST API have different keys. Use the correct API key for this query. Getting started 1. Authentication CURL curl --location 'https://api.similarweb.com/batch/v5/request-report' \ --header 'api-key: {{API_KEY}}' \ --header 'Content-Type: application/json' \ --request POST \ --data body Available tables (vtables) App Intelligence ( apps ) Primary use case: Core app performance metrics, user engagement, and demographics. Primary keys: apps , country Metric Description Granularity application_name App name. Monthly, Daily apps_mau_ios / apps_mau_android Monthly active users by platform. Monthly apps_dau_ios / apps_dau_android Daily active users by platform. Daily apps_downloads_ios / apps_downloads_android App store downloads by platform. Monthly, Daily apps_install_penetration Percentage of devices with the app installed (Android only). Monthly, Daily apps_total_sessions_ios / apps_total_sessions_android Average total time per active user per day. Monthly, Daily apps_avg_sessions_time_ios / apps_avg_sessions_time_android Average session time of an active user. Monthly, Daily apps_avg_num_of_sessions_ios / apps_avg_num_of_sessions_android Average number of times an active user opens the app per day. Monthly (average), Daily apps_overall_num_of_sessions_ios / apps_overall_num_of_sessions_android Total sessions across all active users. Monthly, Daily apps_overall_sessions_time_ios / apps_overall_sessions_time_android Total sessions time across all active users. Monthly, Daily apps_demographics_male_percentage / apps_demographics_female_percentage Gender distribution of app users. Monthly apps_demographics_age_*_percentage Age-bucket distribution of app users (18-24, 25-34, 35-44, 45-54, 55+). Monthly Apps example { "delivery_information": {"response_format": "csv", "delivery_method_params": {"retention_days": 60}}, "report_query": { "tables": [{ "vtable": "apps", "granularity": "monthly", "filters": {"apps": ["com.facebook.katana","284882215"], "countries": ["WW","US"]}, "metrics": ["application_name","apps_mau_ios","apps_mau_android","apps_downloads_ios","apps_downloads_android","apps_install_penetration","apps_total_sessions_ios","apps_total_sessions_android","apps_avg_sessions_time_ios","apps_avg_sessions_time_android","apps_demographics_male_percentage","apps_demographics_female_percentage"], "start_date": "2025-03","end_date": "2025-06" }] } } App Technographics ( apps_technographics ) Primary use case: Technology stack analysis and SDK adoption tracking. Primary keys: apps (returns SDKs for an app) or sdk_slug (returns apps for an SDK). Metric Description Granularity device_type Platform where the SDK was detected: 'google' or 'apple'. Daily sdk_name Name of the detected SDK. Daily sdk_description Detailed explanation of SDK functionality. Daily sdk_category Technology classification and specialized area. Daily sdk_status Integration status: 'installed' or 'not installed'. Daily Supported SDKs We track 2,100 SDKs with nearly 1,450 iOS SDKs and 1,650+ Android SDKs across 10+ major categories. For the full and most updated list of SDKs go to the App Technographics - Supported SDKs page. App Review Analysis ( apps_reviews_analysis ) Primary use case: Analyze apps’ reviews at scale, broken down by sentiment, key topics, rating value, and app version. Primary keys: apps Metric Description Granularity review_title / review_body / review_body_english / review_language Review content and language attributes. Daily review_rating Rating (1 to 5) of the review. Daily review_sentiment Reviews classified as Positive, Negative, or Mixed. Daily review_topics Topic(s) assigned to the review. Daily review_platform Platform: 'google' or 'apple'. Daily app_version Version of the app for the specific review. Daily App Ratings ( apps_ratings ) Primary use case: Apps’ ratings and rating trends over time, broken down by average rating, ratings count, and 1-5 star distribution. Primary keys: apps Metric Description Granularity average_ratings App average ratings (1 to 5) in the specified country. Daily ratings_count Total ratings count in the specified country. Daily ratings_1_perc … ratings_5_perc Percentage of 1-star to 5-star ratings. Daily App Retention ( apps_retention ) Primary use case: User retention analysis and app stickiness measurement. Primary keys: apps Metric: apps_retention_android — Percentage of users who used the app 30 days after first opening it. Granularity: Monthly. App Ranking History ( apps_ranking_history ) Primary use case: App store performance tracking and competitive ranking analysis. Primary keys: apps Metric Description Granularity apps_ranking_history_android Historical Google Play Store ranking position. Daily apps_ranking_history_ios Historical Apple App Store ranking position. Daily Apps Affinity ( apps_affinity ) Primary use case: Identify apps with overlapping user bases for partnership opportunities or competitive threats (Android only). Primary keys: apps , country Metric: apps_affinity_android — Returns apps with overlapping user bases. Granularity: Monthly. • [App Technographics - Supported SDKs](https://app.theneo.io/similarweb/api-v5/batch-api-general/batch-api-datasets/apps-dataset/app-technographics-supported-sdks.md): Similarweb’s App Technographics dataset tracks over 2,100 mobile SDKs across iOS and Android platforms, providing comprehensive insights into the technology stacks powering mobile applications. This intelligence helps you understand competitive landscapes, identify partnership opportunities, and analyze technology adoption trends. Coverage (last updated June 26, 2025) : 2,100 SDKs total — nearly 1,450 iOS SDKs and 1,650+ Android SDKs across 32+ major categories. SDK Categories Our app technographics data covers SDKs across these major categories: Category Description Example Use Cases A/B Testing Experimentation and testing platforms for feature rollouts and optimization Feature testing, conversion optimization, user experience experiments AR and VR Augmented and Virtual Reality development frameworks Immersive app experiences, 3D content creation, spatial computing Ad Mediation Advertising mediation and optimization platforms Ad revenue optimization, demand source management, programmatic advertising Ad Networks Advertising networks and monetization platforms App monetization, ad inventory management, revenue analysis Analytics User behavior tracking and app performance analytics User engagement analysis, funnel optimization, data-driven decisions Attribution Install attribution and marketing campaign tracking Marketing ROI analysis, campaign performance measurement, user acquisition Audience and Data Intelligence Audience segmentation and data intelligence platforms User profiling, market research, competitive intelligence Audio Processing Audio recording, processing, and playback capabilities Music apps, voice recording, audio effects, podcast platforms Backend and Cloud Server infrastructure, cloud services, and backend platforms Scalable architecture, data storage, API management, microservices Charts and Graphs Data visualization and charting libraries Dashboard creation, data presentation, business intelligence displays Communication Messaging, chat, and communication tools In-app messaging, video calls, team collaboration, customer support Connected Devices IoT and device connectivity frameworks Smart device integration, sensor data collection, IoT platforms Crash Reporting and Performance Application monitoring, crash tracking, and performance optimization Bug tracking, performance monitoring, stability analysis, error reporting Database and Data Management Data storage, database management, and data processing tools Local storage, cloud databases, data synchronization, caching Developer Frameworks and No Code Development Development frameworks and low-code/no-code platforms Rapid app development, cross-platform frameworks, visual development Developer Tools Development utilities, testing frameworks, and build tools Code quality, testing automation, build processes, development workflow Gaming and Game Engines Game development platforms, engines, and gaming-specific tools Game creation, physics engines, multiplayer systems, game analytics Image Processing Image manipulation, editing, and processing capabilities Photo editing, image filters, computer vision, media processing Location and Maps GPS, mapping, and location-based services Navigation apps, location tracking, geofencing, mapping visualization Marketing Automation Marketing campaign automation and user engagement platforms Email marketing, push campaigns, user journey automation, retention Networking Network communication, HTTP clients, and connectivity tools API integration, network optimization, offline capabilities, data sync Payments and Commerce Payment processing, e-commerce, and financial transaction tools In-app purchases, payment gateways, subscription billing, fraud prevention Push Notifications Push notification delivery and management platforms User re-engagement, real-time alerts, personalized messaging campaigns Scanners and OCR Optical Character Recognition and scanning capabilities Document scanning, text extraction, barcode reading, receipt processing Security and Privacy Security frameworks, encryption, and privacy protection tools Data encryption, secure storage, privacy compliance, threat detection Social Social media integration and social networking features Social login, content sharing, social analytics, community features Survey Survey creation, feedback collection, and polling tools User feedback, market research, customer satisfaction, polling systems Text Processing Text analysis, natural language processing, and content management Content moderation, text analytics, language detection, sentiment analysis User Authentication User login, identity management, and authentication systems Single sign-on, biometric authentication, identity verification, access control User Interface and Graphics UI components, graphics rendering, and visual design tools Custom UI elements, animations, graphics rendering, design systems User Support and CRM Customer support, help desk, and customer relationship management Live chat, ticketing systems, customer feedback, support automation Video Processing and Streaming Video processing, streaming, and multimedia capabilities Video streaming, live broadcasting, video editing, media players Complete SDK Directory The following table contains all 2,100 SDKs supported by Similarweb’s App Technographics dataset. SDKs are listed alphabetically with their unique identifiers and platform availability. ID Category Android Name / Availability iOS Name / Availability hms-live Communication,Video Processing and Streaming 100ms SDK 100ms SDK 1password-extension Security and Privacy - 1Password Extension SDK threesixtydialog User Support and CRM 360Dialog SDK 360Dialog SDK 5rocks Analytics 5Rocks by Tapjoy SDK 5Rocks by Tapjoy SDK aacplayer Audio Processing AACPlayer SDK - aarki Marketing Automation Aarki SDK Aarki SDK abbyy Scanners and OCR ABBYY SDK ABBYY SDK aboutlibraries Developer Tools AboutLibraries SDK - abtasty A/B Testing ABTasty SDK ABTasty SDK accengage Ad Networks Accengage Ad4Screen SDK Accengage Ad4Screen SDK achartengine Charts and Graphs AChartEngine SDK - aciworldwide Payments and Commerce ACI Worldwide SDK ACI Worldwide SDK acquireio User Support and CRM Acquire SDK Acquire SDK acra Crash Reporting and Performance ACRA SDK - acrcloud Security and Privacy ACRCloud SDK - actigraph Connected Devices ActiGraph SDK ActiGraph SDK action-bar-for-android User Interface and Graphics Action Bar for Android SDK - actionbar-pulltorefresh User Interface and Graphics ActionBar-PullToRefresh SDK - actionbarsherlock User Interface and Graphics ActionBarSherlock SDK - actionsheetpicker User Interface and Graphics - ActionSheetPicker SDK activeandroid Database and Data Management ActiveAndroid SDK - actv8me Analytics Actv8me SDK - acuant Security and Privacy Acuant Identity SDK Acuant Identity SDK adadapted Ad Networks AdAdapted SDK AdAdapted SDK adapty Payments and Commerce Adapty SDK Adapty SDK adbuddiz Ad Networks AdBuddiz SDK AdBuddiz SDK adcash Ad Networks AdCash SDK AdCash SDK adcel Ad Networks AdCel SDK - adchina Ad Networks AdChina SDK AdChina SDK adcolony Ad Networks AdColony SDK AdColony SDK addapptr Ad Networks AddApptr SDK - adfalcon Ad Networks AdFalcon SDK AdFalcon SDK adfit-kakao Ad Networks AdFit by Kakao SDK AdFit by Kakao SDK adflex Ad Networks AdFlex SDK - adform-advertising Ad Networks Adform Advertising SDK Adform Advertising SDK adform-tracking Analytics Adform Tracking SDK Adform Tracking SDK adfurikun Ad Networks Adfurikun SDK Adfurikun SDK adgeneration Ad Networks AdGeneration SDK - adincube Ad Networks AdinCube by Ogury SDK AdinCube by Ogury SDK adinmo Ad Networks AdInMo SDK AdInMo SDK adjoe Ad Networks Adjoe SDK - adjust Attribution Adjust SDK Adjust SDK adlib Ad Networks Adlib SDK - admarvel Ad Networks AdMarvel SDK AdMarvel SDK admitad Ad Networks Admitad Mitgo SDK Admitad Mitgo SDK admix Ad Networks Admix SDK Admix SDK admixer Ad Networks Admixer SDK Admixer SDK admost-amr Ad Networks Admost AMR SDK Admost AMR SDK admuing Ad Networks AdMuing Danmaku SDK AdMuing Danmaku SDK adobe-air Developer Frameworks and No Code Development Adobe AIR SDK Adobe AIR SDK adobe-analytics Analytics Adobe Analytics SDK Adobe Analytics SDK adobe-audience-manager Audience and Data Intelligence Adobe Audience Manager SDK Adobe Audience Manager SDK adobe-exprience-platform Analytics Adobe Experience Platform SDK Adobe Experience Platform SDK adobe-flash-player User Interface and Graphics Adobe Flash Player SDK - adobe-marketing-cloud Analytics Adobe Marketing Cloud SDK Adobe Marketing Cloud SDK adobe-primetime-auditude Ad Networks Adobe Primetime (Auditude) SDK Adobe Primetime (Auditude) SDK adobe-target A/B Testing Adobe Target SDK Adobe Target SDK adobe-experience-manager Developer Tools Adobe XMP Toolkit SDK - adot Ad Networks Adot SDK Adot SDK adpopcorn Analytics adPOPcorn AdBrix Igawork SDK adPOPcorn AdBrix Igawork SDK adresult Ad Networks Adresult SDK - adscend Ad Networks Adscend Media SDK Adscend Media SDK adsmogo Ad Networks AdsMogo SDK AdsMogo SDK adstir Ad Networks AdStir SDK AdStir SDK adswizz Ad Networks AdsWizz SDK AdsWizz SDK adtapsy Ad Networks Adtapsy SDK Adtapsy SDK adtiming Ad Mediation AdTiming OpenMediation SDK AdTiming OpenMediation SDK adtoapp Ad Networks AdToApp SDK - adtransitioncontroller User Interface and Graphics - ADTransitionController SDK advanced-recyclerview User Interface and Graphics Advanced RecyclerView SDK - adverty Ad Networks Adverty SDK Adverty SDK adview-sdk Ad Networks AdView SDK - adwhirl Ad Networks AdWhirl SDK AdWhirl SDK adwo Ad Networks Adwo SDK - adyen Payments and Commerce Adyen 3DS2 3D Secure SDK Adyen 3DS2 3D Secure SDK aerisweather Connected Devices AerisWeather SDK AerisWeather SDK aerserv Ad Networks AerServ SDK AerServ SDK aescrypt Security and Privacy AESCrypt SDK AESCrypt SDK affirm Payments and Commerce Affirm SDK Affirm SDK affise Attribution Affise SDK Affise SDK afilechooser User Interface and Graphics aFileChooser SDK - afnetworking Networking - AFNetworking SDK afnetworking-synchronous Networking - AFNetworking-Synchronous SDK afterpay Payments and Commerce Afterpay SDK Afterpay SDK afviewshaker User Interface and Graphics - AFViewShaker SDK agoop Location and Maps Agoop SDK - agora-io Communication Agora.io SDK Agora.io SDK ahbottomnavigation User Interface and Graphics AHBottomNavigation SDK - ahkactionsheet User Interface and Graphics - AHKActionSheet SDK ahoy-rtc Communication Ahoy SDK Ahoy SDK airbridge Attribution Airbridge SDK Airbridge SDK airpush Ad Networks AirPush Airnowmedia SDK - aitype-keyboard-theme-sdk User Interface and Graphics aitype Keyboard Theme SDK - alamofire Networking - Alamofire SDK alamofireimage Image Processing - AlamofireImage SDK alamofirenetworkactivityindicator User Interface and Graphics - AlamofireNetworkActivityIndicator SDK alamofireobjectmapper Networking - AlamofireObjectMapper SDK alertdialogpro User Interface and Graphics AlertDialogPro SDK - alxad Ad Networks AlgoriX SDK - alibaba-cloud-oss-sdk Backend and Cloud Alibaba Cloud Aliyun OSS SDK Alibaba Cloud Aliyun OSS SDK alibaba-sophix Security and Privacy Alibaba Cloud Sophix SDK - fastjson Text Processing Alibaba Fastjson SDK - alipay Payments and Commerce Alipay SDK Alipay SDK allowme Security and Privacy AllowMe SDK AllowMe SDK aloe-stack-view User Interface and Graphics - AloeStackView SDK alohalytics Analytics Alohalytics SDK Alohalytics SDK alooma Analytics - Alooma SDK alphonso Audience and Data Intelligence Alphonso SDK Alphonso SDK altamobile-altamob Ad Networks Altamobile Altamob SDK - radius-networks Location and Maps AltBeacon by Radius Networks SDK AltBeacon by Radius Networks SDK altoastview User Interface and Graphics - ALToastView SDK amazon-ads Ad Networks Amazon Ads - Transparent Ad Marketplace SDK Amazon Ads - Transparent Ad Marketplace SDK amazon-aws Backend and Cloud Amazon AWS SDK Amazon AWS SDK amazon-amplify Backend and Cloud Amazon AWS Amplify Framework SDK Amazon AWS Amplify Framework SDK aws-cognito User Authentication Amazon AWS Cognito Federated Identities SDK Amazon AWS Cognito Federated Identities SDK aws-kinesis Backend and Cloud Amazon AWS Kinesis SDK Amazon AWS Kinesis SDK amazon-in-app-purchasing Payments and Commerce Amazon In-App Purchasing SDK - amazon-pay Payments and Commerce Amazon Pay SDK - amazon-pinpoint Analytics Amazon Pinpoint Mobile Analytics SDK Amazon Pinpoint Mobile Analytics SDK amazon-aps Ad Networks Amazon Publisher Services SDK Amazon Publisher Services SDK amazon-sns Push Notifications Amazon Simple Notification Service SNS SDK Amazon Simple Notification Service SNS SDK amity Social Amity Social Cloud SDK Amity Social Cloud SDK amoad Ad Networks AMoAd SDK AMoAd SDK amobee Ad Networks Amobee by Nexxen SDK - ampirisdk Ad Networks Ampiri SDK Ampiri SDK amplitude Analytics Amplitude SDK Amplitude SDK ampoptip User Interface and Graphics - AMPopTip SDK anagog Location and Maps Anagog SDK Anagog SDK andengine Gaming and Game Engines AndEngine SDK - android-asynchronous-http-client Networking Android Asynchronous Http Client SDK - android-asynchronous-networking-and-image-loading Networking Android Asynchronous Networking and Image Loading SDK - android-auto-scroll-viewpager User Interface and Graphics Android Auto Scroll ViewPager SDK - android-color-picker User Interface and Graphics Android Color Picker SDK - android-design-support-library User Interface and Graphics Android Design Support Library SDK - android-disk-lru-cache Database and Data Management Android Disk LRU Cache SDK - android-flow-layout User Interface and Graphics Android flow layout SDK - android-image-slider User Interface and Graphics Android Image Slider SDK - android-maps-extensions Location and Maps Android Maps Extensions SDK - android-mapview-balloons Location and Maps Android MapView Balloons SDK - android-material-app-rating User Interface and Graphics Android Material App Rating SDK - android-pdfview Image Processing Android PDFView SDK - android-pickphotos Image Processing Android PickPhotos SDK - android-priority-job-queue Developer Tools Android Priority Job Queue SDK - android-saripaar Developer Tools Android Saripaar SDK - android-smart-image-view User Interface and Graphics Android Smart Image View SDK - android-sqlite Database and Data Management Android Sqlite SDK - android-sqliteassethelper Database and Data Management Android SQLiteAssetHelper SDK - android-stackblur Image Processing Android Stackblur SDK - android-support-library-v13 User Interface and Graphics Android Support Library V13 SDK - android-support-library-v17 User Interface and Graphics Android Support Library V17 Leanback for TV SDK - android-support-library-v4 User Interface and Graphics Android Support Library V4 SDK - android-support-library-v7 User Interface and Graphics Android Support Library V7 SDK - android-switch-preference-backport User Interface and Graphics Android Switch Preference Backport SDK - android-tooltip User Interface and Graphics Android Tooltip SDK - android-ui-library User Interface and Graphics Android UI Library SDK - updatechecker-lib Developer Tools Android Update Checker SDK - android-viewbadger User Interface and Graphics Android ViewBadger SDK - android-zooming-view User Interface and Graphics Android zooming view SDK - android-advancedwebview User Interface and Graphics Android-AdvancedWebView SDK - android-bitmapcache Image Processing Android-BitmapCache SDK - android-bootstrap User Interface and Graphics Android-Bootstrap SDK - android-disk-multi-cache Database and Data Management android-disk-multi-cache SDK - android-easing User Interface and Graphics Android-Easing SDK - android-exif-extended Image Processing Android-Exif-Extended SDK - android-gif-drawable Image Processing android-gif-drawable SDK - android-gifview Image Processing android-gifview SDK - android-horizontallistview User Interface and Graphics Android-HorizontalListView SDK - android-iconics User Interface and Graphics Android-Iconics SDK - android-image-cache Image Processing Android-Image-Cache SDK - android-image-cropper Image Processing Android-Image-Cropper SDK - android-numberpicker User Interface and Graphics android-numberpicker SDK - android-pulltorefresh User Interface and Graphics Android-PullToRefresh SDK - android-rate User Interface and Graphics Android-Rate SDK - android-reactivelocation Location and Maps Android-ReactiveLocation SDK - android-robototextview User Interface and Graphics Android-RobotoTextView SDK - android-roundcornerprogressbar User Interface and Graphics Android-RoundCornerProgressBar SDK - android-segmented User Interface and Graphics Android-Segmented SDK - android-spinkit User Interface and Graphics Android-SpinKit SDK - android-sqlite-connector Database and Data Management Android-sqlite-connector SDK - androidasync Networking AndroidAsync SDK - androidpdfviewer Image Processing AndroidPdfViewer SDK - androidplot Charts and Graphs androidplot SDK - androidprocesses Developer Tools AndroidProcesses SDK - androidslidinguppanel User Interface and Graphics AndroidSlidingUpPanel SDK - androidstaggeredgrid User Interface and Graphics AndroidStaggeredGrid SDK - androidsvg Image Processing AndroidSVG SDK - androidswipelayout User Interface and Graphics AndroidSwipeLayout SDK - androidtouchgallery User Interface and Graphics AndroidTouchGallery SDK - androidviewanimations User Interface and Graphics AndroidViewAnimations SDK - animal-sniffer Developer Tools Animal Sniffer SDK - animatedcircleloadingview User Interface and Graphics AnimatedCircleLoadingView SDK - animation-easing-functions User Interface and Graphics Animation Easing Functions SDK - anjlab-android-in-app-billing-v3 Payments and Commerce Anjlab Android In-App Billing v3 SDK - anvato Video Processing and Streaming Anvato Player SDK Anvato Player SDK anyip Networking anyIP SDK - anyline-sdk Scanners and OCR Anyline SDK Anyline SDK anysdk-framework Developer Frameworks and No Code Development AnySDK Framework - anzu Gaming and Game Engines Anzu SDK Anzu SDK apache-commons-codec Text Processing Apache Commons Codec SDK - apache-commons Developer Tools Apache Commons IO SDK - apache-commons-lang Text Processing Apache Commons Lang SDK - cordova Developer Frameworks and No Code Development Apache Cordova PhoneGap SDK Apache Cordova PhoneGap SDK apache-httpcomponents Networking Apache HttpComponents SDK - apache-thrift Networking Apache Thrift SDK - apaddressbook User Interface and Graphics - APAddressBook SDK apnumberpad User Interface and Graphics - APNumberPad SDK apollo Backend and Cloud Apollo GraphQL SDK Apollo GraphQL SDK apparallaxheader User Interface and Graphics - APParallaxHeader SDK appauth User Authentication AppAuth by OpenID SDK AppAuth by OpenID SDK appavailability Developer Tools AppAvailability SDK - appbrain Analytics AppBrain SDK - appcelerator-titanium Developer Frameworks and No Code Development Appcelerator Titanium SDK Appcelerator Titanium SDK appconsent Security and Privacy AppConsent by SFBX SDK AppConsent by SFBX SDK appcues User Interface and Graphics Appcues SDK Appcues SDK appdynamics Crash Reporting and Performance AppDynamics SDK - appgate Security and Privacy Appgate SDK Appgate SDK appgrow Marketing Automation AppGrow SDK - apphud Payments and Commerce AppHud SDK AppHud SDK appia-by-digital-turbine Ad Networks Appia by Digital Turbine SDK Appia by Digital Turbine SDK appier Analytics Appier SDK Appier SDK appintro User Interface and Graphics AppIntro SDK - appirater User Interface and Graphics Appirater SDK Appirater SDK applause Developer Tools Applause SDK Applause SDK apple-accounts User Authentication - Apple Accounts SDK apple-adservices Attribution - Apple AdServices Search Ads SDK apple-app-tracking-transparency Attribution - Apple AppTrackingTransparency SDK apple-arkit AR and VR - Apple ARKit SDK apple-avfoundation Video Processing and Streaming - Apple AVFoundation SDK apple-core-bluetooth Connected Devices - Apple Core Bluetooth SDK apple-core-data Database and Data Management - Apple Core Data SDK apple-corefoundation Developer Tools - Apple Core Foundation SDK apple-coregraphics Image Processing - Apple Core Graphics SDK apple-core-ml Developer Tools - Apple Core ML SDK apple-gamekit Gaming and Game Engines - Apple GameKit SDK apple-healthkit Connected Devices - Apple HealthKit SDK apple-iad Ad Networks - Apple iAd SDK apple-mapkit Location and Maps - Apple MapKit SDK apple-passkit Payments and Commerce - Apple PassKit (Apple Pay and Wallet) SDK apple-researchkit Connected Devices - Apple ResearchKit and CareKit SDK apple-spritekit Gaming and Game Engines - Apple SpriteKit SDK apple-storekit Payments and Commerce - Apple StoreKit In-App Purchases SDK apple-swift Developer Tools - Apple Swift Framework SDK apple-uikit User Interface and Graphics - Apple UIKit SDK apple-watchconnectivity Connected Devices - Apple WatchConnectivity SDK apple-webkit User Interface and Graphics - Apple WebKit SDK applicaster Developer Frameworks and No Code Development Applicaster SDK Applicaster SDK applift-playads Ad Networks AppLift PlayAds SDK AppLift PlayAds SDK applike-advertising-id Attribution Applike Advertising Id for React Native SDK - applivery Developer Tools Applivery SDK Applivery SDK applovin Ad Networks AppLovin MAX SDK AppLovin MAX SDK applovin-mediation-adcolony Ad Mediation AppLovin Mediation Adapter for AdColony SDK AppLovin Mediation Adapter for AdColony SDK applovin-mediation-admob Ad Mediation AppLovin Mediation Adapter for AdMob SDK AppLovin Mediation Adapter for AdMob SDK applovin-mediation-bigo Ad Mediation AppLovin Mediation Adapter for Bigo SDK AppLovin Mediation Adapter for Bigo SDK applovin-mediation-chartboost Ad Mediation AppLovin Mediation Adapter for Chartboost SDK AppLovin Mediation Adapter for Chartboost SDK applovin-mediation-facebook Ad Mediation AppLovin Mediation Adapter for Facebook SDK AppLovin Mediation Adapter for Facebook SDK applovin-mediation-inmobi Ad Mediation AppLovin Mediation Adapter for inMobi SDK AppLovin Mediation Adapter for inMobi SDK applovin-mediation-ironsource Ad Mediation AppLovin Mediation Adapter for IronSource SDK AppLovin Mediation Adapter for IronSource SDK applovin-mediation-liftoff-vungle Ad Mediation AppLovin Mediation Adapter for Liftoff Vungle SDK AppLovin Mediation Adapter for Liftoff Vungle SDK applovin-mediation-mintegral Ad Mediation AppLovin Mediation Adapter for Mintegral SDK AppLovin Mediation Adapter for Mintegral SDK applovin-mediation-mytarget Ad Mediation AppLovin Mediation Adapter for myTarget SDK AppLovin Mediation Adapter for myTarget SDK applovin-mediation-smaato Ad Mediation AppLovin Mediation Adapter for Smaato SDK AppLovin Mediation Adapter for Smaato SDK applovin-mediation-tapjoy Ad Mediation AppLovin Mediation Adapter for Tapjoy SDK AppLovin Mediation Adapter for Tapjoy SDK applovin-mediation-unity-ads Ad Mediation AppLovin Mediation Adapter for Unity Ads SDK AppLovin Mediation Adapter for Unity Ads SDK applovin-mediation-yandex Ad Mediation AppLovin Mediation Adapter for Yandex SDK AppLovin Mediation Adapter for Yandex SDK applovin-mediation Ad Mediation AppLovin Mediation Adapters SDK AppLovin Mediation Adapters SDK applozic User Support and CRM Applozic SDK Applozic SDK appmanago Marketing Automation AppManago SalesManago SDK AppManago SalesManago SDK appmediation Ad Mediation Appmediation SDK - appmk Ad Networks AppMK SDK - appmonet-sdk Ad Networks AppMonet SDK - appnext Ad Networks AppNext SDK AppNext SDK appnexus Ad Networks AppNexus SDK AppNexus SDK appodeal Ad Networks Appodeal SDK Appodeal SDK appodeal-mediation-adcolony Ad Mediation Appodeal Mediation Adapter for AdColony SDK Appodeal Mediation Adapter for AdColony SDK appodeal-mediation-admob Ad Mediation Appodeal Mediation Adapter for AdMob SDK Appodeal Mediation Adapter for AdMob SDK appodeal-mediation-applovin Ad Mediation Appodeal Mediation Adapter for AppLovin SDK Appodeal Mediation Adapter for AppLovin SDK appodeal-mediation-bigo Ad Mediation Appodeal Mediation Adapter for Bigo SDK - appodeal-mediation-chartboost Ad Mediation Appodeal Mediation Adapter for Chartboost SDK Appodeal Mediation Adapter for Chartboost SDK appodeal-mediation-facebook Ad Mediation Appodeal Mediation Adapter for Facebook SDK Appodeal Mediation Adapter for Facebook SDK appodeal-mediation-inmobi Ad Mediation Appodeal Mediation Adapter for inMobi SDK Appodeal Mediation Adapter for inMobi SDK appodeal-mediation-ironsource Ad Mediation Appodeal Mediation Adapter for IronSource SDK Appodeal Mediation Adapter for IronSource SDK appodeal-mediation-liftoff-vungle Ad Mediation Appodeal Mediation Adapter for Liftoff Vungle SDK Appodeal Mediation Adapter for Liftoff Vungle SDK appodeal-mediation-mintegral Ad Mediation Appodeal Mediation Adapter for Mintegral SDK - appodeal-mediation-mytarget Ad Mediation Appodeal Mediation Adapter for myTarget SDK Appodeal Mediation Adapter for myTarget SDK appodeal-mediation-pangle Ad Mediation Appodeal Mediation Adapter for Pangle SDK - appodeal-mediation-smaato Ad Mediation Appodeal Mediation Adapter for Smaato SDK Appodeal Mediation Adapter for Smaato SDK appodeal-mediation-startio Ad Mediation Appodeal Mediation Adapter for Start.io SDK Appodeal Mediation Adapter for Start.io SDK appodeal-mediation-tapjoy Ad Mediation Appodeal Mediation Adapter for Tapjoy SDK Appodeal Mediation Adapter for Tapjoy SDK appodeal-mediation-unity-ads Ad Mediation Appodeal Mediation Adapter for Unity Ads SDK Appodeal Mediation Adapter for Unity Ads SDK appodeal-mediation-yandex Ad Mediation Appodeal Mediation Adapter for Yandex SDK Appodeal Mediation Adapter for Yandex SDK appoxee Push Notifications Appoxee SDK Appoxee SDK apprate User Interface and Graphics AppRate SDK - apprater User Interface and Graphics AppRater SDK - appsamurai Marketing Automation AppSamurai SDK AppSamurai SDK appsealing Security and Privacy AppSealing by INKA Networks SDK AppSealing by INKA Networks SDK appsfire Ad Networks Appsfire SDK Appsfire SDK appsflyer Attribution AppsFlyer SDK AppsFlyer SDK appsgeyser Developer Frameworks and No Code Development AppsGeyser SDK - apptentive User Support and CRM Apptentive SDK Apptentive SDK apptimize A/B Testing Apptimize SDK Apptimize SDK appupdate Developer Tools AppUpdate by Azhon SDK - appypie Developer Frameworks and No Code Development Appy Pie SDK - appyet Developer Frameworks and No Code Development AppYet SDK - apsalar Analytics Apsalar SDK Apsalar SDK apxor User Interface and Graphics Apxor SDK Apxor SDK arcgis Location and Maps ArcGIS Esri SDK ArcGIS Esri SDK areametrics Location and Maps AreaMetrics SDK AreaMetrics SDK argo Developer Tools - Argo SDK ariadnext-idcheck Security and Privacy AriadNext IDCheck SDK AriadNext IDCheck SDK arity Location and Maps Arity Driving Engine SDK Arity Driving Engine SDK arkose-labs Security and Privacy Arkose Labs SDK Arkose Labs SDK armchair User Interface and Graphics - Armchair SDK arouter User Interface and Graphics ARouter by Alibaba SDK - arrowdownloadbutton User Interface and Graphics ArrowDownloadButton SDK - artoolkit AR and VR ARToolKit SDK ARToolKit SDK asihttprequest Networking - ASIHTTPRequest SDK asm Developer Tools ASM SDK - asmack Communication aSmack SDK - aspects Developer Tools - Aspects SDK asta-advertisement-sdk Ad Networks Asta Advertisement SDK - asyncimageview Image Processing - AsyncImageView SDK at-internet Analytics AT Internet by Piano SDK AT Internet by Piano SDK realm Database and Data Management Atlas Device by MongoDB SDK Atlas Device by MongoDB SDK attrackt Analytics - Attrackt SDK au10tix Security and Privacy Au10tix SDK Au10tix SDK au10tix-senticore Security and Privacy Au10tix Senticore SDK Au10tix Senticore SDK audiomob Ad Networks Audiomob SDK Audiomob SDK audiostreamer Audio Processing - AudioStreamer SDK aurasma AR and VR Aurasma SDK Aurasma SDK auth0 User Authentication Auth0 SDK Auth0 SDK authorize Payments and Commerce Authorize by Visa SDK Authorize by Visa SDK autofittextview User Interface and Graphics AutoFitTextView SDK - aviary-adobe-creative-sdk Image Processing - Aviary Adobe Creative SDK avloadingindicatorview User Interface and Graphics AVLoadingIndicatorView SDK - awesomecache Database and Data Management - AwesomeCache SDK axonix-mobclix Ad Networks Axonix (Mobclix) SDK Axonix (Mobclix) SDK ayetstudios Ad Networks Ayet Studios SDK Ayet Studios SDK backelite Analytics Backelite SDK - backendless Backend and Cloud Backendless SDK Backendless SDK baidu-location Location and Maps Baidu Location SDK - baidu-maps Location and Maps Baidu Maps SDK Baidu Maps SDK baidu-mobile-ads Ad Networks Baidu Mobile Ads SDK Baidu Mobile Ads SDK baidu-pushservice Push Notifications Baidu Pushservice SDK - banuba AR and VR Banuba AR SDK Banuba AR SDK barcode-scanner-views Scanners and OCR Barcode Scanner Views SDK - basic-http-client-for-java Networking Basic HTTP Client for Java SDK - batch Push Notifications Batch SDK Batch SDK batmobi Ad Networks BatMobi SDK - bazaarvoice User Support and CRM Bazaarvoice SDK Bazaarvoice SDK bbbadgebarbuttonitem User Interface and Graphics - BBBadgeBarButtonItem SDK bdknotifyhud User Interface and Graphics - BDKNotifyHUD SDK beaconsinspace Location and Maps Beaconsinspace SDK Beaconsinspace SDK bee7 Gaming and Game Engines Bee7 by Outfit7 SDK - beemray Analytics Beemray SDK Beemray SDK behaviosec Security and Privacy BehavioSec by LexisNexis SDK BehavioSec by LexisNexis SDK beintoo Gaming and Game Engines Beintoo SDK - belvedere Image Processing Belvedere SDK - bemcheckbox User Interface and Graphics - BEMCheckBox SDK better-picker User Interface and Graphics Better Picker SDK - beyondidentity User Authentication Beyond Identity SDK Beyond Identity SDK bidmachine Ad Networks BidMachine Appodeal Stack SDK BidMachine Appodeal Stack SDK bidon Ad Networks Bidon SDK Bidon SDK bidstack Ad Networks Bidstack SDK Bidstack SDK bigo Ad Networks BIGO Ads SDK BIGO Ads SDK biocatch Security and Privacy Biocatch SDK Biocatch SDK bitlabs Survey BitLabs SDK BitLabs SDK biznessapps Developer Frameworks and No Code Development BiznessApps SDK - ble Connected Devices BLE Library Bluetooth Low Energy by Nordic SDK - blippar AR and VR Blippar SDK Blippar SDK blockid User Authentication BlockID by 1Kosmos SDK BlockID by 1Kosmos SDK blockskit Developer Tools - BlocksKit SDK bluecats Location and Maps BlueCats SDK BlueCats SDK blueconic Audience and Data Intelligence BlueConic SDK BlueConic SDK bluedot Location and Maps Bluedot SDK Bluedot SDK bluekai Audience and Data Intelligence BlueKai by Oracle Data Cloud SDK BlueKai by Oracle Data Cloud SDK bluesensenetworks Location and Maps BluesenseNetworks SDK - blueshift Marketing Automation Blueshift SDK Blueshift SDK bluetooth-crash-resolver Connected Devices Bluetooth Crash Resolver SDK - blurry Image Processing Blurry SDK - bolts Developer Tools Bolts SDK Bolts SDK bond Developer Tools - Bond SDK bonmot Text Processing - BonMot SDK bottomsheet User Interface and Graphics BottomSheet SDK - bouncer Security and Privacy Bouncer SDK - bouncy-castle-crypto Security and Privacy Bouncy Castle Crypto SDK - box Backend and Cloud Box SDK Box SDK bpxluuidhandler Developer Tools - BPXLUUIDHandler SDK brailleback User Interface and Graphics BrailleBack SDK - braintree Payments and Commerce Braintree SDK Braintree SDK branch-tune Attribution Branch - Tune SDK Branch - Tune SDK appboy Push Notifications Braze Appboy SDK Braze Appboy SDK breakpad Crash Reporting and Performance - Breakpad SDK luminati Audience and Data Intelligence Bright Luminati Data SDK Bright Luminati Data SDK brightcove Video Processing and Streaming Brightcove SDK Brightcove SDK brightfutures Developer Tools - BrightFutures SDK brightroll Ad Networks BrightRoll by Verizon Media SDK BrightRoll by Verizon Media SDK brownfield-react-native-by-callstack Developer Frameworks and No Code Development Brownfield (React Native) by Callstack SDK - bsforwardgeocoder Location and Maps - BSForwardGeocoder SDK bskeyboardcontrols User Interface and Graphics - BSKeyboardControls SDK btnavigationdropdownmenu User Interface and Graphics - BTNavigationDropdownMenu SDK bugfender Crash Reporting and Performance Bugfender SDK Bugfender SDK bugly Crash Reporting and Performance Bugly SDK Bugly SDK bugsee Crash Reporting and Performance Bugsee SDK Bugsee SDK bugsense Crash Reporting and Performance BugSense SDK BugSense SDK bugsnag Crash Reporting and Performance Bugsnag SDK Bugsnag SDK build38 Security and Privacy Build38 SDK - bureau Security and Privacy Bureau SDK Bureau SDK butter-knife Developer Tools Butter Knife SDK - button Payments and Commerce Button SDK Button SDK buzzvil Ad Networks Buzzvil SDK Buzzvil SDK bytebuddy Developer Tools Byte Buddy SDK - bytebrew Analytics ByteBrew SDK ByteBrew SDK caldroid User Interface and Graphics Caldroid SDK - calldorado Communication Calldorado SDK - calligraphy User Interface and Graphics Calligraphy SDK - calloutview User Interface and Graphics - Calloutview SDK callsign Security and Privacy CallSign SDK CallSign SDK capacitor Developer Frameworks and No Code Development Capacitor SDK Capacitor SDK capptain Analytics Capptain SDK Capptain SDK caramelads Ad Networks CaramelAds SDK - carbondata Database and Data Management CarbonData SDK - carbonkit Developer Tools - CarbonKit SDK card-io Payments and Commerce Card.io SDK Card.io SDK cardinal-mobile Payments and Commerce Cardinal Mobile by Visa SDK Cardinal Mobile by Visa SDK cardslib User Interface and Graphics Cardslib SDK - cargobay Backend and Cloud - CargoBay SDK carnival Marketing Automation Carnival SDK Carnival SDK carto Location and Maps Carto Mobile Maps SDK Carto Mobile Maps SDK cartography User Interface and Graphics - Cartography SDK castle Security and Privacy Castle SDK Castle SDK catappult Ad Networks Catappult SDK - catchoom-craftar AR and VR Catchoom CraftAR SDK Catchoom CraftAR SDK cauli Developer Tools - Cauli SDK cauly Ad Networks Cauly SDK - ccaradialgradientlayer User Interface and Graphics - CCARadialGradientLayer SDK cellrebel Communication CellRebel SDK CellRebel SDK centrixlink Audience and Data Intelligence Centrixlink SDK Centrixlink SDK chameleon User Interface and Graphics - Chameleon SDK chargebee Payments and Commerce Chargebee SDK Chargebee SDK chartbeat Analytics Chartbeat SDK Chartbeat SDK chartboost Ad Networks Chartboost SDK Chartboost SDK charts Charts and Graphs - Charts SDK chatsdk Communication Chat SDK Chat SDK checkerframework Developer Tools Checker Framework SDK - checkout Payments and Commerce Checkout.com SDK Checkout.com SDK checkversionlib Developer Tools CheckVersionLib SDK - cheetah-mobile-ads Ad Networks Cheetah Mobile Ads SDK Cheetah Mobile Ads SDK chipmunk2d Gaming and Game Engines - Chipmunk2d SDK chromium User Interface and Graphics Chromium SDK - chtcollectionviewwaterfalllayout User Interface and Graphics - CHTCollectionViewWaterfallLayout SDK cicerone User Interface and Graphics Cicerone SDK - cintric-sdk-by-ubermedia Audience and Data Intelligence Cintric SDK by Ubermedia Cintric SDK by Ubermedia circleimageview User Interface and Graphics CircleImageView SDK - circleindicator User Interface and Graphics CircleIndicator SDK - circleprogress User Interface and Graphics CircleProgress SDK - circleview User Interface and Graphics CircleView SDK - circularfloatingactionmenu User Interface and Graphics CircularFloatingActionMenu SDK - circularimageview User Interface and Graphics CircularImageView SDK - circularprogressbar User Interface and Graphics CircularProgressBar SDK - circularreveal User Interface and Graphics CircularReveal SDK - citrus-payment Payments and Commerce Citrus Payment SDK Citrus Payment SDK ckcalendar User Interface and Graphics - CKCalendar SDK cleafy Security and Privacy Cleafy SDK Cleafy SDK clearbid-sdk-by-ubermedia Audience and Data Intelligence ClearBid SDK by Ubermedia ClearBid SDK by Ubermedia clearblade Backend and Cloud ClearBlade SDK ClearBlade SDK cleverpush Push Notifications CleverPush SDK CleverPush SDK clevertap Marketing Automation CleverTap SDK CleverTap SDK climageeditor Image Processing - CLImageEditor SDK firebase-storage Backend and Cloud Cloud Storage for Firebase SDK Cloud Storage for Firebase SDK cloudinary Image Processing Cloudinary SDK Cloudinary SDK cloudonix Communication Cloudonix SDK - cloudrail Backend and Cloud Cloudrail SDK Cloudrail SDK cmmaplauncher Location and Maps - CMMapLauncher SDK cobrowse User Support and CRM Cobrowse SDK Cobrowse SDK cocoa-oauth User Authentication - cocoa-oauth SDK cocoaasyncsocket Networking - CocoaAsyncSocket SDK cocoahttpserver Networking - CocoaHTTPServer SDK cocoalumberjack Developer Tools - CocoaLumberjack SDK cocos2d-x Gaming and Game Engines Cocos2D-X SDK Cocos2D-X SDK code-scanner Scanners and OCR Code Scanner SDK - codepush Developer Tools CodePush by Microsoft SDK CodePush by Microsoft SDK coil Image Processing Coil SDK - coinbase Payments and Commerce Coinbase SDK Coinbase SDK colocator Location and Maps Colocator SDK Colocator SDK color-picker-android User Interface and Graphics Color Picker Android SDK - color-picker-view User Interface and Graphics color-picker-view SDK - colorpickerpreference User Interface and Graphics ColorPickerPreference SDK - colours User Interface and Graphics - Colours SDK com-dd-plist Developer Tools com.dd.plist SDK - cometchat Communication CometChat SDK CometChat SDK commentsold Payments and Commerce CommentSold SDK CommentSold SDK comscore-analytics Analytics Comscore Analytics SDK Comscore Analytics SDK facebook-conceal Security and Privacy Conceal by Facebook SDK - confiant Security and Privacy Confiant SDK Confiant SDK connatix-player Video Processing and Streaming Connatix Player SDK Connatix Player SDK connectsdk Connected Devices Connect SDK - consoliads Ad Networks ConsoliAds SDK ConsoliAds SDK contentful Backend and Cloud Contentful SDK Contentful SDK clicktale Analytics Contentsquare SDK Contentsquare SDK contextsdk Analytics - Context SDK contexthub Location and Maps ContextHub SDK ContextHub SDK conviva Video Processing and Streaming Conviva SDK Conviva SDK cordova-local-notifications Push Notifications Cordova Local Notifications SDK - cordova-plugin-apprate User Interface and Graphics Cordova Plugin Apprate SDK - cordova-sms-plugin Communication Cordova SMS Plugin SDK - cordova-sqlite-storage-plugin Database and Data Management Cordova sqlite storage plugin SDK - cordovaclipboard User Interface and Graphics CordovaClipboard SDK - core-plot Charts and Graphs - Core Plot SDK cortana Communication Cortana by Microsoft SDK Cortana by Microsoft SDK cortex Analytics Cortex Decoder SDK Cortex Decoder SDK cosmos User Interface and Graphics - Cosmos SDK couchbase Database and Data Management Couchbase Lite SDK Couchbase Lite SDK countly Analytics Countly SDK Countly SDK coversant Audience and Data Intelligence Coversant Epsilon SDK Coversant Epsilon SDK imgly-creativeeditor Image Processing CreativeEditor by IMG.LY SDK CreativeEditor by IMG.LY SDK crisp User Support and CRM Crisp Chat SDK Crisp Chat SDK criteo-publisher Ad Networks Criteo Publisher SDK Criteo Publisher SDK cropimage Image Processing Cropimage SDK - cropper Image Processing Cropper SDK - crosschannel-mdotm Communication Crosschannel (MDotM) SDK Crosschannel (MDotM) SDK crosswalk-project User Interface and Graphics Crosswalk Project SDK - crtoast User Interface and Graphics - CRToast SDK cryptoswift Security and Privacy - CryptoSwift SDK csstickyheaderflowlayout User Interface and Graphics - CSStickyHeaderFlowLayout SDK ctassetspickercontroller Image Processing - CTAssetsPickerController SDK ctvideoplayerview Video Processing and Streaming - CTVideoPlayerView SDK cuebiq Location and Maps Cuebiq SDK Cuebiq SDK cupertinoyankee User Interface and Graphics - CupertinoYankee SDK customer-io Marketing Automation Customer.io SDK Customer.io SDK customerly User Support and CRM Customerly SDK Customerly SDK cwstatusbarnotification User Interface and Graphics - CWStatusBarNotification SDK cxml Text Processing - CXML SDK cyberlink-sdk Video Processing and Streaming CyberLink SDK - cybersource Payments and Commerce CyberSource Simple Order SDK - dacircularprogress User Interface and Graphics - DACircularProgress SDK dagger Developer Tools Dagger SDK - daily Communication Daily SDK Daily SDK daon Security and Privacy Daon SDK Daon SDK datadog Crash Reporting and Performance Datadog SDK Datadog SDK datadroid Backend and Cloud DataDroid SDK - datatrans Payments and Commerce Datatrans SDK - datavisor Security and Privacy DataVisor dEdge SDK DataVisor dEdge SDK date4j Developer Tools Date4j SDK - datepicker-plugin-for-cordova User Interface and Graphics DatePicker Plugin for Cordova SDK - datetimepicker User Interface and Graphics DateTimePicker SDK - datetools Developer Tools - DateTools SDK dbcamera Image Processing - DBCamera SDK dbflow Database and Data Management DBFlow SDK - ddprogressview User Interface and Graphics - DDProgressView SDK deepar AR and VR DeepAR SDK DeepAR SDK deeplinkkit User Interface and Graphics - DeepLinkKit SDK deezer-music-sdk Audio Processing Deezer Music SDK - deltadna Analytics DeltaDNA SDK DeltaDNA SDK devrev-plug User Support and CRM DevRev PLuG SDK DevRev PLuG SDK devsmartlib Developer Tools DevsmartLib SDK - devtodev Analytics Devtodev SDK Devtodev SDK dexter Security and Privacy Dexter SDK - nordic-dfu Connected Devices DFU Library by Nordic SDK DFU Library by Nordic SDK dgactivityindicatorview User Interface and Graphics - DGActivityIndicatorView SDK dialogplus User Interface and Graphics DialogPlus SDK - didomi Security and Privacy Didomi SDK Didomi SDK digitalturbine-ignite Ad Networks Digital Turbine Ignite SDK - digitalelement Location and Maps DigitalElement SDK - digitalocean Backend and Cloud Digitalocean SDK - discreteseekbar User Interface and Graphics DiscreteSeekBar SDK - display-io Ad Networks Display.io SDK Display.io SDK dkimagepickercontroller Image Processing - DKImagePickerController SDK dlstarrating User Interface and Graphics - DLStarRating SDK dmactivityinstagram Social - DMActivityInstagram SDK docusign Security and Privacy DocuSign SDK DocuSign SDK docutain Scanners and OCR Docutain SDK Docutain SDK dolby-audio-api Audio Processing Dolby Audio API SDK - domob Ad Networks Domob SDK Domob SDK douaudiostreamer Audio Processing - DOUAudioStreamer SDK doubleverify Security and Privacy DoubleVerify SDK - draggablecollectionview User Interface and Graphics - DraggableCollectionView SDK dragsortlistview User Interface and Graphics DragSortListView SDK - driversiti Location and Maps Driversiti SDK Driversiti SDK dropbox Backend and Cloud Dropbox SDK Dropbox SDK dropdown User Interface and Graphics - DropDown SDK fyber-marketplace Ad Networks DT Exchange by Digital Turbine SDK DT Exchange by Digital Turbine SDK dtcoretext Text Processing - DTCoreText SDK dtfoundation Developer Tools - DTFoundation SDK du-ad-platform Ad Networks DU Ad Platform SDK - dxalertview User Interface and Graphics - DXAlertView SDK dynamicyield A/B Testing Dynamic Yield SDK Dynamic Yield SDK dynamsoft Scanners and OCR Dynamsoft Barcode Reader SDK Dynamsoft Barcode Reader SDK dynatrace Crash Reporting and Performance Dynatrace SDK Dynatrace SDK dyte Communication Dyte SDK Dyte SDK eaintroview User Interface and Graphics - EAIntroView SDK easemob Communication Easemob SDK Easemob SDK easyandroidanimations User Interface and Graphics EasyAndroidAnimations SDK - easyar AR and VR EasyAR SDK EasyAR SDK easypermissions Security and Privacy EasyPermissions SDK - easytipview User Interface and Graphics - EasyTipView SDK ecslidingviewcontroller User Interface and Graphics - ECSlidingViewController SDK egodatabase Database and Data Management - EGODatabase SDK egotableviewpullrefresh User Interface and Graphics - EGOTableViewPullRefresh SDK ejecta Gaming and Game Engines - Ejecta SDK elcimagepickercontroller Image Processing - ELCImagePickerController SDK elephantdata Analytics ElephantData SDK - emarsys-mobile-engage Marketing Automation Emarsys Mobile Engage SDK Emarsys Mobile Engage SDK emarsys-predict Marketing Automation Emarsys Predict SDK Emarsys Predict SDK embrace Crash Reporting and Performance Embrace SDK Embrace SDK emojicon User Interface and Graphics Emojicon SDK - enablex Communication EnableX SDK EnableX SDK engine-io Communication Engine.IO SDK - enhance-sdk Ad Networks Enhance SDK Enhance SDK enhancedlistview User Interface and Graphics EnhancedListView SDK - ensighten Analytics Ensighten SDK Ensighten SDK epom-apps Ad Networks Epom Apps SDK - epoxy User Interface and Graphics Epoxy by AirBnB SDK - epublib Text Processing epublib SDK - errorview User Interface and Graphics ErrorView SDK - estimote Location and Maps Estimote SDK Estimote SDK eulerian Analytics Eulerian Analytics SDK Eulerian Analytics SDK eureka User Interface and Graphics - Eureka SDK eventbus Developer Tools EventBus SDK - evernote Backend and Cloud Evernote SDK Evernote SDK evernote-job Developer Tools Evernote Android Job SDK - everyplay Gaming and Game Engines Everyplay SDK Everyplay SDK exomedia Video Processing and Streaming ExoMedia SDK - exoplayer Video Processing and Streaming ExoPlayer SDK - expandable-recyclerview User Interface and Graphics Expandable RecyclerView SDK - expo-modules Developer Frameworks and No Code Development Expo SDK Expo SDK exponea Analytics Exponea SDK Exponea SDK ezaudio Audio Processing - EZAudio SDK fabric Crash Reporting and Performance Fabric SDK - fabric-answers Analytics Fabric Answers SDK Fabric Answers SDK fabric-appsee Analytics Fabric Appsee SDK - fabric-digits User Authentication Fabric Digits SDK - facebook Social Facebook SDK Facebook SDK facebook-accountkit User Authentication Facebook Account Kit (deprecated) SDK - facebook-aem Attribution - Facebook Aggregated Event Management (AEM) SDK facebook-audience-network Ad Networks Facebook Audience Network SDK Facebook Audience Network SDK facebook-audience-sdk-react-native-by-callstack Ad Networks Facebook Audience SDK (React Native) by Callstack - facebook-fresco Image Processing Facebook Fresco SDK - facebook-yoga User Interface and Graphics Facebook Yoga SDK - facetec Security and Privacy Facetec SDK Facetec SDK faceunity AR and VR Faceunity SDK Faceunity SDK factual Location and Maps Factual SDK Factual SDK fanatics Payments and Commerce Fanatics SDK Fanatics SDK fancybuttons User Interface and Graphics Fancybuttons SDK - fancycoverflow User Interface and Graphics FancyCoverFlow SDK - fastadapter User Interface and Graphics FastAdapter SDK - fastimagecache Image Processing - FastImageCache SDK fbutton User Interface and Graphics FButton SDK - fcfilemanager Backend and Cloud - FCFileManager SDK fcuuid Developer Tools - FCUUID SDK feedad Video Processing and Streaming Feedad Outstream Video SDK Feedad Outstream Video SDK ffmpeg-android-java Video Processing and Streaming FFmpeg-Android-Java SDK - fhstwitterengine Social - FHSTwitterEngine SDK fidzup Location and Maps Fidzup SDK Fidzup SDK fiksu Ad Networks Fiksu BidMind SDK Fiksu BidMind SDK file-opener-plugin-for-cordova Developer Tools File Opener Plugin for Cordova SDK - findbugs Developer Tools FindBugs SDK - fingerprintjs Security and Privacy FingerprintJS SDK FingerprintJS SDK firebase-appcheck Security and Privacy Firebase App Check SDK Firebase App Check SDK firebase-appdistribution Developer Tools Firebase App Distribution SDK - firebase-authentication User Authentication Firebase Authentication SDK Firebase Authentication SDK firebase-cloud-messaging Push Notifications Firebase Cloud Messaging SDK Firebase Cloud Messaging SDK fabric-crashlytics Crash Reporting and Performance Firebase Crashlytics Fabric SDK Firebase Crashlytics Fabric SDK firebase-crashlytics-ndk Crash Reporting and Performance Firebase Crashlytics NDK SDK - firebase-dynamic-links User Interface and Graphics Firebase Dynamic Links SDK Firebase Dynamic Links SDK firebase-firestore Database and Data Management Firebase Firestore SDK Firebase Firestore SDK firebase-inapp-messaging User Interface and Graphics Firebase In-App Messaging SDK Firebase In-App Messaging SDK firebase-installations Developer Tools Firebase Installations SDK Firebase Installations SDK firebase-perf-mon Crash Reporting and Performance Firebase Performance Monitoring SDK Firebase Performance Monitoring SDK firebase-database Database and Data Management Firebase Realtime Database SDK Firebase Realtime Database SDK firebase-remoteconfig Developer Tools Firebase Remote Config SDK Firebase Remote Config SDK fivead Ad Networks FiveAd by Line SDK FiveAd by Line SDK flanimatedimage Image Processing - FLAnimatedImage SDK flatads Ad Networks FlatAds SDK FlatAds SDK flatuikit User Interface and Graphics - FlatUIKit SDK flex Developer Tools - FLEX SDK flexbox-layout User Interface and Graphics FlexboxLayout SDK - flickr Social - Flickr SDK whisperlink Connected Devices Fling Whisperlink by Amazon SDK - fliptheswitch User Interface and Graphics - FlipTheSwitch SDK flkautolayout User Interface and Graphics - FLKAutoLayout SDK floatingactionbutton User Interface and Graphics FloatingActionButton SDK - flowlayout User Interface and Graphics FlowLayout SDK - fluct Ad Networks Fluct SDK Fluct SDK flurry-ads Ad Networks Flurry Ads SDK Flurry Ads SDK flurry Analytics Flurry Analytics SDK Flurry Analytics SDK flutter Developer Frameworks and No Code Development Flutter SDK Flutter SDK flybuy Location and Maps FlyBuy by Radius Networks SDK FlyBuy by Radius Networks SDK flymob Ad Networks Flymob SDK Flymob SDK fmdb Database and Data Management - FMDB SDK fmod Audio Processing FMOD SDK - followanalytics Analytics FollowAnalytics SDK FollowAnalytics SDK fontawesome User Interface and Graphics - FontAwesome SDK footmarks Analytics Footmarks SDK Footmarks SDK foresee Analytics Foresee SDK Foresee SDK forgerock User Authentication ForgeRock SDK ForgeRock SDK formatterkit Text Processing - FormatterKit SDK forter Security and Privacy Forter SDK Forter SDK fotoapparat Image Processing Fotoapparat SDK - fourthline Security and Privacy Fourthline SDK Fourthline SDK frameplay Ad Networks Frameplay SDK Frameplay SDK fraudforce Security and Privacy FraudForce by iovation SDK FraudForce by iovation SDK freerasp Security and Privacy FreeRASP by Talsec SDK FreeRASP by Talsec SDK freestar Ad Networks Freestar SDK Freestar SDK freestick Gaming and Game Engines Freestick SDK - freewheel Ad Networks FreeWheel SDK - freshchat User Support and CRM Freshchat Freshdesk Messaging by Freshworks SDK Freshchat Freshdesk Messaging by Freshworks SDK freshpaint Analytics Freshpaint SDK Freshpaint SDK fscalendar User Interface and Graphics - FSCalendar SDK fullstory Analytics FullStory SDK FullStory SDK fxn Developer Tools Function FXN SDK - funkedigital Analytics FUNKE Digital SDK FUNKE Digital SDK fxblurview Image Processing - FXBlurView SDK fximageview Image Processing - FXImageView SDK fyber-mediation-adcolony Ad Mediation Fyber Digital Turbine FairBid Mediation Adapter for AdColony SDK Fyber Digital Turbine FairBid Mediation Adapter for AdColony SDK fyber-mediation-admob Ad Mediation Fyber Digital Turbine FairBid Mediation Adapter for AdMob SDK Fyber Digital Turbine FairBid Mediation Adapter for AdMob SDK fyber-mediation-applovin Ad Mediation Fyber Digital Turbine FairBid Mediation Adapter for AppLovin SDK Fyber Digital Turbine FairBid Mediation Adapter for AppLovin SDK fyber-mediation-chartboost Ad Mediation Fyber Digital Turbine FairBid Mediation Adapter for Chartboost SDK Fyber Digital Turbine FairBid Mediation Adapter for Chartboost SDK fyber-mediation-facebook Ad Mediation Fyber Digital Turbine FairBid Mediation Adapter for Facebook SDK Fyber Digital Turbine FairBid Mediation Adapter for Facebook SDK fyber-mediation-inmobi Ad Mediation Fyber Digital Turbine FairBid Mediation Adapter for inMobi SDK Fyber Digital Turbine FairBid Mediation Adapter for inMobi SDK fyber-mediation-ironsource Ad Mediation Fyber Digital Turbine FairBid Mediation Adapter for IronSource SDK Fyber Digital Turbine FairBid Mediation Adapter for IronSource SDK fyber-mediation-liftoff-vungle Ad Mediation Fyber Digital Turbine FairBid Mediation Adapter for Liftoff Vungle SDK Fyber Digital Turbine FairBid Mediation Adapter for Liftoff Vungle SDK fyber-mediation-tapjoy Ad Mediation Fyber Digital Turbine FairBid Mediation Adapter for Tapjoy SDK Fyber Digital Turbine FairBid Mediation Adapter for Tapjoy SDK fyber-mediation-unity-ads Ad Mediation Fyber Digital Turbine FairBid Mediation Adapter for Unity Ads SDK Fyber Digital Turbine FairBid Mediation Adapter for Unity Ads SDK fairbid-by-fyber-heyzap Ad Networks Fyber Fairbid - Heyzap SDK Fyber Fairbid - Heyzap SDK fyber Ad Networks Fyber Offer Wall Edge SDK Fyber Offer Wall Edge SDK gadsme Ad Networks Gadsme SDK Gadsme SDK game-of-whales Gaming and Game Engines Game of Whales SDK - gameanalytics Analytics GameAnalytics SDK GameAnalytics SDK gamecentermanager Gaming and Game Engines - GameCenterManager SDK gamethrive Push Notifications GameThrive SDK GameThrive SDK gaode-map-sdk Location and Maps Gaode AMap SDK Gaode AMap SDK garmin-connectiq Connected Devices Garmin ConnectIQ SDK Garmin ConnectIQ SDK gbdeviceinfo Developer Tools - GBDeviceInfo SDK gbg-identity Security and Privacy GBG IDscan SDK GBG IDscan SDK gcdwebserver Networking - GCDWebServer SDK gc-network-reachability Networking - GCNetworkReachability SDK gdprdialog Security and Privacy GDPRDialog SDK - gemius Analytics Gemius HeatMap SDK Gemius HeatMap SDK genesys User Support and CRM Genesys Cloud CX SDK Genesys Cloud CX SDK geniusscan Scanners and OCR Genius Scan SDK Genius Scan SDK geocomply Location and Maps GeoComply SDK GeoComply SDK geomoby Location and Maps Geomoby SDK Geomoby SDK geospark Location and Maps GeoSpark SDK - geouniq Location and Maps GeoUniq SDK - gestureimageview User Interface and Graphics GestureImageView SDK - get-gelo Analytics Get Gelo SDK Get Gelo SDK getsocial Social GetSocial SDK GetSocial SDK getui Push Notifications GeTui SDK GeTui SDK gigya User Authentication Gigya SDK Gigya SDK gimbal Location and Maps Gimbal by Infillion SDK Gimbal by Infillion SDK giphy Social Giphy SDK Giphy SDK gkimagepicker Image Processing - GKImagePicker SDK glance User Support and CRM Glance SDK Glance SDK glassbox Analytics Glassbox SDK Glassbox SDK glia User Support and CRM Glia SDK Glia SDK glide Image Processing Glide SDK - glide-transformations Image Processing Glide Transformations SDK - glispa-connect-avocarrot Ad Networks Glispa Connect (Avocarrot) SDK Glispa Connect (Avocarrot) SDK gloss Text Processing - Gloss SDK glwallpaperservice User Interface and Graphics GLWallpaperService SDK - glympse Location and Maps Glympse SDK Glympse SDK gmgridview User Interface and Graphics - GMGridView SDK godotengine Gaming and Game Engines Godot Engine SDK Godot Engine SDK godzippa Networking - Godzippa SDK goldraccoon Networking - GoldRaccoon SDK google-ads-admob Ad Networks Google Ads AdMob SDK Google Ads AdMob SDK admob-mediation-adcolony Ad Mediation Google Ads AdMob Mediation Adapter for AdColony SDK Google Ads AdMob Mediation Adapter for AdColony SDK admob-mediation-applovin Ad Mediation Google Ads AdMob Mediation Adapter for AppLovin SDK Google Ads AdMob Mediation Adapter for AppLovin SDK admob-mediation-bigo Ad Mediation Google Ads AdMob Mediation Adapter for Bigo SDK - admob-mediation-chartboost Ad Mediation Google Ads AdMob Mediation Adapter for Chartboost SDK Google Ads AdMob Mediation Adapter for Chartboost SDK admob-mediation-fyber Ad Mediation Google Ads AdMob Mediation Adapter for Digital Turbine Fyber SDK Google Ads AdMob Mediation Adapter for Digital Turbine Fyber SDK admob-mediation-facebook Ad Mediation Google Ads AdMob Mediation Adapter for Facebook SDK Google Ads AdMob Mediation Adapter for Facebook SDK admob-mediation-inmobi Ad Mediation Google Ads AdMob Mediation Adapter for inMobi SDK Google Ads AdMob Mediation Adapter for inMobi SDK admob-mediation-ironsource Ad Mediation Google Ads AdMob Mediation Adapter for IronSource SDK Google Ads AdMob Mediation Adapter for IronSource SDK admob-mediation-liftoff-vungle Ad Mediation Google Ads AdMob Mediation Adapter for Liftoff Vungle SDK Google Ads AdMob Mediation Adapter for Liftoff Vungle SDK admob-mediation-mintegral Ad Mediation Google Ads AdMob Mediation Adapter for Mintegral SDK Google Ads AdMob Mediation Adapter for Mintegral SDK admob-mediation-mytarget Ad Mediation Google Ads AdMob Mediation Adapter for myTarget SDK Google Ads AdMob Mediation Adapter for myTarget SDK admob-mediation-pangle Ad Mediation Google Ads AdMob Mediation Adapter for Pangle SDK Google Ads AdMob Mediation Adapter for Pangle SDK admob-mediation-startio Ad Mediation Google Ads AdMob Mediation Adapter for Start.io SDK - admob-mediation-tapjoy Ad Mediation Google Ads AdMob Mediation Adapter for Tapjoy SDK Google Ads AdMob Mediation Adapter for Tapjoy SDK admob-mediation-unity-ads Ad Mediation Google Ads AdMob Mediation Adapter for Unity Ads SDK Google Ads AdMob Mediation Adapter for Unity Ads SDK admob-mediation Ad Mediation Google Ads AdMob Mediation Adapters SDK Google Ads AdMob Mediation Adapters SDK google-analytics Analytics Google Analytics SDK Google Analytics SDK gaplugin Analytics - Google Analytics Plugin for Cordova PhoneGap SDK gtlr Backend and Cloud - Google APIs for Objective-C for REST SDK google-ar AR and VR Google AR Core SDK Google AR Core SDK google-cast-sdk Video Processing and Streaming Google Cast SDK Google Cast SDK google-cloud-messaging Push Notifications Google Cloud Messaging SDK - google-drive-sdk Backend and Cloud Google Drive SDK - firebase Backend and Cloud Google Firebase SDK Google Firebase SDK firebase-analytics Analytics Google Firebase Analytics SDK Google Firebase Analytics SDK google-ima-sdk Ad Networks Google Interactive Media Ads IMA SDK Google Interactive Media Ads IMA SDK google-maps Location and Maps Google Maps SDK Google Maps SDK google-mobile-ads-consent-admob-sdk Security and Privacy Google Mobile Ads Consent AdMob SDK Google Mobile Ads Consent AdMob SDK google-play-game-services Gaming and Game Engines Google Play Game Services SDK - google-play-games-plugin-for-unity Gaming and Game Engines Google Play Games plugin for Unity SDK - google-play-games-services Gaming and Game Engines - Google Play Games Services SDK google-play-in-app-billing Payments and Commerce Google Play In-app billing SDK - google-play-license-verification-library Security and Privacy Google Play License Verification Library SDK - google-play-services Developer Tools Google Play Services SDK - google-plus-sdk Social - Google Plus SDK google-pal Ad Networks Google Programmatic Access Libraries (PAL) SDK Google Programmatic Access Libraries (PAL) SDK google-recaptcha Security and Privacy Google reCAPTCHA SDK Google reCAPTCHA SDK google-signin User Authentication Google SignIn SDK Google SignIn SDK google-tag-manager Analytics Google Tag Manager SDK Google Tag Manager SDK google-utilities Developer Tools - Google Utilities SDK vertexai Developer Tools Google Vertex AI Gemini SDK - google-vr-cardboard AR and VR Google VR Cardboard SDK Google VR Cardboard SDK googlelibphonenumber Text Processing GoogleLibPhoneNumber SDK - gpuimage Image Processing - GPUImage SDK grabid-partner-by-grab User Authentication GrabId Partner by Grab SDK - graphview Charts and Graphs GraphView SDK - grdb Database and Data Management - GRDB SDK greatcirclearc Location and Maps - GreatCircleArc SDK greedygame Ad Networks GreedyGame SDK GreedyGame SDK greendao Database and Data Management greenDAO SDK - greendroid User Interface and Graphics GreenDroid SDK - grmustache Text Processing - GRMustache SDK xad-groundtruth Ad Networks GroundTruth xAd SDK GroundTruth xAd SDK growingtextview User Interface and Graphics - GrowingTextView SDK growthpush Push Notifications GrowthPush Growthbeat SDK GrowthPush Growthbeat SDK grpc Networking gRPC SDK gRPC SDK gson Text Processing gson SDK - auth0-guardian User Authentication Guardian by Auth0 SDK Guardian by Auth0 SDK guardsquare Security and Privacy Guardsquare DexGuard SDK - haha Developer Tools HAHA by Square SDK - haneke Image Processing - Haneke SDK hanekeswift Image Processing - HanekeSwift SDK harpy User Interface and Graphics - Harpy SDK heapanalytics Analytics Heap Mobile Analytics SDK Heap Mobile Analytics SDK hellocharts-for-android Charts and Graphs HelloCharts for Android SDK - helpshift User Support and CRM Helpshift SDK Helpshift SDK helpstack User Support and CRM Helpstack SDK Helpstack SDK here Location and Maps Here SDK Here SDK hero-transitions User Interface and Graphics - Hero Transitions SDK herow-by-connecthings Location and Maps Herow by Connecthings SDK Herow by Connecthings SDK hexcolors User Interface and Graphics - HexColors SDK hfstretchabletableheaderview User Interface and Graphics - HFStretchableTableHeaderView SDK dagger-hilt Developer Tools Hilt Dagger SDK - himotoki Text Processing - Himotoki SDK hmsegmentedcontrol User Interface and Graphics - HMSegmentedControl SDK hockeyapp Crash Reporting and Performance HockeyApp SDK HockeyApp SDK holocolorpicker User Interface and Graphics HoloColorPicker SDK - holoeverywhere User Interface and Graphics HoloEverywhere SDK - holographlibrary Charts and Graphs HoloGraphLibrary SDK - honeygain Audience and Data Intelligence Honeygain SDK - honeytracks Analytics Honeytracks SDK Honeytracks SDK horizontalvariablelistview User Interface and Graphics HorizontalVariableListView SDK - houndify Communication Houndify SDK Houndify SDK htmlcleaner Text Processing HtmlCleaner SDK - htmlreader Text Processing - HTMLReader SDK htmltextview-for-android User Interface and Graphics HtmlTextView for Android SDK - http-request Networking Http Request SDK - httpclient-msebera Networking HttpClient by Msebera SDK - huawei-ads Ad Networks Huawei Ads SDK - agconnect Developer Tools Huawei AppGallery Connect SDK - huawei-hms Developer Tools Huawei Mobile Services HMS SDK Huawei Mobile Services HMS SDK hugo Developer Tools Hugo SDK - huq Location and Maps Huq SDK Huq SDK hyper Audience and Data Intelligence Hyper Audience SDK Hyper Audience SDK juspay-hyper Payments and Commerce Hyper by Juspay SDK Hyper by Juspay SDK hypertrack Location and Maps HyperTrack SDK HyperTrack SDK hyperverge Security and Privacy HyperVerge SDK HyperVerge SDK hyprmx Ad Networks HyprMX SDK HyprMX SDK iab-om-open-measurement-omsdk Analytics IAB OM Open Measurement OMSDK IAB OM Open Measurement OMSDK iapppay Payments and Commerce iapppay SDK iapppay SDK ibeacon-radiusnetworks Location and Maps iBeacon for Android by Radius Networks SDK - ibm-tealeaf Analytics IBM Tealeaf SDK IBM Tealeaf SDK trusteer Security and Privacy IBM Trusteer Mobile SDK IBM Trusteer Mobile SDK ibm-watson Developer Tools IBM Watson SDK - icarousel User Interface and Graphics - iCarousel SDK iconify User Interface and Graphics Iconify SDK - id-me-webverify User Authentication ID.me WebVerify SDK ID.me WebVerify SDK identity User Authentication Identity autoID SDK - idmphotobrowser Image Processing - IDMPhotoBrowser SDK idnow-autoident Security and Privacy IDnow AutoIdent SDK IDnow AutoIdent SDK idwall Security and Privacy idwall Onboarding SDK idwall Onboarding SDK iflychat Communication iFlyChat SDK iFlyChat SDK ifttt Developer Tools IFTTT SDK IFTTT SDK ijkplayer Video Processing and Streaming ijkplayer SDK ijkplayer SDK image-chooser-library Image Processing Image Chooser Library SDK - imageloader Image Processing - ImageLoader SDK imageslideshow Image Processing - ImageSlideshow SDK imageviewzoom User Interface and Graphics ImageViewZoom SDK - imobile-sdk Ad Networks Imobile SDK Imobile SDK ims-one-app Marketing Automation IMS One App SDK IMS One App SDK inappsettingskit User Interface and Graphics - InAppSettingsKit SDK inauth Security and Privacy InAuth by Accertify SDK InAuth by Accertify SDK inbrain Survey inBrain SDK inBrain SDK incode Security and Privacy Incode Omni SDK Incode Omni SDK incognia-id Security and Privacy Incognia ID SDK Incognia ID SDK incognia Location and Maps Incognia In Loco SDK Incognia In Loco SDK indoo-rs Location and Maps indoo.rs SDK indoo.rs SDK infiniteviewpager User Interface and Graphics InfiniteViewPager SDK - infobip Communication Infobip SDK Infobip SDK infonline Analytics INFONline Measurement SZM SDK INFONline Measurement SZM SDK infsoft Location and Maps infsoft SDK infsoft SDK ingeosdk Location and Maps - IngeoSDK inmarket Location and Maps inMarket SDK inMarket SDK inmobi Ad Networks InMobi Mobile Ads SDK InMobi Mobile Ads SDK inmobile Communication inmobile SMS Gateway SDK inmobile SMS Gateway SDK inneractive Ad Networks Inneractive SDK Inneractive SDK innovatrics Security and Privacy Innovatrics SDK Innovatrics SDK inpeace Ad Networks InPeace SDK - inrix Location and Maps Inrix SDK - useinsider Marketing Automation Insider SDK Insider SDK insiteo Location and Maps Insiteo SDK Insiteo SDK instabug Developer Tools Instabug SDK Instabug SDK instal Attribution Instal SDK Instal SDK instreamatic Ad Networks Instreamatic SDK - intercom User Support and CRM Intercom SDK Intercom SDK locationmanager Location and Maps - INTULocationManager SDK invoid Analytics inVoid SDK - ionic Developer Frameworks and No Code Development Ionic Framework SDK Ionic Framework SDK ionic-keyboard User Interface and Graphics Ionic Keyboard SDK Ionic Keyboard SDK ios-ntp Developer Tools - ios-ntp SDK iproov Security and Privacy iProov SDK iProov SDK iqiyi Video Processing and Streaming Iqiyi VCOP Client SDK Iqiyi VCOP Client SDK iqkeyboardmanager User Interface and Graphics - IQKeyboardManager SDK iqzone Ad Networks IQzone SDK IQzone SDK irate User Interface and Graphics - iRate SDK ironsource Ad Networks ironSource SDK ironSource SDK ironsource-adquality Security and Privacy ironSource AdQuality SDK ironSource AdQuality SDK ironsource-mediation-adcolony Ad Mediation IronSource Mediation Adapter for AdColony SDK IronSource Mediation Adapter for AdColony SDK ironsource-mediation-admob Ad Mediation IronSource Mediation Adapter for AdMob SDK IronSource Mediation Adapter for AdMob SDK ironsource-mediation-applovin Ad Mediation IronSource Mediation Adapter for AppLovin SDK IronSource Mediation Adapter for AppLovin SDK ironsource-mediation-bigo Ad Mediation IronSource Mediation Adapter for Bigo SDK IronSource Mediation Adapter for Bigo SDK ironsource-mediation-chartboost Ad Mediation IronSource Mediation Adapter for Chartboost SDK IronSource Mediation Adapter for Chartboost SDK ironsource-mediation-fyber Ad Mediation IronSource Mediation Adapter for Digital Turbine Fyber SDK IronSource Mediation Adapter for Digital Turbine Fyber SDK ironsource-mediation-facebook Ad Mediation IronSource Mediation Adapter for Facebook SDK IronSource Mediation Adapter for Facebook SDK ironsource-mediation-inmobi Ad Mediation IronSource Mediation Adapter for inMobi SDK IronSource Mediation Adapter for inMobi SDK ironsource-mediation-liftoff-vungle Ad Mediation IronSource Mediation Adapter for Liftoff Vungle SDK IronSource Mediation Adapter for Liftoff Vungle SDK ironsource-mediation-mintegral Ad Mediation IronSource Mediation Adapter for Mintegral SDK IronSource Mediation Adapter for Mintegral SDK ironsource-mediation-mytarget Ad Mediation IronSource Mediation Adapter for myTarget SDK IronSource Mediation Adapter for myTarget SDK ironsource-mediation-pangle Ad Mediation IronSource Mediation Adapter for Pangle SDK IronSource Mediation Adapter for Pangle SDK ironsource-mediation-smaato Ad Mediation IronSource Mediation Adapter for Smaato SDK IronSource Mediation Adapter for Smaato SDK ironsource-mediation-tapjoy Ad Mediation IronSource Mediation Adapter for Tapjoy SDK IronSource Mediation Adapter for Tapjoy SDK ironsource-mediation-unity-ads Ad Mediation IronSource Mediation Adapter for Unity Ads SDK IronSource Mediation Adapter for Unity Ads SDK ironsource-mediation-yandex Ad Mediation IronSource Mediation Adapter for Yandex SDK IronSource Mediation Adapter for Yandex SDK ironsource-mediation Ad Mediation ironSource Mediation Adapters SDK ironSource Mediation Adapters SDK iso-8601-date-formatter Developer Tools - iso-8601-date-formatter SDK iso8601 Developer Tools - ISO8601 SDK ispeech Audio Processing iSpeech SDK - iterable Marketing Automation Iterable SDK Iterable SDK itext Text Processing iText SDK - iubenda Security and Privacy Iubenda SDK Iubenda SDK iversion User Interface and Graphics - iVersion SDK jackson-fasterxml Text Processing Jackson FasterXML SDK - janalytics-by-jiguang Analytics JAnalytics by Jiguang SDK - jastor Text Processing - Jastor SDK java-mp4-parser Video Processing and Streaming Java MP4 Parser SDK - jbchartview Charts and Graphs - Jawbone JBChartView SDK jawbone Connected Devices Jawbone UP Platform SDK Jawbone UP Platform SDK jayway-jsonpath Text Processing Jayway JsonPath SDK - jazzyviewpager User Interface and Graphics JazzyViewPager SDK - jbwhatsappactivity Communication - JBWhatsAppActivity SDK jcnotificationbannerpresenter User Interface and Graphics - JCNotificationBannerPresenter SDK jdeferred Developer Tools JDeferred SDK - jdflipnumberview User Interface and Graphics - JDFlipNumberView SDK jericho-html-parser Text Processing Jericho HTML Parser SDK - jgprogresshud User Interface and Graphics - JGProgressHUD SDK jhud User Interface and Graphics - JHUD SDK jitsi Communication Jitsi 8x8 Meet SDK Jitsi 8x8 Meet SDK jiubang-gomo Analytics Jiubang GOMO SDK - jlroutes User Interface and Graphics - JLRoutes SDK jncryptor Security and Privacy JNCryptor SDK - jnkeychain Security and Privacy - JNKeychain SDK joda-time Developer Tools Joda Time SDK - joda-time-library Developer Tools Joda-Time library SDK - jpush-by-jiguang Push Notifications JPush by Jiguang SDK JPush by Jiguang SDK jrswizzle Developer Tools - JRSwizzle SDK jsbridge User Interface and Graphics JsBridge SDK - jscustombadge User Interface and Graphics - JSCustomBadge SDK jshare-by-jiguang Social JShare by Jiguang SDK - json-smart-v2 Text Processing json-smart-v2 SDK - jsonmodel Text Processing - JSONModel SDK jsoup Text Processing jsoup SDK - jspatch Developer Tools - JSPatch SDK jsqmessagesviewcontroller Communication - JSQMessagesViewController SDK jsqsystemsoundplayer Audio Processing - JSQSystemSoundPlayer SDK jtsimageviewcontroller Image Processing - JTSImageViewController SDK jtwitter Social Jtwitter by Winterwell SDK - juce Audio Processing JUCE SDK JUCE SDK jumio-mobile Security and Privacy Jumio Mobile SDK Jumio Mobile SDK jvfloatlabeledtextfield User Interface and Graphics - JVFloatLabeledTextField SDK jwplayer Video Processing and Streaming JW Player SDK JW Player SDK jwt User Authentication - JWT SDK jxhttp Networking - JXHTTP SDK jxmpp Communication JXMPP SDK - kahuna Marketing Automation Kahuna SDK Kahuna SDK kairosfire Security and Privacy Kairosfire SDK - kakao-ad Ad Networks Kakao Ad (Daum) SDK Kakao Ad (Daum) SDK kakao-api Social Kakao API SDK Kakao API SDK kal User Interface and Graphics - Kal SDK kaleyra Communication Kaleyra Video Bandyer SDK Kaleyra Video Bandyer SDK kaltura-player-sdk Video Processing and Streaming - Kaltura Player SDK kanna Text Processing - Kanna SDK kaprogresslabel User Interface and Graphics - KAProgressLabel SDK karza Security and Privacy Karza SDK - kaslideshow User Interface and Graphics - KASlideShow SDK kawa Developer Tools Kawa SDK - keen-io Analytics Keen IO SDK Keen IO SDK keeva Backend and Cloud - Keeva SDK kenburnsview User Interface and Graphics KenBurnsView SDK - keychainaccess Security and Privacy - KeychainAccess SDK kgmodal User Interface and Graphics - KGModal SDK kidoz Ad Networks Kidoz SDK Kidoz SDK kids-adsdk Ad Networks Kids AdSdk SDK - kids-bcsdk Analytics Kids BcSdk SDK - kik-api Social Kik API SDK Kik API SDK kingfisher Image Processing - Kingfisher SDK kionix Connected Devices Kionix SDK - kissmetrics Analytics KISSMetrics SDK KISSMetrics SDK kissxml Text Processing - KissXML SDK klarna Payments and Commerce Klarna SDK Klarna SDK klaviyo Marketing Automation Klaviyo SDK Klaviyo SDK kmplaceholdertextview User Interface and Graphics - KMPlaceholderTextView SDK kochava Attribution Kochava SDK Kochava SDK kodein Developer Tools Kodein-DI SDK - koin Developer Tools Koin SDK - kontagent Analytics Kontagent SDK Kontagent SDK kontakt-io Location and Maps Kontakt.io SDK Kontakt.io SDK kotlin Developer Tools Kotlin SDK - kount Security and Privacy Kount by Equifax SDK Kount by Equifax SDK lyft-kronos Developer Tools Kronos by Lyft SDK - krux-salesforce Audience and Data Intelligence Krux - Salesforce Audience Studio SDK Krux - Salesforce Audience Studio SDK kryo Text Processing Kryo SDK - kscrash Crash Reporting and Performance - KSCrash SDK ktor Networking Ktor SDK - kudan AR and VR Kudan SDK Kudan SDK kumulos Marketing Automation Kumulos by Optimove SDK Kumulos by Optimove SDK kustom-api User Interface and Graphics Kustom API SDK - kvnprogress User Interface and Graphics - KVNProgress SDK kvocontroller Developer Tools - KVOController SDK kwizzad Ad Networks Kwizzad SDK - lantern Developer Tools Lantern by TeamThresh SDK - launchdarkly A/B Testing LaunchDarkly SDK LaunchDarkly SDK layar AR and VR Layar SDK Layar SDK layer Communication Layer SDK Layer SDK lazylist User Interface and Graphics LazyList SDK - ldprogressview User Interface and Graphics - LDProgressView SDK leadbolt Ad Networks LeadBolt SDK LeadBolt SDK leakcanary Developer Tools LeakCanary SDK - leakfinder Developer Tools - LeakFinder SDK leanplum Marketing Automation Leanplum FCM SDK Leanplum FCM SDK lecolorpicker User Interface and Graphics - LEColorPicker SDK leveldb Database and Data Management - LevelDB SDK lguplus Ad Networks LG U+ AD SDK LG U+ AD SDK libextobjc Developer Tools - libextobjc SDK libgdx Gaming and Game Engines LibGDX SDK - libphonenumber-android Text Processing LibPhoneNumber Android SDK - libphonenumber Text Processing - LibPhoneNumber iOS SDK licensesdialog User Interface and Graphics LicensesDialog SDK - lifestreet Ad Networks Lifestreet SDK - liftoff Ad Networks Liftoff Ads by Vungle SDK Liftoff Ads by Vungle SDK ligatus Ad Networks Ligatus by Outbrain SDK Ligatus by Outbrain SDK limei Ad Networks Limei SDK Limei SDK linecorp Social Line by LineCorp SDK Line by LineCorp SDK linear-layout-manager User Interface and Graphics Linear Layout Manager SDK - linkedin-sdk Social Linkedin Sdk SDK Linkedin Sdk SDK lisnr Audio Processing LISNR SDK LISNR SDK listviewanimations User Interface and Graphics ListViewAnimations SDK - little-fluffy-location-library Location and Maps Little Fluffy Location Library SDK - live-sdk-microsoft Social Live SDK Microsoft Live SDK Microsoft livechat User Support and CRM LiveChat SDK LiveChat SDK liveperson User Support and CRM LivePerson SDK LivePerson SDK liverail Ad Networks LiveRail by Meta SDK LiveRail by Meta SDK liveramp Audience and Data Intelligence LiveRamp ATS SDK LiveRamp ATS SDK lkdbhelper Database and Data Management - LKDBHelper SDK llsimplecamera Image Processing - LLSimpleCamera SDK loading-android User Interface and Graphics Loading Android SDK - local-storage Database and Data Management Local Storage SDK - localytics Analytics Localytics by Upland SDK Localytics by Upland SDK localz Location and Maps Localz SDK Localz SDK location Location and Maps - Location SDK locationsmart Location and Maps LocationSmart SDK - locksmith Security and Privacy - Locksmith SDK locuslabs Location and Maps LocusLabs Mapping SDK LocusLabs Mapping SDK logansquare Text Processing LoganSquare SDK - logback Developer Tools Logback SDK - logger-android Developer Tools Logger Android SDK - amazon-lwa User Authentication Login with Amazon LWA SDK Login with Amazon LWA SDK loginid User Authentication LoginID SDK LoginID SDK logrocket Analytics LogRocket SDK LogRocket SDK lokalise Developer Tools Lokalise SDK Lokalise SDK loopme Ad Networks LoopMe SDK LoopMe SDK lootlocker Gaming and Game Engines LootLocker SDK LootLocker SDK lotadata Analytics Lotadata SDK - lotame Audience and Data Intelligence Lotame SDK Lotame SDK lottie-by-airbnb User Interface and Graphics Lottie by Airbnb SDK Lottie by Airbnb SDK luxand Security and Privacy Luxand SDK Luxand SDK lxreorderablecollectionviewflowlayout User Interface and Graphics - LXReorderableCollectionViewFlowLayout SDK lyft Location and Maps Lyft SDK Lyft SDK m13badgeview User Interface and Graphics - M13BadgeView SDK m13progresssuite User Interface and Graphics - M13ProgressSuite SDK madserve Ad Networks mAdserve SDK - madvertise-mngads-sdk Ad Networks Madvertise MngAds BlueStack SDK Madvertise MngAds BlueStack SDK magicalrecord Database and Data Management - MagicalRecord SDK magnes-paypal Security and Privacy Magnes SDK by Paypal Magnes SDK by Paypal mailchimp Marketing Automation Mailchimp SDK Mailchimp SDK libmailcore Communication MailCore SDK MailCore SDK maio Ad Networks Maio SDK Maio SDK makeopinion Survey Make Opinion SDK Make Opinion SDK mangopay Payments and Commerce Mangopay SDK Mangopay SDK mantle Text Processing - Mantle SDK mapbox Location and Maps Mapbox SDK Mapbox SDK mapquest Location and Maps MapQuest SDK MapQuest SDK mapsforge Location and Maps Mapsforge SDK - sailthru Marketing Automation Marigold Engage by Sailthru SDK Marigold Engage by Sailthru SDK marmalade Gaming and Game Engines Marmalade SDK - marqueelabel User Interface and Graphics - MarqueeLabel SDK masonry User Interface and Graphics - Masonry SDK mastercard-masterpass-checkout Payments and Commerce Mastercard Masterpass Checkout SDK Mastercard Masterpass Checkout SDK matchinguu Social Matchinguu SDK - material User Interface and Graphics - Material SDK material-circularprogressview User Interface and Graphics Material CircularProgressView SDK - material-design-for-pre-lolipop-android User Interface and Graphics Material Design for pre-Lolipop Android SDK - materialprogressbar User Interface and Graphics Material Design ProgressBar SDK - material-dialogs User Interface and Graphics Material Dialogs SDK - material-menu User Interface and Graphics Material Menu SDK - material-ripple-layout User Interface and Graphics Material Ripple Layout SDK - material-ish-progress User Interface and Graphics Material-ish Progress SDK - materialdatetimepicker User Interface and Graphics MaterialDateTimePicker SDK - materialdesignlibrary User Interface and Graphics MaterialDesignLibrary SDK - materialdialog User Interface and Graphics MaterialDialog SDK - materialdrawer User Interface and Graphics MaterialDrawer SDK - materialedittext User Interface and Graphics MaterialEditText SDK - materialize User Interface and Graphics Materialize SDK - materialloadingprogressbar User Interface and Graphics MaterialLoadingProgressBar SDK - materialrangebar User Interface and Graphics MaterialRangeBar SDK - materialspinner User Interface and Graphics MaterialSpinner SDK - materialtabs User Interface and Graphics MaterialTabs SDK - materialtextfield User Interface and Graphics MaterialTextField SDK - maticoo Ad Networks Maticoo SDK Maticoo SDK matomo Analytics Matomo Piwik Tracking SDK Matomo Piwik Tracking SDK maui Developer Frameworks and No Code Development MAUI by Microsoft SDK MAUI by Microsoft SDK max-advertising-systems Ad Networks MAX Advertising Systems SDK MAX Advertising Systems SDK mbcircularprogressbar User Interface and Graphics - MBCircularProgressBar SDK mbprogresshud User Interface and Graphics - MBProgressHUD SDK mdradialprogress User Interface and Graphics - MDRadialProgress SDK medallia Analytics Medallia Digital SDK Medallia Digital SDK mediatek Connected Devices MediaTek SDK - mediba Ad Networks Mediba SDK - menudrawer User Interface and Graphics MenuDrawer SDK - mercadopago Payments and Commerce Mercado Pago Payment Experience PX SDK Mercado Pago Payment Experience PX SDK messagepack Text Processing MessagePack SDK - metadata-extractor Image Processing metadata-extractor SDK - metaio AR and VR Metaio SDK - metamap Security and Privacy MetaMap SDK MetaMap SDK metaplay Gaming and Game Engines Metaplay SDK Metaplay SDK metaps Payments and Commerce Metaps SDK Metaps SDK metricell Location and Maps Metricell SDK Metricell SDK metrics-dropwizard Analytics Metrics Dropwizard SDK - mfilterit Security and Privacy mFilterIt SDK mFilterIt SDK mginstagram Social - MGInstagram SDK mgmushparser Text Processing - MGMushParser SDK mgsplitviewcontroller User Interface and Graphics - MGSplitViewController SDK mgswipetablecell User Interface and Graphics - MGSwipeTableCell SDK mgtemplateengine Text Processing - MGTemplateEngine SDK microblink Scanners and OCR Microblink SDK Microblink SDK microsoft-identity User Authentication Microsoft Authentication Library SDK Microsoft Authentication Library SDK azure-sdk Backend and Cloud Microsoft Azure SDK Microsoft Azure SDK bing-maps Location and Maps Microsoft Bing Maps SDK Microsoft Bing Maps SDK microsoft-clarity Analytics Microsoft Clarity SDK Microsoft Clarity SDK microsoft-app-center Crash Reporting and Performance Microsoft Visual Studio App Center SDK Microsoft Visual Studio App Center SDK microsoft-translator-java-api Text Processing microsoft-translator-java-api SDK - milibris Text Processing Milibris PDF Reader SDK Milibris PDF Reader SDK millennial-media-aol-oath-ad-platforms-onemobile Ad Networks Millennial Media - AOL - Oath Ad Platforms - OneMobile SDK Millennial Media - AOL - Oath Ad Platforms - OneMobile SDK minidns Networking MiniDNS SDK - minlog Developer Tools Minlog SDK - mint-splunk-sdk Analytics Mint Splunk SDK Mint Splunk SDK mintegral Ad Networks Mintegral mbbanner SDK Mintegral mbbanner SDK mit-app-inventor Developer Frameworks and No Code Development MIT App Inventor SDK - mitek-misnap Scanners and OCR Mitek MiSnap SDK Mitek MiSnap SDK mixpanel Analytics Mixpanel SDK Mixpanel SDK mjextension Text Processing - MJExtension SDK mjrefresh User Interface and Graphics - MJRefresh SDK mkicloudsync Backend and Cloud - MKiCloudSync SDK mknumberbadgeview User Interface and Graphics - MKNumberBadgeView SDK mlkit Developer Tools ML Kit by Google SDK ML Kit by Google SDK mmdrawercontroller User Interface and Graphics - MMDrawerController SDK mmmaterialdesignspinner User Interface and Graphics - MMMaterialDesignSpinner SDK mmwormhole Communication - MMWormhole SDK mnectar Ad Networks mNectar SDK mNectar SDK moat Analytics Moat SDK Moat SDK mobclix Ad Networks Mobclix SDK - mobfox Ad Networks Mobfox SDK Mobfox SDK mobiburn Ad Networks MobiBurn SDK - mobile-tecent-analytics-mta Analytics Mobile Tecent Analytics (MTA) SDK - mobile-tencent-analytics Analytics - Mobile Tencent Analytics SDK mobilecore Analytics Mobilecore SDK - mobilefuse Ad Networks MobileFuse SDK MobileFuse SDK mobknow Analytics MobKnow SDK - mobpartner Ad Networks MobPartner by Cheetah Mobile SDK MobPartner by Cheetah Mobile SDK mobpower Ad Networks MobPower SDK - mobvista Ad Networks Mobvista SDK Mobvista SDK moengage Marketing Automation Moengage SDK Moengage SDK moga-sdk Gaming and Game Engines Moga SDK - moloco-ad-cloud Ad Networks Moloco Ad Cloud SDK Moloco Ad Cloud SDK moloco-van Attribution Moloco VAN SDK Moloco VAN SDK mologiq Analytics moLogiq SDK moLogiq SDK monactivityindicatorview User Interface and Graphics - MONActivityIndicatorView SDK monedata Analytics Monedata SDK - monetization Ad Networks Monetization.com SDK - mono Developer Frameworks and No Code Development Mono Project SDK Mono Project SDK moodmedia Audio Processing Mood Media SDK - moonpay-sdk Payments and Commerce MoonPay SDK MoonPay SDK mopub Ad Networks MoPub by AppLovin SDK MoPub by AppLovin SDK mobup-mediation-adcolony Ad Mediation MoPub Mediation Adapter for AdColony SDK MoPub Mediation Adapter for AdColony SDK mobup-mediation-admob Ad Mediation MoPub Mediation Adapter for AdMob SDK MoPub Mediation Adapter for AdMob SDK mobup-mediation-applovin Ad Mediation MoPub Mediation Adapter for AppLovin SDK MoPub Mediation Adapter for AppLovin SDK mobup-mediation-chartboost Ad Mediation MoPub Mediation Adapter for Chartboost SDK MoPub Mediation Adapter for Chartboost SDK mobup-mediation-fyber Ad Mediation MoPub Mediation Adapter for Digital Turbine Fyber SDK MoPub Mediation Adapter for Digital Turbine Fyber SDK mobup-mediation-facebook Ad Mediation MoPub Mediation Adapter for Facebook SDK MoPub Mediation Adapter for Facebook SDK mobup-mediation-inmobi Ad Mediation MoPub Mediation Adapter for inMobi SDK MoPub Mediation Adapter for inMobi SDK mobup-mediation-ironsource Ad Mediation MoPub Mediation Adapter for IronSource SDK MoPub Mediation Adapter for IronSource SDK mobup-mediation-liftoff-vungle Ad Mediation MoPub Mediation Adapter for Liftoff Vungle SDK MoPub Mediation Adapter for Liftoff Vungle SDK mobup-mediation-mintegral Ad Mediation MoPub Mediation Adapter for Mintegral SDK MoPub Mediation Adapter for Mintegral SDK mobup-mediation-pangle Ad Mediation MoPub Mediation Adapter for Pangle SDK MoPub Mediation Adapter for Pangle SDK mobup-mediation-smaato Ad Mediation MoPub Mediation Adapter for Smaato SDK - mobup-mediation-startio Ad Mediation MoPub Mediation Adapter for Start.io SDK MoPub Mediation Adapter for Start.io SDK mobup-mediation-tapjoy Ad Mediation MoPub Mediation Adapter for Tapjoy SDK MoPub Mediation Adapter for Tapjoy SDK mobup-mediation-unity-ads Ad Mediation MoPub Mediation Adapter for Unity Ads SDK MoPub Mediation Adapter for Unity Ads SDK mobup-mediation Ad Mediation MoPub Mediation Adapters SDK MoPub Mediation Adapters SDK morphokit Security and Privacy MorphoKit by Idemia SDK MorphoKit by Idemia SDK mosby User Interface and Graphics Mosby SDK - moscapsule Communication - Moscapsule MQTT for Mosquitto SDK moshi Text Processing Moshi SDK - movieous-live Video Processing and Streaming Movieous Live SDK Movieous Live SDK movieous-player Video Processing and Streaming Movieous Player SDK - movieous-shortvideo Video Processing and Streaming Movieous Short Video SDK Movieous Short Video SDK moya Networking - Moya SDK mp3agic Audio Processing mp3agic SDK - mpandroidchart Charts and Graphs MPAndroidChart SDK - mparticle Analytics mParticle SDK mParticle SDK mpmessagepack Text Processing - MPMessagePack SDK mqtt-client-framework Communication - MQTT-Client-Framework SDK mrprogress User Interface and Graphics - MRProgress SDK mta-sdk Analytics - MTA SDK mtmigration Developer Tools - MTMigration SDK mtraction Analytics mTraction SDK mTraction SDK multilayernavigation User Interface and Graphics - MultiLayerNavigation SDK mupdf Text Processing MuPDF by Artifex SDK - muvi Video Processing and Streaming Muvi SDK Muvi SDK mwfeedparser Text Processing - MWFeedParser SDK mwphotobrowser Image Processing - MWPhotoBrowser SDK mxparallaxheader User Interface and Graphics - MXParallaxHeader SDK mychips Payments and Commerce MyChips SDK - mytarget Ad Networks myTarget SDK myTarget SDK mytracker Analytics myTracker SDK myTracker SDK mzformsheetcontroller User Interface and Graphics - MZFormSheetController SDK nakama Gaming and Game Engines Nakama by Heroic Labs SDK Nakama by Heroic Labs SDK namiml Payments and Commerce Nami SDK Nami SDK nanigans Ad Networks Nanigans SDK Nanigans SDK nanopb Text Processing - Nanopb SDK nao-sdk Gaming and Game Engines NAO SDK - nativex Ad Networks NativeX SDK NativeX SDK nativo Ad Networks Nativo SDK Nativo SDK naver Social Naver SDK - naverloginsdk User Authentication - NaverLoginSDK nect Security and Privacy Nect SDK - neerby Location and Maps neerby SDK neerby SDK nend Ad Networks Nend SDK Nend SDK netcetera-threeds Payments and Commerce Netcetera 3DS SDK Netcetera 3DS SDK netcore Backend and Cloud Netcore Cloud SDK Netcore Cloud SDK netfox Developer Tools - Netfox SDK neumob Networking Neumob SDK Neumob SDK neura Location and Maps Neura SDK Neura SDK neuro-id-experian Security and Privacy NeuroID Experian SDK NeuroID Experian SDK new-relic Crash Reporting and Performance New Relic Mobile SDK New Relic Mobile SDK newaer Ad Networks NewAer SDK NewAer SDK newquickaction User Interface and Graphics NewQuickAction SDK - nexage-sourcekit-mraid Ad Networks Nexage SourceKit-MRAID SDK Nexage SourceKit-MRAID SDK nexmo Communication Nexmo by Vonage SDK Nexmo by Vonage SDK nidropdown User Interface and Graphics - NIDropDown SDK nielsen-sdk Analytics Nielsen Digital Ad Rating DAR SDK Nielsen Digital Ad Rating DAR SDK niftycloud-backend Backend and Cloud - NIFTYCloud Backend SDK nimlib Communication Nim by Netease SDK Nim by Netease SDK nimbus-ads Ad Networks Nimbus Ads SDK Nimbus Ads SDK nimbus-jose-jwt User Authentication Nimbus JOSE + JWT SDK - nine-old-androids User Interface and Graphics Nine Old Androids SDK - ninthdecimal-kiip Ad Networks NinthDecimal - Kiip SDK NinthDecimal - Kiip SDK njkwebviewprogress User Interface and Graphics - NJKWebViewProgress SDK nkocolorpickerview User Interface and Graphics - NKOColorPickerView SDK nmrangeslider User Interface and Graphics - NMRangeSlider SDK nodle Analytics Nodle SDK Nodle SDK nononsense-filepicker User Interface and Graphics NoNonsense-FilePicker SDK - notifica Push Notifications Notificare SDK Notificare SDK nuance Communication Nuance SDK Nuance SDK nuke Image Processing - Nuke SDK numberprogressbar User Interface and Graphics NumberProgressBar SDK - numbuskit User Interface and Graphics - NumbusKit SDK nvactivityindicatorview User Interface and Graphics - NVActivityIndicatorView SDK nytphotoviewer Image Processing - NYTPhotoViewer SDK nyximageskit Image Processing - NYXImagesKit SDK oastackview User Interface and Graphics - OAStackView SDK oauthswift User Authentication - OAuthSwift SDK objectal Audio Processing - ObjectAL SDK objectbox Database and Data Management ObjectBox SDK ObjectBox SDK objection Developer Tools - Objection SDK objective-zip Text Processing - Objective-Zip SDK objectmapper Text Processing - ObjectMapper SDK obshapedbutton User Interface and Graphics - OBShapedButton SDK ocmock Developer Tools - OCMock SDK oculus AR and VR Oculus SDK - odnoklassniki Social Odnoklassniki Social Network SDK Odnoklassniki Social Network SDK ogury Ad Networks Ogury SDK Ogury SDK ohana User Interface and Graphics - Ohana SDK ohhttpstubs Developer Tools - OHHTTPStubs SDK okhttp Networking OkHttp SDK - okio Networking okio SDK - okta User Authentication Okta SDK Okta SDK omghttpurlrq Networking - OMGHTTPURLRQ SDK omniata Analytics Omniata SDK Omniata SDK omniture Analytics Omniture by Adobe SDK Omniture by Adobe SDK one-sdk Developer Tools ONE SDK - oneaudience Audience and Data Intelligence oneAudience SDK - onesignal Push Notifications OneSignal SDK OneSignal SDK vasco-digipass Security and Privacy OneSpan Vasco Digipass SDK OneSpan Vasco Digipass SDK onetrust-headless Security and Privacy OneTrust Publishers Headless Consent SDK OneTrust Publishers Headless Consent SDK onfido-capture Security and Privacy Onfido Capture SDK Onfido Capture SDK ono Text Processing - Ono SDK onyx-beacon Location and Maps Onyx Beacon SDK - ookla-speedtest Networking Ookla Speedtest Mobile SDK Ookla Speedtest Mobile SDK ooyala Video Processing and Streaming Ooyala SDK - open-measurement-by-integral-ad-science-ias Analytics Open Measurement by Integral Ad Science (IAS) SDK - opencensus-opentelemetry Analytics Opencensus OpenTelemetry SDK - opencsv Text Processing Opencsv SDK - opencv Image Processing OpenCV SDK - openfeint Gaming and Game Engines OpenFeint SDK - openflow User Interface and Graphics - OpenFlow SDK openiab-open-in-app-billing Payments and Commerce OpenIAB Open In-App Billing SDK - openkeychain Security and Privacy OpenKeychain SDK - openlocate Location and Maps OpenLocate SDK - openpgp Security and Privacy OpenPGP SDK - opensignal Networking OpenSignal SDK OpenSignal SDK opentk Gaming and Game Engines OpenTK SDK - opentok-tokbox-by-nexmo Communication OpenTok Tokbox by Vonage SDK OpenTok Tokbox by Vonage SDK openudid Developer Tools OpenUDID SDK - openx Ad Networks OpenX SDK - opera-ads Ad Networks Opera Ads SDK - optimizely A/B Testing Optimizely SDK Optimizely SDK optimove Marketing Automation Optimove SDK Optimove SDK oracle-mobile-cloud Backend and Cloud Oracle Mobile Cloud SDK Oracle Mobile Cloud SDK orchextra Marketing Automation Orchextra SDK Orchextra SDK ormlite Database and Data Management OrmLite SDK - osano Security and Privacy Osano SDK Osano SDK openstreetmap-tools Location and Maps Osmdroid SDK - otherlevels Marketing Automation OtherLevels SDK OtherLevels SDK otpless User Authentication OTPless SDK OTPless SDK otto Developer Tools Otto SDK - outbrain Ad Networks Outbrain SDK Outbrain SDK over-scroll-support User Interface and Graphics Over-Scroll Support SDK - oztam Analytics OzTAM SDK OzTAM SDK p2pkit Communication p2pkit SDK p2pkit SDK pagerslidingtabstrip User Interface and Graphics PagerSlidingTabStrip SDK - pagingmenucontroller User Interface and Graphics - PagingMenuController SDK bytedance-tiktok Ad Networks Pangle ByteDance TikTok UnionAD SDK Pangle ByteDance TikTok UnionAD SDK paperfold-for-ios User Interface and Graphics - PaperFold-for-iOS SDK parallax-scrolls User Interface and Graphics Parallax Scrolls SDK - parse Backend and Cloud Parse SDK Parse SDK parsely Analytics Parse.ly SDK Parse.ly SDK particle-sdk Connected Devices Particle SDK Particle SDK party-track-sdk Analytics Party Track SDK Party Track SDK passbase Security and Privacy Passbase SDK Passbase SDK pathsense Location and Maps Pathsense SDK - patternlockview User Interface and Graphics PatternLockView SDK - paypal Payments and Commerce PayPal SDK PayPal SDK paytm-mobile-sdk Payments and Commerce Paytm Mobile SDK - paytouch-payu Payments and Commerce PayUMoney PayTouch by PayU SDK PayUMoney PayTouch by PayU SDK pbind User Interface and Graphics - Pbind SDK pdfium Text Processing Pdfium SDK - pdfrenderer Text Processing PDFrenderer SDK - pdftron Text Processing PDFTron SDK - pebblekit Connected Devices PebbleKit SDK PebbleKit SDK pendo Analytics Pendo SDK Pendo SDK perimeterx Security and Privacy PerimeterX by HUMAN SDK PerimeterX by HUMAN SDK permissionsdispatcher Security and Privacy PermissionsDispatcher SDK - persona-identities Security and Privacy Persona Inquiry Identities SDK Persona Inquiry Identities SDK persona-ly Analytics Persona.ly SDK Persona.ly SDK personagraph Audience and Data Intelligence Personagraph SDK - phone-fuel Ad Networks Phone-FUEL SDK - phonegap-barcode-scanner Scanners and OCR Phonegap Barcode Scanner SDK - phonegappushplugin Push Notifications Phonegap Push Plugin SDK - phonepe Payments and Commerce PhonePe Intent SDK PhonePe Intent SDK photodraweeview Image Processing PhotoDraweeView SDK - photoview Image Processing PhotoView SDK - phunware Location and Maps Phunware SDK Phunware SDK piano Analytics Piano Analytics DMP SDK Piano Analytics DMP SDK picasso Image Processing Picasso SDK - pilgrim-sdk-by-foursquare Location and Maps Pilgrim SDK by Foursquare Pilgrim SDK by Foursquare pincache Image Processing - PINCache SDK pingid User Authentication PingID by Ping Identity SDK PingID by Ping Identity SDK pingstart Analytics PingStart SDK - pinoperation Developer Tools - PINOperation SDK pinremoteimage Image Processing - PINRemoteImage SDK pinsightmedia Analytics Pinsightmedia SDK - pinterest-sdk Social Pinterest Sdk SDK Pinterest Sdk SDK pinyin4j Text Processing Pinyin4j SDK - pinyinlib Text Processing - PinYinLib SDK pixalate Security and Privacy Pixalate SDK Pixalate SDK pixolus Scanners and OCR Pixolus SDK Pixolus SDK pjsip Communication pjsip SDK - pkhud User Interface and Graphics - PKHUD SDK pkmultipartinputstream Networking - PKMultipartInputStream SDK pkrevealcontroller User Interface and Graphics - PKRevealController SDK placed-com Location and Maps Placed.com SDK Placed.com SDK placer Location and Maps Placer SDK Placer SDK places-by-google Location and Maps Places by Google SDK Places by Google SDK placesense-ebizu-by-lifesight Location and Maps PlaceSense/Ebizu by Lifesight SDK - plaid Payments and Commerce Plaid Link SDK Plaid Link SDK playfab Gaming and Game Engines PlayFab SDK PlayFab SDK playgap Gaming and Game Engines PlayGap SDK PlayGap SDK playhaven Gaming and Game Engines Playhaven SDK Playhaven SDK odeeo-playon Audio Processing PlayOn by Odeeo SDK PlayOn by Odeeo SDK playwire Ad Networks Playwire SDK Playwire SDK plcrashreporter Crash Reporting and Performance - PLCrashReporter SDK plivo Communication Plivo SDK - plotline Analytics Plotline SDK Plotline SDK plotprojects Location and Maps Plotprojects SDK Plotprojects SDK plugpdf Text Processing PlugPDF by ePapyrus SDK PlugPDF by ePapyrus SDK plus-ti Analytics Plus TI SDK - plus1-wapstart Ad Networks Plus1 WapStart SDK - pnchart Charts and Graphs - PNChart SDK pocket-change Ad Networks Pocket Change SDK Pocket Change SDK pocketsvg Image Processing - PocketSVG SDK pokkt Ad Networks POKKT SDK - pollfish Survey PollFish SDK PollFish SDK pop User Interface and Graphics - Pop SDK popupdialog User Interface and Graphics - PopupDialog SDK ppiawesomebutton User Interface and Graphics - PPiAwesomeButton SDK pprevealsideviewcontroller User Interface and Graphics - PPRevealSideViewController SDK prebid Ad Networks Prebid SDK Prebid SDK predic Analytics Predic SDK - predict Analytics Predict SDK Predict SDK pressenger Communication Pressenger SDK Pressenger SDK prettytime Developer Tools Prettytime SDK - prime31 Gaming and Game Engines Prime31 SDK Prime31 SDK primer Payments and Commerce Primer SDK Primer SDK primis-player Video Processing and Streaming Primis Player Video Discovery SDK Primis Player Video Discovery SDK promisekit Developer Tools - PromiseKit SDK promises Developer Tools - Promises by Google SDK promon Security and Privacy Promon SDK Promon SDK protobuf Text Processing Protobuf SDK Protobuf SDK prove Security and Privacy Prove SDK Prove SDK proxi Location and Maps Proxi.cloud SDK Proxi.cloud SDK proximi-io Location and Maps proximi.io SDK proximi.io SDK proxy-mobile Networking Proxy Mobile SDK Proxy Mobile SDK pspdfkit Text Processing PSPDFKit SDK PSPDFKit SDK pspdftextview Text Processing - PSPDFTextView SDK pstalertcontroller User Interface and Graphics - PSTAlertController SDK pubmatic-openwrap-openbid Ad Networks PubMatic OpenWrap - OpenBid SDK PubMatic OpenWrap - OpenBid SDK pubnub Communication PubNub SDK PubNub SDK pugpig Text Processing Pugpig SDK Pugpig SDK pulltorefresh User Interface and Graphics - PullToRefresh SDK pulsate Marketing Automation Pulsate SDK Pulsate SDK purchasely Payments and Commerce Purchasely SDK Purchasely SDK purelayout User Interface and Graphics - PureLayout SDK pusher Communication Pusher by MessageBird SDK Pusher by MessageBird SDK pushspring Push Notifications Pushspring SDK Pushspring SDK pushwoosh Push Notifications Pushwoosh SDK Pushwoosh SDK pushy Push Notifications Pushy SDK Pushy SDK pyze Analytics Pyze SDK Pyze SDK qbimagepicker Image Processing - QBImagePicker SDK qbpopupmenu User Interface and Graphics - QBPopupMenu SDK qiniu Backend and Cloud - Qiniu SDK qonversion Payments and Commerce Qonversion SDK Qonversion SDK qqtheme User Interface and Graphics Qqtheme SDK - qrcodereaderview Scanners and OCR QRCodeReaderView SDK - qrcodereaderviewcontroller Scanners and OCR - QRCodeReaderViewController SDK qriously Survey Qriously SDK - qt-project Developer Frameworks and No Code Development Qt project SDK Qt project SDK quadrant-locationdata Location and Maps Quadrant Location Data SDK - qualtrics Survey Qualtrics SDK Qualtrics SDK quantcast Analytics QuantCast SDK QuantCast SDK quantummetric Analytics Quantum Metric SDK Quantum Metric SDK quickappninja Developer Frameworks and No Code Development QuickAppNinja SDK - quickblox Communication QuickBlox SDK QuickBlox SDK radar-io Location and Maps Radar.io SDK Radar.io SDK Rakuten-dx Text Processing Rakuten DX Aquafadas SDK Rakuten DX Aquafadas SDK ramp-network Payments and Commerce Ramp Network SDK Ramp Network SDK rapyd Payments and Commerce Rapyd SDK Rapyd SDK ratreeview User Interface and Graphics - RATreeView SDK ravelin Security and Privacy Ravelin SDK Ravelin SDK razorpay Payments and Commerce Razorpay SDK Razorpay SDK rbbanimation User Interface and Graphics - RBBAnimation SDK rcswitch Connected Devices - rcswitch SDK react-native Developer Frameworks and No Code Development React Native SDK React Native SDK intent-react-ble-plx Connected Devices React Native BLE PLX by Intent SDK React Native BLE PLX by Intent SDK invertase Backend and Cloud React Native Firebase by Invertase SDK React Native Firebase by Invertase SDK react-native-mapview Location and Maps React Native Mapview SDK - react-native-permissions Security and Privacy React Native Permissions SDK - reanimated User Interface and Graphics React Native Reanimated SDK - react-native-vector-icons-by-oblador User Interface and Graphics React Native Vector Icons by Oblador SDK - react-native-device-info Developer Tools react-native-device-info SDK react-native-device-info SDK react-native-spinkit User Interface and Graphics - react-native-spinkit SDK reactivecocoa Developer Tools - ReactiveCocoa SDK rebound User Interface and Graphics Rebound SDK - receptiv Ad Networks Receptiv MediaBrix by Verve SDK Receptiv MediaBrix by Verve SDK recomposeviewcontroller User Interface and Graphics - REComposeViewController SDK recurly Payments and Commerce Recurly SDK Recurly SDK recyclerview-animators User Interface and Graphics RecyclerView Animators SDK - recyclerviewfastscroller User Interface and Graphics RecyclerViewFastScroller SDK - recyclerviewpager-custom User Interface and Graphics RecyclerViewPager Custom SDK - reflectasm Developer Tools ReflectASM SDK - regula-document-reader Scanners and OCR Regula Document Reader SDK Regula Document Reader SDK relinker Developer Tools ReLinker SDK - remenu User Interface and Graphics - REMenu SDK repro Analytics Repro SDK Repro SDK requery Database and Data Management requery SDK - residemenu User Interface and Graphics - RESideMenu SDK restkit Networking - RestKit SDK retency Marketing Automation Retency SDK - retrofit Networking Retrofit SDK - reveal Developer Tools - Reveal SDK reveal-mobile Analytics Reveal Mobile SDK Reveal Mobile SDK revenuecat Payments and Commerce RevenueCat SDK RevenueCat SDK revmob Ad Networks RevMob SDK RevMob SDK rhino Developer Tools Rhino SDK - rhythmone Ad Networks RhythmOne SDK - rippleeffect User Interface and Graphics RippleEffect SDK - rippll Marketing Automation Rippll SDK Rippll SDK riskified Security and Privacy Riskified SDK Riskified SDK rmdateselectionviewcontroller User Interface and Graphics - RMDateSelectionViewController SDK rmstepscontroller User Interface and Graphics - RMStepsController SDK rmstore Payments and Commerce - RMStore SDK rncachingurlprotocol Networking - RNCachingURLProtocol SDK rncryptor Security and Privacy - RNCryptor SDK rngridmenu User Interface and Graphics - RNGridMenu SDK reactnativeuilib User Interface and Graphics RNUILib by Wix SDK RNUILib by Wix SDK roam Location and Maps Roam SDK Roam SDK roboguice Developer Tools RoboGuice SDK - robospice Networking RoboSpice SDK - rokt Marketing Automation Rokt SDK Rokt SDK rollbar Crash Reporting and Performance Rollbar SDK Rollbar SDK rollout A/B Testing Rollout by CloudBees SDK Rollout by CloudBees SDK rongcloudsdk Communication - RongCloudSDK rootbeer Security and Privacy RootBeer SDK - roottools Security and Privacy RootTools SDK - roundedimageview User Interface and Graphics RoundedImageView SDK - route-me Location and Maps - Route-Me SDK rover Marketing Automation Rover SDK Rover SDK roximity Location and Maps Roximity SDK Roximity SDK rsa-outseer Security and Privacy RSA Outseer SDK RSA Outseer SDK rsa-securid Security and Privacy RSA SecurID SDK RSA SecurID SDK rskimagecropper Image Processing - RSKImageCropper SDK rubicon-project-sdk Ad Networks Rubicon Project SDK Rubicon Project SDK rudderstack Analytics RudderStack SDK RudderStack SDK rxandroid-rxjava Developer Tools RxAndroid/RxJava SDK - rxbus Developer Tools RxBus SDK - rxdatasources Developer Tools - RxDataSources SDK rx-lifecycle Developer Tools RxLifecycle SDK - rxswift Developer Tools - RxSwift SDK s4m Ad Networks S4M SDK S4M SDK safedk Security and Privacy SafeDK SDK SafeDK SDK exacttarget Marketing Automation Salesforce Email Studio ExactTarget SDK Salesforce Email Studio ExactTarget SDK salesforce-marketing-cloud Marketing Automation Salesforce Marketing Cloud SDK Salesforce Marketing Cloud SDK salesforce Backend and Cloud Salesforce Mobile SDK Salesforce Mobile SDK samkeychain Security and Privacy - SAMKeychain SDK samsung-pay Payments and Commerce Samsung Pay SDK - samtextview User Interface and Graphics - SAMTextView SDK sap-cloud Backend and Cloud SAP Cloud SDK SAP Cloud SDK sardine Security and Privacy Sardine SDK Sardine SDK savideorangeslider Video Processing and Streaming - SAVideoRangeSlider SDK sayollo Social Sayollo SDK - sbjson Text Processing - SBJson SDK sbtablealert User Interface and Graphics - SBTableAlert SDK scanbot Scanners and OCR Scanbot SDK Scanbot SDK scandit Scanners and OCR Scandit SDK Scandit SDK scanovate Scanners and OCR Scanovate SDK - schibsted User Authentication Schibsted SDK Schibsted SDK scifihifi-iphone Audio Processing - scifihifi-iphone SDK scissors-by-lyft Image Processing Scissors by Lyft SDK - sclalertview User Interface and Graphics - SCLAlertView SDK screenmeet Communication ScreenMeet SDK ScreenMeet SDK scsiriwaveformview Audio Processing - SCSiriWaveformView SDK sdcyclescrollview User Interface and Graphics - SDCycleScrollView SDK sdkbox-for-cocos Gaming and Game Engines SDKBOX SDKBOX sdnetworkactivityindicator User Interface and Graphics - SDNetworkActivityIndicator SDK sdp Communication SDP SDK - sdphotobrowser Image Processing - SDPhotoBrowser SDK sdwebimage Image Processing - SDWebImage SDK seattleclouds Analytics Seattleclouds SDK Seattleclouds SDK secure-preferences Security and Privacy Secure-preferences SDK - securemessage Security and Privacy - SecureMessage SDK secureudid Security and Privacy - SecureUDID SDK segment Analytics Segment SDK Segment SDK seismic User Support and CRM Seismic SDK - selectableroundedimageview User Interface and Graphics SelectableRoundedImageView SDK - selligent Marketing Automation Selligent SDK Selligent SDK sendbird Communication SendBird SDK SendBird SDK sendbird-calls Communication Sendbird Calls SDK Sendbird Calls SDK sendbird-uikit Communication Sendbird UIKit SDK Sendbird UIKit SDK sense360 Location and Maps Sense360 SDK Sense360 SDK sensorsdata Analytics Sensor Data Analytics SDK Sensor Data Analytics SDK sensorberg Location and Maps Sensorberg SDK Sensorberg SDK sensoro Location and Maps Sensoro SDK Sensoro SDK sentiance Location and Maps Sentiance SDK Sentiance SDK sentryswift Crash Reporting and Performance Sentry SDK Sentry SDK sentry-android Crash Reporting and Performance Sentry-Android Deprecated SDK - seon Security and Privacy Seon SDK Seon SDK set Developer Tools - Set SDK sevenswitch User Interface and Graphics - SevenSwitch SDK shallwead Ad Networks ShallWeAD SDK - shape-image-view User Interface and Graphics Shape Image View SDK - share-sdk Social - Share SDK shareinstall Attribution Shareinstall SDK Shareinstall SDK shield Security and Privacy Shield SDK Shield SDK shimmer User Interface and Graphics Shimmer by Facebook SDK Shimmer by Facebook SDK shimmer-for-android User Interface and Graphics Shimmer for Android SDK - shinobicharts Charts and Graphs ShinobiCharts SDK ShinobiCharts SDK shopify-buy Payments and Commerce Shopify Buy SDK Shopify Buy SDK shopkick Marketing Automation Shopkick SDK Shopkick SDK shortcutbadger User Interface and Graphics ShortcutBadger SDK - showcaseview User Interface and Graphics ShowcaseView SDK - shutipro Security and Privacy Shufti Pro SDK Shufti Pro SDK sialertview User Interface and Graphics - SIAlertView SDK sidemenu User Interface and Graphics - SideMenu SDK sift Security and Privacy Sift SDK Sift SDK signal360 Location and Maps Signal360 Beacons SDK - signalframe Networking SignalFrame Wireless Registry SDK - signpost Marketing Automation Signpost SDK - silvermob Ad Networks SilverMob SDK - silverpush Audience and Data Intelligence SilverPush SDK - simperium Backend and Cloud Simperium SDK Simperium SDK simple-facebook-sdk-for-android Social Simple Facebook SDK for Android - simple-framework Developer Frameworks and No Code Development Simple Framework SDK - simplecropview Image Processing SimpleCropView SDK - simplesidedrawer User Interface and Graphics SimpleSideDrawer SDK - sinch Communication Sinch SDK Sinch SDK singlespot Location and Maps Singlespot SDK Singlespot SDK singular Attribution Singular SDK Singular SDK siren User Interface and Graphics - Siren SDK sitecore-mobile-sdk Backend and Cloud Sitecore Mobile SDK Sitecore Mobile SDK skbounceanimation User Interface and Graphics - SKBounceAnimation SDK skobbler Location and Maps Skobbler SDK - skphotobrowser Image Processing - SKPhotoBrowser SDK skstableview User Interface and Graphics - SKSTableView SDK skydeo Video Processing and Streaming Skydeo SDK Skydeo SDK skyhook Location and Maps Skyhook SDK Skyhook SDK slacktextviewcontroller Communication - SlackTextViewController SDK slf4j Developer Tools SLF4J SDK - slidemenucontrollerswift User Interface and Graphics - SlideMenuControllerSwift SDK slidingmenu User Interface and Graphics SlidingMenu SDK - slimerefresh User Interface and Graphics - SlimeRefresh SDK smaato Ad Networks Smaato SDK Smaato SDK smaato-nextgen Ad Networks Smaato NextGen SDK Smaato NextGen SDK smaato-nextgen-mediation-admob Ad Mediation Smaato NextGen Mediation Adapter for AdMob SDK Smaato NextGen Mediation Adapter for AdMob SDK smaato-nextgen-mediation-applovin Ad Mediation Smaato NextGen Mediation Adapter for AppLovin SDK - smack Communication Smack SDK - smart-adserver Ad Networks Smart AdServer SDK Smart AdServer SDK smart-location-library Location and Maps Smart Location Library SDK - smartcmp-gdpr-consent Security and Privacy SmartCMP GDPR Consent SDK - smartdevicelink Connected Devices SmartDeviceLink SDK - smartlook Analytics Smartlook SDK Smartlook SDK smartmad Ad Networks SmartMad by MadHouse SDK SmartMad by MadHouse SDK smartrefreshlayout User Interface and Graphics SmartRefreshLayout SDK - smarttablayout User Interface and Graphics SmartTabLayout SDK - smartwhere-sdk-tamoco Location and Maps Smartwhere SDK (Tamoco) Smartwhere SDK (Tamoco) smartyads Ad Networks SmartyAds SDK SmartyAds SDK smoothprogressbar User Interface and Graphics SmoothProgressBar SDK - smpagecontrol User Interface and Graphics - SMPageControl SDK smssdk-for-ios Communication - SMSSDK-for-iOS smxmldocument Text Processing - SMXMLDocument SDK snackbar User Interface and Graphics Snackbar SDK - snackbar-android User Interface and Graphics SnackBar Android SDK - snapchat Social Snapchat Snap Kit SDK Snapchat Snap Kit SDK snapkit User Interface and Graphics - SnapKit SDK snappydb Database and Data Management SnappyDB SDK - snowplow Analytics Snowplow Analytics SDK Snowplow Analytics SDK soax Networking Soax SDK - socialauth Social Socialauth SDK - socketio Communication Socket.io SDK Socket.io SDK socketrocket Communication - SocketRocket SDK sockit Networking - SOCKit SDK berbix Security and Privacy Socure DocV Berbix SDK Socure DocV Berbix SDK corona-labs Gaming and Game Engines Solar2D Corona Labs SDK Solar2D Corona Labs SDK loggly Analytics SolarWinds Loggly SDK - soomla Security and Privacy Soomla Traceback Ad Quality by ironSource SDK Soomla Traceback Ad Quality by ironSource SDK sophos Security and Privacy Sophos SDK Sophos SDK sortabletableview User Interface and Graphics - SortableTableView SDK soundcloud Audio Processing Soundcloud SDK Soundcloud SDK sparkpost Communication SparkPost SDK SparkPost SDK sphero Connected Devices Sphero SDK Sphero SDK spin-kit User Interface and Graphics Spin Kit SDK - spinnerwheel User Interface and Graphics SpinnerWheel SDK - splitpane User Interface and Graphics - SplitPane SDK splitwise Payments and Commerce Splitwise SDK Splitwise SDK spotad Ad Networks SpotAd SDK SpotAd SDK spotify Audio Processing Spotify SDK Spotify SDK spottx Video Processing and Streaming Spottx SDK Spottx SDK spring-framework Developer Frameworks and No Code Development Spring Framework SDK - sproutsocial Social SproutSocial SDK SproutSocial SDK spruce User Interface and Graphics - Spruce SDK sqlcipher Database and Data Management SQLCipher SDK SQLCipher SDK sqlitedb Database and Data Management SQLiteDB SDK - sslkill-switch-by-nabla Security and Privacy SSLKill Switch by Nabla SDK - stackblur Image Processing StackBlur SDK - staggeredgridlayout User Interface and Graphics StaggeredGridLayout SDK - startapp Ad Networks Start.io StartApp SDK Start.io StartApp SDK statsig A/B Testing Statsig SDK Statsig SDK statusbarlert User Interface and Graphics - StatusBarLert SDK stitcher Audio Processing Stitcher Radio SDK Stitcher Radio SDK storekit Payments and Commerce - StoreKit SDK storyly User Interface and Graphics Storyly SDK Storyly SDK streamlabs Video Processing and Streaming Streamlabs SDK Streamlabs SDK stripe Payments and Commerce Stripe SDK Stripe SDK stylish User Interface and Graphics Stylish SDK - subsampling-scale-image-view Image Processing Subsampling Scale Image View SDK - sugarorm Database and Data Management SugarORM SDK - sugarrecord Database and Data Management - SugarRecord SDK sumbitmachine Developer Tools - SumbitMachine SDK sumo-logic Analytics Sumo Logic SDK Sumo Logic SDK sureswift Developer Tools - SureSwift SDK surveymonkey Survey SurveyMonkey SDK SurveyMonkey SDK survicate Survey Survicate SDK Survicate SDK svprogresshud User Interface and Graphics - SVProgressHUD SDK svpulltorefresh User Interface and Graphics - SVPullToRefresh SDK svwebviewcontroller User Interface and Graphics - SVWebViewController SDK swifthttp Networking - SwiftHTTP SDK swiftjson Text Processing - SwiftyJSON SDK swifty-user-defaults Developer Tools - Swifty User Defaults SDK swipecardview User Interface and Graphics SwipeCardView SDK - swiperefreshlayout User Interface and Graphics SwipeRefreshLayout SDK - switch-button User Interface and Graphics Switch Button SDK - sylk-suite Communication Sylk Suite SDK Sylk Suite SDK symphonic Audio Processing Symphonic SDK - synerise Marketing Automation Synerise SDK Synerise SDK syncframework Backend and Cloud SyncFramework SDK - synk Security and Privacy - Synk SDK systemui-tuner User Interface and Graphics SystemUI Tuner SDK - systumui-controller User Interface and Graphics - SystemUIController SDK taboola Ad Networks Taboola SDK Taboola SDK talkback User Interface and Graphics TalkBack SDK - talkdesk User Support and CRM Talkdesk SDK Talkdesk SDK tamoco Location and Maps Tamoco SDK Tamoco SDK tangotargeting Ad Networks TangoTargeting SDK TangoTargeting SDK tapjoy Ad Networks Tapjoy SDK Tapjoy SDK tapjoy-mediation Ad Mediation Tapjoy Mediation SDK Tapjoy Mediation SDK tapstream Attribution Tapstream SDK Tapstream SDK taras-maksymyk User Interface and Graphics - Taras Maksymyk SDK tbc-sdk-kotlin Payments and Commerce TBC SDK Kotlin - teamviewer Communication TeamViewer SDK TeamViewer SDK teanaps Analytics Teanaps SDK - tealium Analytics Tealium SDK Tealium SDK telepat Backend and Cloud Telepat SDK Telepat SDK telemedia Communication Telemedia SDK - tenor Social Tenor SDK Tenor SDK tensent-beacon Location and Maps Tensent Beacon SDK - tesseract Scanners and OCR Tesseract SDK - testfairy Developer Tools TestFairy SDK TestFairy SDK testflight Developer Tools - TestFlight SDK textview-for-android User Interface and Graphics TextView for Android SDK - the-odds-io Gaming and Game Engines The Odds IO SDK The Odds IO SDK theappsguru Developer Frameworks and No Code Development Theappsguru SDK - thecitysdk Backend and Cloud - TheCitySDK thinkingdata Analytics ThinkingData SDK ThinkingData SDK ticketmaster Payments and Commerce Ticketmaster SDK Ticketmaster SDK tikxml Text Processing TikXml SDK - tilt-spot Analytics Tilt Spot SDK Tilt Spot SDK timber Developer Tools Timber SDK - tink Payments and Commerce Tink SDK Tink SDK tiqets Payments and Commerce Tiqets SDK Tiqets SDK toast-android User Interface and Graphics Toast Android SDK - toastview User Interface and Graphics ToastView SDK - tobiimobile Analytics TobiiMobile SDK TobiiMobile SDK togglemenu User Interface and Graphics ToggleMenu SDK - tokbox-rtc Communication TokBox RTC SDK TokBox RTC SDK touchid Security and Privacy - TouchID SDK touchjson Text Processing - TouchJSON SDK touchwiz User Interface and Graphics Touchwiz SDK - trackingplan Analytics Trackingplan SDK Trackingplan SDK transmit Backend and Cloud - Transmit SDK trelloapi Backend and Cloud - TrelloAPI SDK tresense Analytics Tresense SDK Tresense SDK tripadvisor Payments and Commerce TripAdvisor SDK TripAdvisor SDK trueid User Authentication TrueID SDK TrueID SDK truelayer Payments and Commerce TrueLayer SDK TrueLayer SDK truemarketplace-sdk Payments and Commerce TrueMarketplace SDK - truescope Analytics TrueScope SDK TrueScope SDK truevault Backend and Cloud TrueVault SDK TrueVault SDK truex Ad Networks TrueX SDK TrueX SDK truesight Analytics TrueSight SDK TrueSight SDK tumblr Social Tumblr SDK Tumblr SDK tunein Audio Processing TuneIn SDK TuneIn SDK tvos Developer Tools - tvOS SDK twa-unity-sdk Gaming and Game Engines TWA Unity SDK TWA Unity SDK tweetcomposer Social - Tweet Composer SDK tweetdeck Social TweetDeck SDK TweetDeck SDK twilio Communication Twilio SDK Twilio SDK twitter Social Twitter SDK Twitter SDK twittercore Social TwitterCore SDK TwitterCore SDK twittertext Text Processing - TwitterText SDK typeface User Interface and Graphics Typeface SDK - ubimo Location and Maps Ubimo SDK Ubimo SDK ubiquity6 AR and VR Ubiquity6 SDK Ubiquity6 SDK ucweb User Interface and Graphics UCWeb SDK UCWeb SDK ultimate-android User Interface and Graphics Ultimate Android SDK - umeng Analytics UMeng SDK UMeng SDK umeng-analytics Analytics UMeng Analytics SDK UMeng Analytics SDK unbot Communication Unbot SDK Unbot SDK underscore Developer Tools - Underscore SDK unetanalytic Analytics UnetAnalytic SDK UnetAnalytic SDK unicorn User Interface and Graphics Unicorn SDK Unicorn SDK unisonsync Backend and Cloud UnisonSync SDK UnisonSync SDK unity-analytics Analytics Unity Analytics SDK Unity Analytics SDK unity-ads Ad Networks Unity Ads SDK Unity Ads SDK unity-remote-config A/B Testing Unity Remote Config SDK Unity Remote Config SDK unity3d Gaming and Game Engines Unity3D SDK Unity3D SDK unityui User Interface and Graphics - UnityUI SDK universaladapter User Interface and Graphics UniversalAdapter SDK - unreal-engine Gaming and Game Engines Unreal Engine SDK Unreal Engine SDK urbanairship Push Notifications Urban Airship SDK Urban Airship SDK userdefaults Developer Tools - UserDefaults SDK useresponse User Support and CRM UseResponse SDK UseResponse SDK userhabit Analytics UserHabit SDK UserHabit SDK userlocalanalytics Analytics UserLocal Analytics SDK UserLocal Analytics SDK uservoice User Support and CRM UserVoice SDK UserVoice SDK ustadmob Ad Networks UstadMob SDK UstadMob SDK uuidfield Developer Tools - UUIDField SDK vamp-plugin Audio Processing Vamp Plugin SDK Vamp Plugin SDK vandersonlimaml Developer Tools - VandersonLimaML SDK vectordrawable User Interface and Graphics VectorDrawable SDK - veinteractive Marketing Automation VeInteractive SDK VeInteractive SDK velocity User Interface and Graphics Velocity SDK - venmo Payments and Commerce Venmo SDK Venmo SDK venus Analytics Venus SDK Venus SDK verawallet Payments and Commerce VeraWallet SDK VeraWallet SDK veriff Security and Privacy Veriff SDK Veriff SDK veritransid Payments and Commerce - VeritransID SDK verto Communication Verto SDK Verto SDK vgmtrans Audio Processing VGMTrans SDK VGMTrans SDK viberate Social Viberate SDK Viberate SDK videoad-plugin-for-phonegap Ad Networks VideoAd Plugin for PhoneGap SDK - videoegg Video Processing and Streaming VideoEgg SDK VideoEgg SDK videojs Video Processing and Streaming VideoJS SDK VideoJS SDK viewdocumentreader Text Processing - ViewDocumentReader SDK viewpagerindicator User Interface and Graphics ViewPagerIndicator SDK - vim Developer Tools Vim SDK - vinted Payments and Commerce Vinted SDK Vinted SDK violin Audio Processing Violin SDK - virtusize AR and VR Virtusize SDK Virtusize SDK visa Payments and Commerce Visa SDK Visa SDK viu Video Processing and Streaming Viu SDK Viu SDK voicescale Communication VoiceScale SDK VoiceScale SDK volley Networking Volley SDK - vponads Ad Networks Vpon Ads SDK Vpon Ads SDK vrview AR and VR VRView SDK VRView SDK vrvideoview AR and VR - VRVideoView SDK vttabs User Interface and Graphics - VTTabs SDK vuforia AR and VR Vuforia Engine SDK Vuforia Engine SDK vungle Ad Networks Vungle SDK Vungle SDK walkin-walkins Location and Maps walkin-walkins SDK walkin-walkins SDK walkme User Interface and Graphics WalkMe SDK WalkMe SDK walmartlabs Payments and Commerce WalmartLabs SDK WalmartLabs SDK waze Location and Maps Waze SDK Waze SDK web3auth User Authentication Web3Auth SDK Web3Auth SDK webrtc Communication WebRTC SDK WebRTC SDK webtrekk Analytics Webtrekk by Mapp SDK Webtrekk by Mapp SDK wechat Social WeChat by Tencent SDK WeChat by Tencent SDK weex Developer Frameworks and No Code Development Weex by Alibaba SDK Weex by Alibaba SDK weibo Social Weibo SDK Weibo SDK wheelview User Interface and Graphics WheelView SDK - whisperpush Communication WhisperPush SDK WhisperPush SDK wikitudear AR and VR Wikitude AR SDK Wikitude AR SDK wiseuisdk User Interface and Graphics WiseUISDK - wistia Video Processing and Streaming Wistia SDK Wistia SDK wit-ai Communication Wit.ai by Meta SDK Wit.ai by Meta SDK wizworks Analytics WizWorks SDK WizWorks SDK wkwebview User Interface and Graphics - WKWebView SDK worklight Backend and Cloud Worklight SDK Worklight SDK worldpay Payments and Commerce Worldpay SDK Worldpay SDK wpstarterkit Developer Frameworks and No Code Development - WPStarterKit SDK wyzant Payments and Commerce Wyzant SDK Wyzant SDK xaxis Ad Networks Xaxis SDK Xaxis SDK xamarin Developer Frameworks and No Code Development Xamarin SDK Xamarin SDK xcdebuggerharness Developer Tools - XCDebuggerHarness SDK xcdynamiclabels User Interface and Graphics - XCDynamicLabels SDK xctest Developer Tools - XCTest SDK xgpush Push Notifications - XGPush SDK xiaomi Connected Devices Xiaomi SDK Xiaomi SDK xifin Backend and Cloud XIFIN SDK XIFIN SDK xircles Social Xircles SDK Xircles SDK xmlpullparser Text Processing XMLPullparser SDK - xmpp-framework Communication - XMPP Framework SDK yahoo-analytics Analytics Yahoo Analytics by Verizon Media SDK Yahoo Analytics by Verizon Media SDK yandex-maps Location and Maps Yandex Maps SDK Yandex Maps SDK yandex-mobile-ads Ad Networks Yandex Mobile Ads SDK Yandex Mobile Ads SDK yandex-mobile-metrica Analytics Yandex Metrica SDK Yandex Metrica SDK yapo Payments and Commerce Yapo SDK - yarncocontrol User Interface and Graphics - YarnCoControl SDK yash-log-java Developer Tools Yash Log Java SDK - yeahmobi Ad Networks YeahMobi SDK YeahMobi SDK yelp Location and Maps Yelp SDK Yelp SDK yicamera Image Processing - YiCamera SDK yieldmo Ad Networks Yieldmo SDK Yieldmo SDK youappi Ad Networks YouAppi SDK YouAppi SDK youbora Video Processing and Streaming Youbora SDK Youbora SDK youtube Video Processing and Streaming YouTube SDK YouTube SDK ytplayerview Video Processing and Streaming - YTPlayerView SDK yuan-pay Payments and Commerce Yuan Pay SDK Yuan Pay SDK yuku-androidbits Developer Tools Yuku AndroidBits SDK - yume Ad Networks Yume SDK Yume SDK yumi Ad Networks Yumi SDK Yumi SDK zanshin-io-aws-sdk Security and Privacy Zanshin.io AWS SDK Zanshin.io AWS SDK zapier Backend and Cloud Zapier SDK Zapier SDK zapp Developer Frameworks and No Code Development Zapp SDK Zapp SDK zeal Analytics Zeal SDK Zeal SDK zendesk User Support and CRM Zendesk SDK Zendesk SDK zepto Developer Tools Zepto SDK - zerokit Security and Privacy ZeroKit SDK ZeroKit SDK zetaads Ad Networks ZetaAds SDK ZetaAds SDK zimbra Communication Zimbra SDK Zimbra SDK zinnia Analytics Zinnia SDK Zinnia SDK zipzap Database and Data Management - ZipZap SDK zoho Marketing Automation, User Support and CRM Zoho SalesIQ SDK Zoho SalesIQ SDK zoom Communication Zoom Zapp SDK Zoom Zapp SDK zucks-ad-network Ad Networks Zucks Ad Network SDK Zucks Ad Network SDK zxing Scanners and OCR ZXing SDK ZXing SDK zxing-android-embedded Scanners and OCR ZXing Android Embedded SDK - • [How to find App IDs?](https://app.theneo.io/similarweb/api-v5/batch-api-general/batch-api-datasets/apps-dataset/how-to-find-app-ids.md): App IDs are unique identifiers that allow Similarweb’s APIs to locate and return data for specific mobile applications. Every app on iOS and Android has a distinct identifier that serves as its “address” in our system. Why you need App IDs Required for all app-related API calls and data requests Enable precise app targeting in competitive analysis Essential for tracking app performance and market intelligence Quick reference Platform ID format Example Android Package name com.whatsapp iOS Numeric ID 310633997 App IDs are case-sensitive, especially for Android apps. Always use the exact capitalization as it appears in the app store. Method 1: Using Similarweb APIs (recommended) App ID Search endpoint The fastest way to find app IDs without consuming data credits. Endpoint: GET https://api.similarweb.com/v1/app/{store}/find-app-name/ How it works: Returns app IDs related to your search term by matching against app ID, title, or author/developer name. Find App Name curl "https://api.similarweb.com/v1/app//find-app-name/?term=whatsapp" \ -H "api-key: YOUR_API_KEY" Site Related Apps endpoint Find mobile apps associated with websites in your analysis. This endpoint consumes credits. Use case: You’re analyzing amazon.com and want to find their mobile apps. Endpoint: /v1/website/{domain}/related-apps Related Apps curl "https://api.similarweb.com/v1/website/amazon.com/related-apps" \ -H "api-key: YOUR_API_KEY" Method 2: Extract from app store URLs Android (Google Play Store) 1 Visit the Google Play Store page Navigate to the app's page in the Play Store. 2 Copy the URL Copy the full URL from your browser address bar. 3 Extract the package name Take the value after id= . URL structure: https://play.google.com/store/apps/details?id={PACKAGE_NAME} App Google Play URL App ID WhatsApp https://play.google.com/store/apps/details?id=com.whatsapp com.whatsapp Instagram https://play.google.com/store/apps/details?id=com.instagram.android com.instagram.android TikTok https://play.google.com/store/apps/details?id=com.zhiliaoapp.musically com.zhiliaoapp.musically iOS (Apple App Store) 1 Visit the App Store page Navigate to the app's page in the App Store. 2 Copy the URL Copy the full URL from your browser address bar. 3 Extract the numeric ID Take the value after id in the URL path. URL structure: https://apps.apple.com/app/id{NUMERIC_ID} App Apple App Store URL App ID WhatsApp https://apps.apple.com/app/id310633997 310633997 Instagram https://apps.apple.com/app/id389801252 389801252 TikTok https://apps.apple.com/app/id835599320 835599320 Method 3: Using the Similarweb platform • [Company Dataset](https://app.theneo.io/similarweb/api-v5/batch-api-general/batch-api-datasets/company-dataset.md): Gain visibility into a business’s firmographics, size, and performance. Company Analysis provides insights into business size and market performance by analyzing and reporting at the company-entity level — the way competitors are typically viewed by businesses. Batch API and REST API have different keys. Use the correct API key for this query. Example request POST { "report_query": { "tables": [{ "vtable": "company_info", "granularity": "daily", "filters": {"domains": ["similarweb.com","google.com"]}, "metrics": [ "company_employee_range", "company_estimated_revenue_range", "company_headquarters_city", "company_headquarters_country", "company_headquarters_state", "company_headquarters_zip_code", "company_name", "hq_street_address" ], "latest": true }] } } Company firmographics table vtable: company_info Table URL: https://api.similarweb.com/batch/v5/request-report Primary keys: domains Metric Description Granularity Type company_name Company name. Monthly String company_headquarters_country Country of company headquarters. Monthly String company_headquarters_state State of company headquarters. Monthly String company_headquarters_city City of company headquarters. Monthly String company_headquarters_zip_code Zip code of company headquarters. Monthly String company_estimated_revenue_range Company's annual revenue range, generated from multiple sources using Similarweb's methodology. Monthly String company_employee_range Company number of employees range. Monthly String • [Technologies Dataset](https://app.theneo.io/similarweb/api-v5/batch-api-general/batch-api-datasets/technologies-dataset.md): The Technologies dataset offers comprehensive insights into more than 5,000 technologies used across the web. Updated daily, it provides data on technology adoption, utilization, and trends — making it an indispensable tool for lead generation, competitive analysis, and market research. Batch API and REST API use different keys. Use the correct API key for this dataset. Premium dataset: This dataset is available exclusively through selected subscription plans. Contact your Account Manager for more information. Example request Website Technographics { "report_query": { "tables": [{ "vtable": "technographics", "granularity": "daily", "filters": {"domains": ["similarweb.com","google.com"]}, "metrics": [ "installation_date", "technology_category", "technology_description", "technology_parent_category", "uninstalled_date" ], "latest": true }] } } Website technographics table vtable: technographics Table URL: https://api.similarweb.com/batch/v5/request-report Primary keys: domains Metric Description Granularity Use case installation_date Date when a technology was first installed or implemented on a website. Daily Track technology adoption rate and market penetration over time. uninstalled_date Date when a technology was removed or stopped being used by a website. Daily Analyze technology lifecycle, customer retention, and turnover. technology_description Detailed overview of what each technology does, its features, and applications. Daily Understand functionality and potential uses for market segmentation. technology_parent_category Categorizes each technology under a broader parent category (CRM, CMS, e-commerce platforms, etc.). Daily Broad market analysis and tracking shifts in major categories. technology_category More specific classification, providing insight into a technology's niche. Daily Granular trend analysis, niche competitive landscape, targeted lead generation. • [Ecommerce Dataset (Shopper Intent)](https://app.theneo.io/similarweb/api-v5/batch-api-general/batch-api-datasets/ecommerce-dataset-shopper-intent.md): This Batch API dataset helps companies monitor consumer demand, analyze shopper behavior, and optimize search strategies for the ecommerce world. Historical Data Availability: Up to 36 months of historical data, depending on your subscription plan and the data table (some are limited to 24 months). What you can track Sales performance — Track Amazon sales with views, units sold, and revenue, broken down by 1P/3P. Dive into product-level pricing, ratings, and reviews. On-site search — Amazon search data including volume, rankings, and clicks, with paid/organic and branded/generic breakdowns. Categories — Sales performance metrics at the category level including views, revenue, and conversion rates. Brands — Brand-level performance across categories with 1P/3P breakdowns. Products — Top-performing products with detailed metrics including ratings and reviews. Top brands in category / Top products in category — Competitive analysis within specific categories. Product keyword analysis / Top keywords in category / Top products and keywords in brands — Search and click analysis at multiple levels. Batch API and REST API use different authentication keys. Ensure you're using your Batch API key . 🔍 How to find category and brand names? Browse the full list of supported Amazon categories and brands we currently offer in this detailed guide: Available Amazon Categories and Brands . Getting started 1. Authentication CURL curl --location 'https://api.similarweb.com/batch/v5/request-report' \ --header 'api-key: {{API_KEY}}' \ --header 'Content-Type: application/json' \ --request POST \ --data body Available tables (vtables) Amazon Categories ( amazon_category_sales ) Table URL: https://api.similarweb.com/v3/batch/amazon_category_sales/request-report Primary keys: domain , category_id Metric Description Granularity amazon_category_sales_product_views Unique product views for the selected domain and category. Monthly, Weekly amazon_category_sales_revenue Revenue generated by the selected domain and category. Monthly, Weekly amazon_category_sales_units_sold Units sold in the selected domain and category. Monthly, Weekly amazon_category_sales_cvr Conversion rate (purchases / product views). Monthly, Weekly amazon_category_sales_revenue_1P / amazon_category_sales_revenue_3P Revenue from first-party and third-party sales. Monthly, Weekly amazon_category_sales_units_sold_1P / amazon_category_sales_units_sold_3P Units sold by first-party and third-party sales. Monthly, Weekly amazon_sales_category Name of the selected category. Monthly, Weekly Available Categories Check the full list of available Amazon categories on the Available Amazon Categories and Brands page. Categories example { "delivery_information": {"response_format": "csv"}, "report_query": { "tables": [{ "vtable": "amazon_category_sales", "granularity": "monthly", "latest": true, "filters": {"domains": ["amazon.com"], "category_ids": [-1]}, "metrics": [ "amazon_category_sales_product_views", "amazon_category_sales_units_sold", "amazon_category_sales_revenue", "amazon_category_sales_units_sold_1P","amazon_category_sales_units_sold_3P", "amazon_category_sales_revenue_1P","amazon_category_sales_revenue_3P", "amazon_sales_category","amazon_category_sales_cvr" ] }] } } Amazon Brands ( amazon_brand_sales ) Table URL: https://api.similarweb.com/v5/batch/amazon_brand_sales/request-report Primary keys: domain , brand , category_id Tracks brand performance metrics across categories with detailed seller-type breakdowns. Available metrics mirror the categories table but use amazon_brand_sales_* prefixes ( product_views , revenue , units_sold , cvr , revenue_1P , revenue_3P , units_sold_1P , units_sold_3P , category ). Granularity: Monthly, Weekly. Available Brands Check the full list of available Amazon brands on the Available Amazon Categories and Brands page. Top Brands in Category ( amazon_top_brand_sales_by_category ) Primary use case: Returns up to 80 top-performing brands within a category with their key metrics. Table URL: https://api.similarweb.com/v5/batch/amazon_top_brand_sales_by_category/request-report Primary keys: domain , category_id , brand Metric Description Granularity amazon_top_brand_sales_by_category_product_views Unique product views for top brands (up to 80 brands). Monthly, Weekly amazon_top_brand_sales_by_category_revenue Revenue generated by top brands. Monthly, Weekly amazon_top_brand_sales_by_category_units_sold Units sold for top brands. Monthly, Weekly amazon_top_brand_sales_by_category_cvr Conversion rate for top brands. Monthly, Weekly Example Request { "delivery_information": {"response_format": "json"}, "report_query": { "tables": [{ "vtable": "amazon_top_brand_sales_by_category", "granularity": "monthly", "latest": true, "filters": {"domains": ["amazon.com"], "brands": ["Nike"], "category_ids": [-1]}, "metrics": [ "amazon_top_brand_sales_by_category_revenue", "amazon_top_brand_sales_by_category_product_views", "amazon_top_brand_sales_by_category_cvr", "amazon_top_brand_sales_by_category_units_sold" ] }] } } Top Products in Category ( amazon_top_product_sales_by_category ) Primary use case: Detailed metrics for top-performing products within categories, including reviews and ratings. Table URL: https://api.similarweb.com/v5/batch/amazon_top_product_sales_by_category/request-report Primary keys: domain , category_id , asin Metric Description Granularity amazon_top_product_sales_by_category_product_views Unique views for top products. Monthly, Weekly amazon_top_product_sales_by_category_revenue Revenue generated by top products. Monthly, Weekly amazon_top_product_sales_by_category_units_sold Units sold for top products. Monthly, Weekly amazon_top_product_sales_by_category_average_unit_price Average unit price of top products. Monthly, Weekly amazon_top_product_sales_by_category_reviews Number of reviews for top products. Monthly, Weekly amazon_top_product_sales_by_category_rating Rating of top products. Monthly, Weekly amazon_top_product_sales_by_category_asin_name ASIN names of top products. Monthly, Weekly amazon_top_product_sales_by_category_brand Brands associated with top products. Monthly, Weekly amazon_top_product_sales_by_category_category_name Category names associated with products. Monthly, Weekly amazon_top_product_sales_by_category_category_depth Taxonomy depth of categories. Monthly, Weekly amazon_top_product_sales_by_category_parent_asin Parent ASIN ID. Monthly, Weekly amazon_top_product_sales_by_category_leaf_category_id / _name / _depth Leaf-category attributes. Monthly, Weekly Example Request { "delivery_information": {"response_format": "csv"}, "report_query": { "tables": [{ "vtable": "amazon_top_product_sales_by_category", "granularity": "monthly", "latest": true, "filters": {"domains": ["amazon.com"], "category_ids": [-1]}, "metrics": [ "amazon_top_product_sales_by_category_units_sold", "amazon_top_product_sales_by_category_revenue", "amazon_top_product_sales_by_category_product_views", "amazon_top_product_sales_by_category_average_unit_price", "amazon_top_product_sales_by_category_brand", "amazon_top_product_sales_by_category_asin_name", "amazon_top_product_sales_by_category_rating", "amazon_top_product_sales_by_category_reviews" ] }] } } Top Products in Brands ( amazon_top_product_sales_by_brand_and_category ) Primary use case: Analyzes top products for specific brands across categories. Table URL: https://api.similarweb.com/v5/batch/amazon_top_product_sales_by_brand_and_category/request-report Primary keys: domain , brands Metric Description Granularity amazon_top_product_sales_by_brand_and_category_product_views Unique views for top products by brand. Monthly, Weekly amazon_top_product_sales_by_brand_and_category_revenue Revenue generated by brand's top products. Monthly, Weekly amazon_top_product_sales_by_brand_and_category_units_sold Units sold for brand's top products. Monthly, Weekly amazon_top_product_sales_by_brand_and_category_average_unit_price Average unit price of brand's products. Monthly, Weekly amazon_top_product_sales_by_brand_and_category_reviews Number of reviews for brand's products. Monthly, Weekly amazon_top_product_sales_by_brand_and_category_rating Rating of brand's products. Monthly, Weekly amazon_top_product_sales_by_brand_and_category_asin_name ASIN names of products. Monthly, Weekly amazon_top_product_sales_by_brand_and_category_category_name Category names. Monthly, Weekly amazon_top_product_sales_by_brand_and_category_parent_asin Parent ASIN ID. Monthly, Weekly amazon_top_product_sales_by_brand_and_category_leaf_category_id / _name / _depth Leaf-category attributes. Monthly, Weekly Example Request { "delivery_information": {"response_format": "csv"}, "report_query": { "tables": [{ "vtable": "amazon_top_product_sales_by_brand_and_category", "granularity": "monthly", "latest": true, "filters": {"domains": ["amazon.com"], "brands": ["Nike"], "category_ids": [-1]}, "metrics": [ "amazon_top_product_sales_by_brand_and_category_category_name", "amazon_top_product_sales_by_brand_and_category_asin_name", "amazon_top_product_sales_by_brand_and_category_units_sold", "amazon_top_product_sales_by_brand_and_category_rating", "amazon_top_product_sales_by_brand_and_category_reviews", "amazon_top_product_sales_by_brand_and_category_average_unit_price", "amazon_top_product_sales_by_brand_and_category_product_views", "amazon_top_product_sales_by_brand_and_category_revenue" ] }] } } Product Keyword Analysis ( amazon_product_on_site_search_traffic_by_keyword ) Primary use case: Detailed keyword performance metrics for products including organic and paid search traffic. Table URL: https://api.similarweb.com/v5/batch/amazon_product_on_site_search_traffic_by_keyword/request-report Primary keys: domain , keyword , asin Metric Description Granularity amazon_product_on_site_search_traffic_by_keyword_brand Brand associated with the product's ASIN. Monthly, Weekly amazon_product_on_site_search_traffic_by_keyword_search_volume Total searches for the keyword. Monthly, Weekly amazon_product_on_site_search_traffic_by_keyword_organic_clicks Organic search clicks on the product. Monthly, Weekly amazon_product_on_site_search_traffic_by_keyword_paid_clicks Sponsored search clicks on the product. Monthly, Weekly amazon_product_on_site_search_traffic_by_keyword_keyword_organic_clicks Total organic clicks for the keyword. Monthly, Weekly amazon_product_on_site_search_traffic_by_keyword_keyword_paid_clicks Total sponsored clicks for the keyword. Monthly, Weekly amazon_product_on_site_search_traffic_by_keyword_asin_organic_clicks Aggregate organic clicks for main ASIN. Monthly, Weekly amazon_product_on_site_search_traffic_by_keyword_product_asin_paid_clicks Aggregate sponsored clicks for main ASIN. Monthly, Weekly amazon_product_on_site_search_traffic_by_keyword_branded Indicates whether the keyword is brand-specific. Monthly, Weekly amazon_product_on_site_search_traffic_by_keyword_avg_organic_ranking Average organic ranking position. Monthly, Weekly amazon_product_on_site_search_traffic_by_keyword_total_clicks Combined organic and sponsored clicks. Monthly, Weekly amazon_product_on_site_search_traffic_by_keyword_parent_asin Parent ASIN ID. Monthly, Weekly amazon_product_on_site_search_traffic_by_keyword_leaf_category_id / _name / _depth Leaf-category attributes. Monthly, Weekly Example Request { "delivery_information": {"response_format": "csv"}, "report_query": { "tables": [{ "vtable": "amazon_product_on_site_search_traffic_by_keyword", "granularity": "monthly", "latest": true, "filters": {"domains": ["amazon.com"], "keywords": ["shoes"]}, "metrics": [ "amazon_product_on_site_search_traffic_by_keyword_brand", "amazon_product_on_site_search_traffic_by_keyword_search_volume", "amazon_product_on_site_search_traffic_by_keyword_organic_clicks", "amazon_product_on_site_search_traffic_by_keyword_paid_clicks", "amazon_product_on_site_search_traffic_by_keyword_total_clicks", "amazon_product_on_site_search_traffic_by_keyword_branded", "amazon_product_on_site_search_traffic_by_keyword_avg_organic_ranking" ] }] } } Top Keywords in Category ( amazon_category_on_site_search_traffic ) Primary use case: Analyzes keyword performance within categories including click share and top brands. Table URL: https://api.similarweb.com/v5/batch/amazon_category_on_site_search_traffic/request-report Primary keys: domain , category , keyword Metric Description Granularity amazon_category_on_site_search_traffic_total_clicks Unique clicks on products (30-min session deduplication). Monthly, Weekly amazon_category_on_site_search_traffic_organic_clicks_share Percentage of organic clicks. Monthly, Weekly amazon_category_on_site_search_traffic_paid_clicks_share Percentage of paid clicks. Monthly, Weekly amazon_category_on_site_search_traffic_top_brand Brand receiving most clicks. Monthly, Weekly amazon_category_on_site_search_traffic_top_brand_share Top brand's click share percentage. Monthly, Weekly Example Request { "delivery_information": {"response_format": "csv"}, "report_query": { "tables": [{ "vtable": "amazon_category_on_site_search_traffic", "granularity": "monthly", "latest": true, "filters": {"domains": ["amazon.com"], "category_ids": [-1]}, "metrics": [ "amazon_category_on_site_search_traffic_total_clicks", "amazon_category_on_site_search_traffic_top_brand_share", "amazon_category_on_site_search_traffic_top_brand", "amazon_category_on_site_search_traffic_paid_clicks_share", "amazon_category_on_site_search_traffic_organic_clicks_share" ] }] } } Top Keywords in Brands ( amazon_brand_on_site_search_traffic ) Primary use case: Tracks keyword performance for specific brands including click metrics and share analysis. Table URL: https://api.similarweb.com/v5/batch/amazon_brand_on_site_search_traffic/request-report Primary keys: domain , category_id , brands Metric Description Granularity amazon_on_site_search_traffic_total_clicks Unique clicks on products (30-min session deduplication). Monthly, Weekly amazon_on_site_search_traffic_brand_clicks Unique clicks on brand's products. Monthly, Weekly amazon_on_site_search_traffic_brand_share Percentage of clicks on brand's products. Monthly, Weekly amazon_on_site_search_traffic_brand_organic_clicks_share Percentage of organic clicks on brand's products. Monthly, Weekly amazon_on_site_search_traffic_brand_paid_clicks_share Percentage of paid clicks on brand's products. Monthly, Weekly Example Request { "delivery_information": {"response_format": "csv"}, "report_query": { "tables": [{ "vtable": "amazon_brand_on_site_search_traffic", "granularity": "monthly", "latest": true, "filters": {"domains": ["amazon.com"], "brands": ["Nike"], "category_ids": [-1]}, "metrics": [ "amazon_on_site_search_traffic_total_clicks", "amazon_on_site_search_traffic_brand_share", "amazon_on_site_search_traffic_brand_organic_clicks_share", "amazon_on_site_search_traffic_brand_paid_clicks_share" ] }] } } Data retention: The download link remains valid for 30 days. We recommend saving it for some time in case you need our help troubleshooting. • [Set Up Shopper Intelligence API](https://app.theneo.io/similarweb/api-v5/batch-api-general/batch-api-datasets/ecommerce-dataset-shopper-intent/set-up-shopper-intelligence-api.md): AKA Shoppers intelligence The following metrics are available exclusively to Similarweb Shopper Intelligence customers with Batch API access . Shopper Intelligence — Similarweb’s eCommerce data — helps companies monitor consumer demand, analyze shopper behavior, and optimize search strategies for the eCommerce world. Step 1 — Submit a POST report request Make a POST call request with a JSON body or attached as a file as multipart/form-data. POST Python https://api.similarweb.com/batch/v5/request-report Python import requests url = "https://api.similarweb.com/v3/batch/shopper/request-report" payload = {'request': '/Users/Batchexample.json'} files = [] headers = { 'api-key': '{{your_api_key}}' } response = requests.request("POST", url, headers=headers, data=payload, files=files) print(response.text) Example JSON bodies Category level Brand level Top brands Category level { "domains": ["amazon.com"], "category_ids": [2335752011], "metrics": [ "category_sales_performance_product_views", "category_sales_performance_units_sold", "category_sales_performance_revenue", "category_sales_performance_cvr" ], "start_date": "2021-09", "end_date": "2021-11", "granularity": "monthly", "response_format": "csv" } Brand level { "domains": ["amazon.com"], "brands": [2335752011], "metrics": [ "brand_sales_performance_product_views", "brand_sales_performance_units_sold", "brand_sales_performance_revenue", "brand_sales_performance_cvr", "brand_sales_performance_revenue_1P", "brand_sales_performance_revenue_3P", "brand_sales_performance_units_sold_1P", "brand_sales_performance_units_sold_3P" ], "start_date": "2021-09", "end_date": "2021-11", "granularity": "monthly", "response_format": "csv" } Top brands { "domains": ["amazon.com"], "metrics": [ "brand_sales_performance_top_products_units_sold", "brand_sales_performance_top_products_revenue", "brand_sales_performance_top_products_product_views", "brand_sales_performance_top_products_average_unit_price", "brand_sales_performance_top_products_reviews", "brand_sales_performance_top_products_rating" ], "start_date": "2021-09", "end_date": "2021-11", "granularity": "monthly", "response_format": "csv" } Mandatory parameters Parameter Description Acceptable values domains Characters in domain name can include letters, numbers, dashes, and hyphens. amazon.com metrics See the list of supported metrics above. category_ids Full list of supported categories is available in the Shopper Intelligence reference. Data is only returned for categories included in your subscription. Customers subscribed to full domains do not need to include category_ids when requesting brand metrics. CategoryID start_date, end_date Daily granularity uses YYYY-MM-DD; monthly granularity uses YYYY-MM. Weekly: 2023-06-30 / Monthly: 2023-06 granularity Time series granularity. monthly, weekly_sunday response_format Output of the API call. JSON, csv, parquet, orc Optional parameters Parameter Description Acceptable values brands Choose brands from the list of supported brands. Amazon, etc. limit Number of results returned. The limit is per month of data. See the Shopper Intelligence metric table for details. Integer all_history Boolean. Default is false. true / false webhook_url A URL to ping when the status of your report changes. URL Step 2 — Get the report status After submitting your request and receiving a report ID, use the Request Report Status endpoint to check progress. GET Python Python import requests url = "https://api.similarweb.com/v3/batch/request-status/{{generated_report_id}}" payload = {} headers = { 'api-key': '{{your_api_key}}' } response = requests.request("GET", url, headers=headers, data=payload) print(response.text) Example responses Completed In Progress Completed { "data_points_count": 1779429, "download_url": "example_url.com", "status": "completed", "used_quota": 35589 } In Progress { "status": "pending" } The download link remains valid for 30 days. We recommend saving it for some time in case you need our help troubleshooting. • [Conversion Analysis (Site level) - All Traffic](https://app.theneo.io/similarweb/api-v5/batch-api-general/batch-api-datasets/conversion-analysis-site-level-all-traffic.md): Understand how effective websites are at converting visits. The Conversion Analysis dataset reveals key performance metrics such as converted visits and conversion rates, helping you benchmark competitors and optimize your digital strategy. Using Conversion Analysis in the Batch API You can uncover insights such as: Benchmark conversion rates across industries or domains — Compare how well different websites convert traffic across various industries or specific competitors. Track conversion trends over time — Analyze how conversion performance evolves month-over-month to identify seasonality, campaign impact, or optimization opportunities. This dataset provides All Traffic metrics at the domain level only . It does not support analysis of specific site sections within a domain. Sample request Sample { "delivery_information": {"response_format": "csv"}, "report_query": { "tables": [{ "vtable": "site_conversion", "granularity": "monthly", "latest": true, "filters": {"countries": ["US"], "domains": ["aliexpress.com"]}, "metrics": [ "site_sector", "total_site_visits", "total_site_converted_visits", "total_site_conversion_rate" ], "paging": {"limit": 10} }] } } Dataset: Conversion Analysis (Site Level) — All Traffic Table URL: https://api.similarweb.com/batch/v5/request-report vtable: site_conversion Primary keys: domains , countries Optional keys: sector Metrics Metric Description Granularity Type site_sector The sector to which the domain belongs. Monthly String total_site_visits All-traffic visits to the entire site. Monthly Double total_site_converted_visits All-traffic visits that ended on a 'Thank You' page. Monthly Double total_site_conversion_rate Percentage: All-traffic converted visits divided by total all-traffic visits. Monthly Double Filters and parameters Filter Type Description domains list List of websites of interest. countries list List of countries of interest. • [Google Cloud Storage Integration](https://app.theneo.io/similarweb/api-v5/batch-api-general/batch-api-integrations/google-cloud-storage-gcs-post.md): Integrate Similarweb’s Batch API with your Google Cloud Storage (GCS) environment. This integration allows clients to store and access exported data directly in their own GCS buckets. 1 Create a new Google Cloud connection Start by creating a new GCS integration to store and access data. This setup generates GCS access and secret keys that allow you to interact with your data securely in the specified bucket. 2 Save your credentials After creating the connection, you receive private credentials including a GCS service-account JSON. These credentials are essential to access the shared bucket securely — store them in a safe place. 3 Generate a report using the create-table URL Creating a table is similar to requesting a one-time report, but you modify the delivery information and call the create-table URL instead. This sets up a table that will store data continuously. 4 Modify the delivery information Adjust the delivery_information block to define where and how the data is delivered. Set the delivery method to google_bucket_access to store the data in your GCS bucket. 5 Specify the integration name Set the integration_name parameter to gcs_default to direct data to the appropriate integration. 6 Name your table Provide a unique name for your table. This name is used to identify and manage the table in your GCS bucket — choose something that corresponds to the data you'll store. 7 Run the request Once you've filled out the request body, submit it to create the table. After submission, the table is set up in your GCS bucket and the requested data is added to it. 8 Retrieve the table path After the table is created, you receive a location representing the GCS path (gs:÷…) where the table data is stored. Use this path to access the stored data. 9 Add data to the table To append more data to the table after it's been created, use the request-report URL. This adds new data to the existing table without replacing it. 10 Send data to the table By specifying the same integration_name and table_name as before, new data is added to your existing table. This keeps your data up to date with additional information as needed. 11 Keep field names consistent When appending data, response_format, delivery_method, integration_name, and table_name must match the values you used when the table was first created. Response Properties The response contains the information of the created integration. Property Description Example expiration_date str Date when the credentials expire 2025-03-21 gcs_bucket str The bucket where Similarweb will deliver the data sw-daas-production gcs_prefix str The path prefix inside the GCS bucket for this integration account_id/my_integration/ integration_name str The name of the created integration. (can not be changed) my_integration secret str A complete GCP service account JSON for use with the integration * The secret field in the response contains a Google service account JSON. To access your GCS integration programmatically (e.g., using PySpark),save this JSON to a file and use the GOOGLE_APPLICATION_CREDENTIALS environment variable to authenticate. • [Revoke GCS Integration (POST)](https://app.theneo.io/similarweb/api-v5/batch-api-general/batch-api-integrations/google-cloud-storage-gcs-post/revoke-gcs-integration-post.md): Deletes the specified GCS integration. All related tables must be revoked before this step. Response Properties The response contains the status of the revoke request. Can be a successful revoke status if the integration was revoked or a bad request if the integration do not exist. Property Description Example message str Confirmation that the integration was successfully revoked "Integration my_integration revoked." Error Response (if tables exist): JSON { "error": "Integration 'my_integration' still has active tables: table_1, table_2. Please revoke the tables before revoking the integration." } Error Properties: Property Description Example error str Explanation of the failure reason "Integration 'my_integration' still has active tables: table_1, table_2." ️ Note: All tables must be revoked first. • [Revoke GCS Table (POST)](https://app.theneo.io/similarweb/api-v5/batch-api-general/batch-api-integrations/google-cloud-storage-gcs-post/revoke-gcs-table-post.md): Revoke a table from a destination account. • [Renew GCS Integration (POST)](https://app.theneo.io/similarweb/api-v5/batch-api-general/batch-api-integrations/google-cloud-storage-gcs-post/renew-gcs-integration-post.md): Extends the expiration period of a GCS integration. Response Properties The response contains the information of the created integration. Property Description Example expiration_date str New expiration date for the integration credentials 2026-03-27 integration_name str The name of the renewed integration my_integration • [Amazon S3 Integration](https://app.theneo.io/similarweb/api-v5/batch-api-general/batch-api-integrations/amazon-s3-integration.md): Access your Similarweb Batch API reports via Amazon S3. Access your Batch API reports directly from an Amazon S3 bucket maintained by Similarweb, so you can easily process your custom reports and automatically integrate them into your own database systems. Compatible with Similarweb Batch API only To get access, speak to a Similarweb representative. Setup instructions 1 Create a new S3 connection Start by creating a new S3 integration to store and access data. This setup generates AWS access and secret keys that allow you to interact with your data securely in the specified S3 bucket. 2 Save your credentials After creating the connection, you receive private credentials including AWS access keys. These keys are essential to access the shared S3 bucket securely — store them in a safe place. 3 Generate a report using the create-table URL Creating a table is similar to requesting a one-time report, but you modify the delivery information and call the create-table URL instead. This sets up a table that will store data continuously. 4 Modify the delivery information Adjust the delivery_information block to define where and how the data is delivered. Set the delivery method to bucket_access to store the data in your S3 bucket. 5 Specify the integration name Set the integration_name parameter to s3_default to direct data to the appropriate integration. 6 Name your table Provide a unique name for your table. This name is used to identify and manage the table in your S3 bucket — choose something that corresponds to the data you'll store. 7 Run the request Once you've filled out the request body, submit it to create the table. After submission, the table is set up in your S3 bucket and the requested data is added to it. 8 Retrieve the table path After the table is created, you receive a location representing the S3 path where the table data is stored. Use this path to access the stored data. 9 Add data to the table To append more data to the table after it's been created, use the request-report URL. This adds new data to the existing table without replacing it. 10 Send data to the table By specifying the same integration_name and table_name as before, new data is added to your existing table. This keeps your data up to date with additional information as needed. 11 Keep field names consistent When appending data, response_format, delivery_method, integration_name, and table_name must match the values you used when the table was first created. To access your reports securely via the S3 bucket, use the ‘Get-S3-Credentials’ endpoint to retrieve a personalized AWS access key. Endpoint- [GET] https://api.similarweb.com/batch/v5/s3-connector/setup Response - 200 OK • [S3 Integration (POST)](https://app.theneo.io/similarweb/api-v5/batch-api-general/batch-api-integrations/amazon-s3-integration/s3-integration-post.md): This endpoint creates a new S3 integration, and generates an AWS access and secret keys to be used for reading the data written to this integration's folders. Response The response contains the information of the created integration. Property Description Example aws access key str The AWS access key to use when reading the data written from one of the integration's tables. "AKIA1BABCS1234A1ABCD" aws secret key str The AWS secret key to use when reading the data from one of the integration's tables. "AB1A41AabcA8abABaABCDEfG23Hi2JKlMN34O6pq" expiration_date str The date until which the access key and secret key are active (after this date the keys would expire if not renewed). "2024-01-01" integration_name str The name of the created integration. (can not be changed) "s3_default" s3_bucket str The name of the S3 bucket in which the data will be written. "my_bucket" s3_prefix str The path in S3 in which the data will be written to. "account id/my new_integration/" • [Renew S3 Integration (POST)](https://app.theneo.io/similarweb/api-v5/batch-api-general/batch-api-integrations/amazon-s3-integration/renew-s3-integration-post.md): This endpoint creates a new S3 integration, and generates an AWS access and secret keys to be used for reading the data written to this integration's folders. Response The response contains the information of the created integration. Property Description Example aws access key str The AWS access key to use when reading the data written from one of the integration's tables. "AKIA1BABCS1234A1ABCD" aws secret key str The AWS secret key to use when reading the data from one of the integration's tables. "AB1A41AabcA8abABaABCDEfG23Hi2JKlMN34O6pq" expiration_date str The date until which the access key and secret key are active (after this date the keys would expire if not renewed). "2024-01-01" integration_name str The name of the created integration. (can not be changed) "s3_default" s3_bucket str The name of the S3 bucket in which the data will be written. "my_bucket" s3_prefix str The path in S3 in which the data will be written to. "account id/my new_integration/" • [Revoke S3 Table (POST)](https://app.theneo.io/similarweb/api-v5/batch-api-general/batch-api-integrations/amazon-s3-integration/revoke-s3-table-post.md): This endpoint deletes a table created under a certain S3 integration. Request: -------- ### Body Params table_name str The name of the table to be revoked. "my_table" integration_name str The name of the integration from which the table should be revoked. "my_integration" Response -------- The response contains the status of the revoke request. Can be a successful revoke status if the table was revoked or a bad request if the integration or table do not exists. status str The status of the revoke request. "The table 'my_table_1' revoked successfully." • [Revoke S3 Integration (POST)](https://app.theneo.io/similarweb/api-v5/batch-api-general/batch-api-integrations/amazon-s3-integration/revoke-s3-integration-post.md): This endpoint deletes the S3 integration. Response The response contains the status of the revoke request. Can be a successful revoke status if the integration was revoked or a bad request if the integration do not exist. Property Description Example integration_name str The name of the revoked integration. "my_integration" status str The status of the revoke request. "Lease revoked" • [Snowflake API Integration](https://app.theneo.io/similarweb/api-v5/batch-api-general/batch-api-integrations/snowflake-api-integration.md): Integrate Similarweb Batch API reports into your Snowflake account. Store, access, and analyze Similarweb data directly from your Snowflake database, so you can easily perform queries on your custom reports, or automatically integrate them into your own analytics or visualization tools. Compatible with Similarweb Batch API only To enable access to the Similarweb Snowflake connector, please speak to a Similarweb representative. Snowflake integration instructions 1 Create a new Snowflake connection Start by creating a Snowflake integration to store and access your data. You'll need to provide your snowflake_account_id (locator ID) and snowflake_region. 2 Generate a report using the create-table URL Creating a table is similar to requesting a one-time report, but you modify the delivery information and call the create-table URL instead. This sets up a table that will store data continuously. 3 Modify the delivery information Adjust the delivery_information block to define where and how the data is delivered. Set the delivery method to snowflake to store the data in your Snowflake account. 4 Specify the integration name Set the integration_name parameter to snowflake_default to direct data to the appropriate integration. 5 Name your table Provide a unique name for your table. This name is used to identify and manage the table in Snowflake — choose something that corresponds to the data you'll store. 6 Run the request Once you've filled out the request body, submit it to create the table. After submission, the table is set up in Snowflake and the requested data is added to it. 7 Retrieve the table path After the table is created, you receive a share_name representing the Snowflake path where the table data is stored. Use this path to access the stored data. 8 Add data to the table To append more data to the table after it's been created, use the request-report URL. This adds new data to the existing table without replacing it. 9 Send data to the table By specifying the same integration_name and table_name as before, new data is added to your existing table. This keeps your data up to date with additional information as needed. 10 Keep field names consistent When appending data, delivery_method, integration_name, and table_name must match the values you used when the table was first created. The screenshots below are taken from Snowflake’s latest user interface (UI), Snowsight. If you are using a different version of the UI, your account might look different. Step 1 Retrieve your Snowflake locator ID. This can be found on the platform’s left sidebar. Note: Your reports can only be shared to 1 Snowflake ID. Step 2 Retrieve your Snowflake region using the following request: • [Snowflake Integration (POST)](https://app.theneo.io/similarweb/api-v5/batch-api-general/batch-api-integrations/snowflake-api-integration/snowflake-integration-post.md): This endpoint creates a new Snowflake integration, and generates a Snowflake share. Request: Body Params Property Description Example snowflake_account_id str The locator of the Snowflake account to be integrated with. "ABC12345" snowflake_region str The region of the Snowflake account to be integrated with. "AWS_EU_NORTH_1" Response The response contains the information of the created integration. If the integration was created, the name of the integration and the share name will be returned, otherwise, a message indicating the results will be returned. Property Description Example integration_name str The name of the created integration. "snowflake_defult" share_name str The Snowflake share created for the integration. Usually "SIMILARWEB_{your integration name}_{your Similarweb account ID} "SIMILARWEB_SNOWFLAKE_DEFULT_12345678" Note: If the requested region hasn't been used before to share tables, a new region is created. This process might take a few minutes, the response message will indicate this is the case. • [Revoke Snowflake Integration (POST)](https://app.theneo.io/similarweb/api-v5/batch-api-general/batch-api-integrations/snowflake-api-integration/revoke-snowflake-integration-post.md): This endpoint deletes Snowflake integrations. Request: -------- ### Body Params integration_names List[str] An array of the integration names to be revoked. ["my_snowflake_integration", "my_snowflake_integration_2"] revoke_all bool Whether to revoke ALL of the account's Snowflake integrations. False Response -------- The response contains an array of the revoked integrations names. revoked integrations List[str] An array of the revoked integrations names. ["my_snowflake_integration", "my_snowflake_integration_2"] • [Get All Snowflake Integration Tables (GET)](https://app.theneo.io/similarweb/api-v5/batch-api-general/batch-api-integrations/snowflake-api-integration/get-all-snowflake-integration-tables-get.md): This endpoint lists all the tables created under a certain S3 integration or shared with it. Response The response contains a TablesList response, listing all tables accessible using the given integration. When no integration name is provided - the default integration name is “s3_default”. TablesList Object This object contains all tables the user can access using the given integration. Property Description Example shared_tables List[SharedTable] The tables shared with the integration. [ "global_daily" ] tables List[IntegrationTable] The tables created within the integration. [ "site_visits" ] Note: This endpoint is relevant only if the requesting user has a set tables in his integration on S3 or some tables have been shared with his integration. SharedTable Object This object contains the information of a table shared with the integration from another integration. These tables are not owned by the user’s account. Property Description Example location str The S3 location of the shared table. "s3://dummy_bucket/12345678/my_integration/global_daily" table_name str The name of the shared table. "global_daily" IntegrationTable Object The object contains the information of a table defined within the given integration (usually these tables are created by the user himself). Property Description Example columns Dict[str, List[str]] The table's columns names. \{ "names": [ "domain", "country", "date", "all_traffic_visits", "desktop_visits", "mobile_visits" ] } granularity str The granularity of the data in the table. Can be 'daily', 'weekly' or 'monthly'. "daily" location str The S3 location where the table's data is saved. "s3://dummy_bucket/12345678/integration_1/site_visits" metrics List[str] The metrics that their data is included in the table. [ "all_traffic_visits", "desktop_visits", "mobile_visits" ] table_name str The name of the table. "site_visits" vtable str The name of the vtable from which the data is extracted. "traffic_and_engagement" • [Salesforce Connector](https://app.theneo.io/similarweb/api-v5/batch-api-general/batch-api-integrations/salesforce-connector.md): Use the Similarweb Salesforce Connector to automatically enrich your accounts, contacts, and leads, strengthening the quality of your pipeline and increasing sales efficiency. The connector includes 17 vital metrics, including traffic, web category, HQ location, engagement metrics, and many more. Watch the tutorial video to get started or read the full guide below to get a step-by-step walkthrough of the integration process: Setup manual (PDF): Open the setup manual Contact us today to find out how to enrich your leads, contacts, and accounts with Similarweb. • [Get All Account Integrations (GET)](https://app.theneo.io/similarweb/api-v5/batch-api-general/batch-api-integrations/get-all-account-integrations-get.md): This endpoint provides a list of all of the account's integrations (S3 integrations and Snowflake integrations). Response The response contains all integrations created under the user's account. IntegrationsList Object This object contains a list of all integrations created under the user's account. Property Description Example S3 List[S3Integration] A list of all of the account's S3 integrations. [ "my integrations 1", my integrations 2" ] Snowflake List[SnowflakeIntegration] A list of all of the account's Snowflake integrations. [ "my snowflake integration", "snowflake_default", ] S3Integration Object This object describes the S3 integration. Property Description Example expiration_date str The date after which the integration will not be active. "2024-06-06" integration_name str The name of the integration. "my integrations 1" Snowflake Integration Object This object describes the Snowflake integration. Property Description Example client account id str The Snowflake account ID (AKA the account locator). "ABC12345" integration_name str The Snowflake integration name. "snowflake_default" share_name str The snowflake share name. "SIMILARWEB 12345678 snowflake_default" • [Webhook Endpoints](https://app.theneo.io/similarweb/api-v5/batch-api-general/webhook-endpoints.md): Webhooks in Similarweb: Real-Time Notifications for Your Data Needs Webhooks let you stay informed about events and updates from the Similarweb API in real time. By subscribing to webhook notifications, your applications and systems are always up to date with the latest insights without the need for constant polling. Introduction to webhooks Webhooks are a mechanism for receiving real-time notifications when specific events occur within the Similarweb API. Instead of repeatedly querying the API for updates, webhooks let Similarweb send POST requests directly to your endpoints as soon as an event of interest takes place. Real-time updates — Know immediately when your report is available to download. Automations — Build automations around your reporting and dashboards. Setting up webhooks 1 Configure your endpoint Create a URL in your application that can receive HTTP POST requests from Similarweb. 2 Validate using the webhook test endpoint Use the Check Webhook endpoint to validate that your webhook integration is successful. 3 Use your validated URL with report endpoints Once validated, include the webhook_url field in your report request body. Test webhook request POST Python POST POST https://api.similarweb.com/v3/batch/webhooks/test { "webhook_url": "http://slack.com/example_url/abc" } Python import requests url = "https://api.similarweb.com/v3/batch/webhooks/test" payload = "{\n\"webhook_url\": \"http://slack.com/example_url/abc\"\n}" headers = { 'api-key': '{{api_key}}' } response = requests.request("POST", url, headers=headers, data=payload) print(response.text) The notification performs a POST with the following body: Test webhook output { "event_type": "test_webhook_endpoint", "payload": "Webhook Integration with Similarweb is successful!" } Confirm in your internal system that you’ve received the test_webhook_endpoint event — it should be invoked immediately. Timeout occurs after 5 seconds; a timeout will cause failure. Use the validated URL with report endpoints POST request-report POST https://api.similarweb.com/batch/v4/request-report { "webhook_url": "http://slack.com/example_url/abc", "domains": ["amazon.com"], "category_ids": [2335752011], "metrics": [ "category_sales_performance_product_views", "category_sales_performance_units_sold", "category_sales_performance_revenue", "category_sales_performance_cvr" ], "start_date": "2021-09", "end_date": "2021-11", "granularity": "monthly", "response_format": "csv" } When the report status changes, the webhook is triggered. Possible Report Statuses: "processing", "complete", or "internal_error". • [Test Your Webhooks (GET)](https://app.theneo.io/similarweb/api-v5/batch-api-general/webhook-endpoints/test-your-webhooks-get.md): This endpoint provides you with the ability to test your webhooks against internal Similarweb services that might want to send you notifications. 📘 General Note Regarding Webhooks When submitting a URL as a webhook we will always try to trigger it with an HTTP POST request. • [Getting Started](https://app.theneo.io/similarweb/api-v5/similarweb-mcp/mcp-setup.md): Set up the MCP integration with the Similarweb API V5. Get your API key, configure the MCP server endpoint, and connect to AI-enabled workflows. • [MCP Integrations](https://app.theneo.io/similarweb/api-v5/similarweb-mcp/available-integrations.md): Explore the available integrations for the Similarweb MCP server in API V5. Connect to tools like Claude, Cursor, Copilot Studio and automate digital intelligence workflows. • [Claude MCP Integration](https://app.theneo.io/similarweb/api-v5/similarweb-mcp/available-integrations/claude-integration.md): Connect Similarweb MCP with Claude to bring real-time web and app insights into your AI workflows using our standardized Model Context Protocol server. • [Cursor MCP Integration](https://app.theneo.io/similarweb/api-v5/similarweb-mcp/available-integrations/cursor-integration.md): Connect the Similarweb MCP server with Cursor. Learn how to configure the server URL and API key so Cursor can access web data and support your development workflow. • [ChatGPT MCP Integration](https://app.theneo.io/similarweb/api-v5/similarweb-mcp/available-integrations/chatgpt-integration.md): Connect Similarweb to ChatGPT and access trusted insights inside your chats. • [Microsoft Copilot MCP Integration](https://app.theneo.io/similarweb/api-v5/similarweb-mcp/available-integrations/microsoft-copilot-integration.md): Learn how to integrate the Similarweb MCP server with Microsoft Copilot. Set up your API key and server endpoint so Copilot can access web and app insights. • [Perplexity MCP Integration](https://app.theneo.io/similarweb/api-v5/similarweb-mcp/available-integrations/perplexity-mcp-integration.md): Similarweb is available as an official connector in Perplexity. Once connected, Perplexity can access Similarweb's digital intelligence data directly within your conversations. Ask questions in plain language and get answers backed by real traffic, audience, keyword, and app data. No switching tabs, no exports, no manual lookups. The connector handles everything behind the scenes; all you do is authenticate once and start asking. With Similarweb connected, Perplexity draws on 85+ data endpoints covering web analytics, competitive intelligence, audience demographics, app performance, keyword rankings, and more. Who Has Access To activate the Similarweb connector, you need an active Similarweb subscription with API access. This includes: Business and Enterprise plan subscribers, where API access is included as part of your plan. API standalone package subscribers, where full connector access is included. Data access through the connector mirrors your existing Similarweb subscription. Access is scoped to the specific datasets, regions, and historical ranges included in your plan. Interested in getting access? Contact Similarweb Sales to learn more about plan options and available datasets. How to Connect The Similarweb connector is available natively inside Perplexity. No third-party tools or manual server setup required. Follow the steps below to get connected. Step 1: Open the Connectors menu Open Perplexity in your web browser or launch the Perplexity desktop application. In the left-hand sidebar, click Customize . Select the Connectors tab at the top of the page. Step 2: Find the Similarweb connector In the Connectors page, use the Search all connectors bar to look for Similarweb . Click the Similarweb result to open the connector details. Step 3: Authenticate with your API key Authentication is handled via your Similarweb API key, the same key used to access the Similarweb REST API. Click Add connector on the Similarweb connector page. You'll be redirected to a Similarweb authentication page. Enter your Similarweb API key when prompted. Confirm to complete the setup. Once authenticated, the connector will show as connected and is ready to use across your conversations. You can find your API key in the Similarweb platform under Account Settings → Data Tools → REST API . Using Similarweb in your conversations Once connected, Perplexity can call the Similarweb connector whenever your question requires digital intelligence data. There are two ways to trigger it: Mention it directly: Type @Similarweb in your prompt to call the connector explicitly, for example: "@Similarweb compare the traffic of Booking.com and Expedia." Ask in context: Even without mentioning Similarweb, Perplexity will detect when your question needs traffic, audience, or competitive data and activate the connector automatically. Use Cases The Similarweb connector gives Perplexity access to 75+ data endpoints across web, app, search, and shopper intelligence. Below are examples of what you can ask, organized by dataset. Traffic & Engagement "How has openai.com's traffic grown over the past 12 months? Break it down by month and show me total visits, unique visitors, and average visit duration." Use this to track competitor momentum, validate market expansion, or benchmark your own site's growth against the category. Marketing Channel Mix "What does Booking.com's traffic channel breakdown look like? Compare direct, organic search, paid search, social, referrals, and email for the last 3 months." Use this to reverse-engineer competitor acquisition strategies and identify which channels they're investing in. Audience Demographics & Interests "What does the audience of nytimes.com look like in terms of age, gender, and top interests? How does it compare to washingtonpost.com?" Use this to inform persona development, ad targeting, and content positioning decisions. Keyword & SEO Performance "Show me the top 20 keywords driving organic traffic to shopify.com. Include search volume, position, and traffic share." Use this to surface high-value keywords competitors are ranking for and uncover SEO opportunities. App Performance "How many monthly active users does the Instagram Android app have globally? Show the trend over the past 6 months alongside session count and average session duration." Use this to benchmark app performance, track competitor growth, and evaluate market readiness. Shopper Intelligence "What are the top-selling brands in the 'running shoes' category on Amazon US in the last quarter? Show units sold and average selling price." Use this to monitor e-commerce category dynamics, benchmark brand performance, and identify market share shifts. FAQ Authentication Where do I find my Similarweb API key? Log in to the Similarweb platform, go to Account Settings → Data Tools → REST API . You can copy your existing key or generate a new one. If you don't see this section, your subscription may not include API access. Contact your account manager to confirm. Can I use the same API key across multiple AI platforms? Yes. The same API key works across every platform where the Similarweb connector is available (Perplexity, ChatGPT, Claude, Manus, and others). Usage from all sources is counted against your overall API credit allocation. Do I need to re-authenticate periodically? No. Once connected, the integration remains active. You only need to re-authenticate if you regenerate your API key in the Similarweb platform. Data & Querying Why doesn't Perplexity pull Similarweb data for some of my questions? Perplexity decides when to call the connector based on the context of your question. If the question doesn't clearly require web, app, or competitive intelligence data, it may answer from general knowledge instead. To force the connector, type @Similarweb in your prompt. Which countries and date ranges are available? Both depend on your Similarweb subscription. Country coverage and historical depth are aligned with the datasets included in your plan. Refer to your subscription details or contact your account manager for the full scope. Why are the results different from what I see in the Similarweb platform? Make sure you're querying the same country, date range, and web source (desktop, mobile, or total) in both places. Slight differences in aggregation methodology between the platform and the API can account for minor variances. For data fidelity questions, contact Similarweb support. Credits & Cost Does using the Similarweb connector consume API credits? Yes. Every query through the connector consumes API credits from your Similarweb subscription, just like a direct API call. The number of credits consumed depends on the volume of data returned. More granular queries (daily data over long ranges, multi-metric requests) consume more credits than simpler lookups. Where can I monitor my API credit usage? Your API credit consumption is visible in the Similarweb platform under Account Settings → Data Tools → REST API . This reflects credits consumed across all API channels, including the Perplexity connector. What happens if I run out of API credits? Once your allocation is exhausted for the billing period, queries will return an error. Contact your Similarweb account manager to discuss increasing your credit limit or upgrading your plan. Is there a way to minimize credit consumption? Be specific in your prompts. Narrower date ranges, fewer metrics per query, and monthly (rather than daily) granularity will all consume fewer credits. • [FAQ](https://app.theneo.io/similarweb/api-v5/support-and-faq/faq.md): Explore frequently asked questions about the Similarweb API V5. Find guidance on authentication, data credits, error codes, integration and account setup. • [Country Codes](https://app.theneo.io/similarweb/api-v5/support-and-faq/country-codes.md): View the country codes used by the Similarweb API V5. Learn which ISO 3166 codes represent each region and how to use them in your queries. • [Check Capabilities](https://app.theneo.io/similarweb/api-v5/support-and-faq/check-capabilities.md): Use the Check Capabilities endpoint in Similarweb API V5 to view your account’s remaining credits, access filters, data ranges, and usage features.