99 datasets found
  1. Mobile internet usage reach in North America 2020-2029

    • statista.com
    Updated Feb 5, 2025
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Statista Research Department (2025). Mobile internet usage reach in North America 2020-2029 [Dataset]. https://www.statista.com/topics/779/mobile-internet/
    Explore at:
    Dataset updated
    Feb 5, 2025
    Dataset provided by
    Statistahttp://statista.com/
    Authors
    Statista Research Department
    Description

    The population share with mobile internet access in North America was forecast to increase between 2024 and 2029 by in total 2.9 percentage points. This overall increase does not happen continuously, notably not in 2028 and 2029. The mobile internet penetration is estimated to amount to 84.21 percent in 2029. Notably, the population share with mobile internet access of was continuously increasing over the past years.The penetration rate refers to the share of the total population having access to the internet via a mobile broadband connection.The shown data are an excerpt of Statista's Key Market Indicators (KMI). The KMI are a collection of primary and secondary indicators on the macro-economic, demographic and technological environment in up to 150 countries and regions worldwide. All indicators are sourced from international and national statistical offices, trade associations and the trade press and they are processed to generate comparable data sets (see supplementary notes under details for more information).Find more key insights for the population share with mobile internet access in countries like Caribbean and Europe.

  2. Mobile internet penetration in Europe 2024, by country

    • statista.com
    Updated Feb 5, 2025
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Statista Research Department (2025). Mobile internet penetration in Europe 2024, by country [Dataset]. https://www.statista.com/topics/779/mobile-internet/
    Explore at:
    Dataset updated
    Feb 5, 2025
    Dataset provided by
    Statistahttp://statista.com/
    Authors
    Statista Research Department
    Description

    Switzerland is leading the ranking by population share with mobile internet access, recording 95.06 percent. Following closely behind is Ukraine with 95.06 percent, while Moldova is trailing the ranking with 46.83 percent, resulting in a difference of 48.23 percentage points to the ranking leader, Switzerland. The penetration rate refers to the share of the total population having access to the internet via a mobile broadband connection. The shown data are an excerpt of Statista's Key Market Indicators (KMI). The KMI are a collection of primary and secondary indicators on the macro-economic, demographic and technological environment in up to 150 countries and regions worldwide. All indicators are sourced from international and national statistical offices, trade associations and the trade press and they are processed to generate comparable data sets (see supplementary notes under details for more information).

  3. Phones Dataset

    • brightdata.com
    .json, .csv, .xlsx
    Updated Sep 12, 2023
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Bright Data (2023). Phones Dataset [Dataset]. https://brightdata.com/products/datasets/phones
    Explore at:
    .json, .csv, .xlsxAvailable download formats
    Dataset updated
    Sep 12, 2023
    Dataset authored and provided by
    Bright Datahttps://brightdata.com/
    License

    https://brightdata.com/licensehttps://brightdata.com/license

    Area covered
    Worldwide
    Description

    We will create a customized phones dataset tailored to your specific requirements. Data points may include brand names, model specifications, pricing information, release dates, market availability, feature sets, and other relevant metrics.

    Utilize our phones datasets for a variety of applications to boost strategic planning and market analysis. Analyzing these datasets can help organizations grasp consumer preferences and technological trends within the mobile phone industry, allowing for more precise product development and marketing strategies. You can choose to access the complete dataset or a customized subset based on your business needs.

    Popular use cases include: enhancing competitive benchmarking, identifying pricing trends, and optimizing product portfolios.

  4. Z

    Dataset of IEEE 802.11 probe requests from an uncontrolled urban environment...

    • data.niaid.nih.gov
    Updated Jan 6, 2023
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Aleš Simončič (2023). Dataset of IEEE 802.11 probe requests from an uncontrolled urban environment [Dataset]. https://data.niaid.nih.gov/resources?id=zenodo_7509279
    Explore at:
    Dataset updated
    Jan 6, 2023
    Dataset provided by
    Andrej Hrovat
    Aleš Simončič
    Mihael Mohorčič
    Miha Mohorčič
    License

    Attribution 4.0 (CC BY 4.0)https://creativecommons.org/licenses/by/4.0/
    License information was derived automatically

    Description

    Introduction

    The 802.11 standard includes several management features and corresponding frame types. One of them are Probe Requests (PR), which are sent by mobile devices in an unassociated state to scan the nearby area for existing wireless networks. The frame part of PRs consists of variable-length fields, called Information Elements (IE), which represent the capabilities of a mobile device, such as supported data rates.

    This dataset contains PRs collected over a seven-day period by four gateway devices in an uncontrolled urban environment in the city of Catania.

    It can be used for various use cases, e.g., analyzing MAC randomization, determining the number of people in a given location at a given time or in different time periods, analyzing trends in population movement (streets, shopping malls, etc.) in different time periods, etc.

    Related dataset

    Same authors also produced the Labeled dataset of IEEE 802.11 probe requests with same data layout and recording equipment.

    Measurement setup

    The system for collecting PRs consists of a Raspberry Pi 4 (RPi) with an additional WiFi dongle to capture WiFi signal traffic in monitoring mode (gateway device). Passive PR monitoring is performed by listening to 802.11 traffic and filtering out PR packets on a single WiFi channel.

    The following information about each received PR is collected: - MAC address - Supported data rates - extended supported rates - HT capabilities - extended capabilities - data under extended tag and vendor specific tag - interworking - VHT capabilities - RSSI - SSID - timestamp when PR was received.

    The collected data was forwarded to a remote database via a secure VPN connection. A Python script was written using the Pyshark package to collect, preprocess, and transmit the data.

    Data preprocessing

    The gateway collects PRs for each successive predefined scan interval (10 seconds). During this interval, the data is preprocessed before being transmitted to the database. For each detected PR in the scan interval, the IEs fields are saved in the following JSON structure:

    PR_IE_data = { 'DATA_RTS': {'SUPP': DATA_supp , 'EXT': DATA_ext}, 'HT_CAP': DATA_htcap, 'EXT_CAP': {'length': DATA_len, 'data': DATA_extcap}, 'VHT_CAP': DATA_vhtcap, 'INTERWORKING': DATA_inter, 'EXT_TAG': {'ID_1': DATA_1_ext, 'ID_2': DATA_2_ext ...}, 'VENDOR_SPEC': {VENDOR_1:{ 'ID_1': DATA_1_vendor1, 'ID_2': DATA_2_vendor1 ...}, VENDOR_2:{ 'ID_1': DATA_1_vendor2, 'ID_2': DATA_2_vendor2 ...} ...} }

    Supported data rates and extended supported rates are represented as arrays of values that encode information about the rates supported by a mobile device. The rest of the IEs data is represented in hexadecimal format. Vendor Specific Tag is structured differently than the other IEs. This field can contain multiple vendor IDs with multiple data IDs with corresponding data. Similarly, the extended tag can contain multiple data IDs with corresponding data.
    Missing IE fields in the captured PR are not included in PR_IE_DATA.

    When a new MAC address is detected in the current scan time interval, the data from PR is stored in the following structure:

    {'MAC': MAC_address, 'SSIDs': [ SSID ], 'PROBE_REQs': [PR_data] },

    where PR_data is structured as follows:

    { 'TIME': [ DATA_time ], 'RSSI': [ DATA_rssi ], 'DATA': PR_IE_data }.

    This data structure allows to store only 'TOA' and 'RSSI' for all PRs originating from the same MAC address and containing the same 'PR_IE_data'. All SSIDs from the same MAC address are also stored. The data of the newly detected PR is compared with the already stored data of the same MAC in the current scan time interval. If identical PR's IE data from the same MAC address is already stored, only data for the keys 'TIME' and 'RSSI' are appended. If identical PR's IE data from the same MAC address has not yet been received, then the PR_data structure of the new PR for that MAC address is appended to the 'PROBE_REQs' key. The preprocessing procedure is shown in Figure ./Figures/Preprocessing_procedure.png

    At the end of each scan time interval, all processed data is sent to the database along with additional metadata about the collected data, such as the serial number of the wireless gateway and the timestamps for the start and end of the scan. For an example of a single PR capture, see the Single_PR_capture_example.json file.

    Folder structure

    For ease of processing of the data, the dataset is divided into 7 folders, each containing a 24-hour period. Each folder contains four files, each containing samples from that device.

    The folders are named after the start and end time (in UTC). For example, the folder 2022-09-22T22-00-00_2022-09-23T22-00-00 contains samples collected between 23th of September 2022 00:00 local time, until 24th of September 2022 00:00 local time.

    Files representing their location via mapping: - 1.json -> location 1 - 2.json -> location 2 - 3.json -> location 3 - 4.json -> location 4

    Environments description

    The measurements were carried out in the city of Catania, in Piazza Università and Piazza del Duomo The gateway devices (rPIs with WiFi dongle) were set up and gathering data before the start time of this dataset. As of September 23, 2022, the devices were placed in their final configuration and personally checked for correctness of installation and data status of the entire data collection system. Devices were connected either to a nearby Ethernet outlet or via WiFi to the access point provided.

    Four Raspbery Pi-s were used: - location 1 -> Piazza del Duomo - Chierici building (balcony near Fontana dell’Amenano) - location 2 -> southernmost window in the building of Via Etnea near Piazza del Duomo - location 3 -> nothernmost window in the building of Via Etnea near Piazza Università - location 4 -> first window top the right of the entrance of the University of Catania

    Locations were suggested by the authors and adjusted during deployment based on physical constraints (locations of electrical outlets or internet access) Under ideal circumstances, the locations of the devices and their coverage area would cover both squares and the part of Via Etna between them, with a partial overlap of signal detection. The locations of the gateways are shown in Figure ./Figures/catania.png.

    Known dataset shortcomings

    Due to technical and physical limitations, the dataset contains some identified deficiencies.

    PRs are collected and transmitted in 10-second chunks. Due to the limited capabilites of the recording devices, some time (in the range of seconds) may not be accounted for between chunks if the transmission of the previous packet took too long or an unexpected error occurred.

    Every 20 minutes the service is restarted on the recording device. This is a workaround for undefined behavior of the USB WiFi dongle, which can no longer respond. For this reason, up to 20 seconds of data will not be recorded in each 20-minute period.

    The devices had a scheduled reboot at 4:00 each day which is shown as missing data of up to a few minutes.

     Location 1 - Piazza del Duomo - Chierici
    

    The gateway device (rPi) is located on the second floor balcony and is hardwired to the Ethernet port. This device appears to function stably throughout the data collection period. Its location is constant and is not disturbed, dataset seems to have complete coverage.

     Location 2 - Via Etnea - Piazza del Duomo
    

    The device is located inside the building. During working hours (approximately 9:00-17:00), the device was placed on the windowsill. However, the movement of the device cannot be confirmed. As the device was moved back and forth, power outages and internet connection issues occurred. The last three days in the record contain no PRs from this location.

     Location 3 - Via Etnea - Piazza Università
    

    Similar to Location 2, the device is placed on the windowsill and moved around by people working in the building. Similar behavior is also observed, e.g., it is placed on the windowsill and moved inside a thick wall when no people are present. This device appears to have been collecting data throughout the whole dataset period.

     Location 4 - Piazza Università
    

    This location is wirelessly connected to the access point. The device was placed statically on a windowsill overlooking the square. Due to physical limitations, the device had lost power several times during the deployment. The internet connection was also interrupted sporadically.

    Recognitions

    The data was collected within the scope of Resiloc project with the help of City of Catania and project partners.

  5. f

    Sample of dataset derived from cell phone locations.

    • plos.figshare.com
    • datasetcatalog.nlm.nih.gov
    xls
    Updated Jun 1, 2023
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Nathaniel H. Merrill; Sarina F. Atkinson; Kate K. Mulvaney; Marisa J. Mazzotta; Justin Bousquin (2023). Sample of dataset derived from cell phone locations. [Dataset]. http://doi.org/10.1371/journal.pone.0231863.t001
    Explore at:
    xlsAvailable download formats
    Dataset updated
    Jun 1, 2023
    Dataset provided by
    PLOS ONE
    Authors
    Nathaniel H. Merrill; Sarina F. Atkinson; Kate K. Mulvaney; Marisa J. Mazzotta; Justin Bousquin
    License

    Attribution 4.0 (CC BY 4.0)https://creativecommons.org/licenses/by/4.0/
    License information was derived automatically

    Description

    Sample of dataset derived from cell phone locations.

  6. Phone and Webcam Video Dataset

    • kaggle.com
    Updated May 28, 2025
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Unidata (2025). Phone and Webcam Video Dataset [Dataset]. https://www.kaggle.com/datasets/unidpro/phone-and-webcam-video
    Explore at:
    CroissantCroissant is a format for machine-learning datasets. Learn more about this at mlcommons.org/croissant.
    Dataset updated
    May 28, 2025
    Dataset provided by
    Kagglehttp://kaggle.com/
    Authors
    Unidata
    License

    Attribution-NonCommercial-NoDerivs 4.0 (CC BY-NC-ND 4.0)https://creativecommons.org/licenses/by-nc-nd/4.0/
    License information was derived automatically

    Description

    Phone and Webcam videos

    Dataset comprises 1,300+ videos featuring over 300 individuals who each recorded 4 videos while pronouncing a set of numbers. This dataset is designed to facilitate research in biometric verification, face recognition, and action recognition. The videos include 2 recordings on mobile devices, each lasting approximately 30 seconds and 8 seconds, and 2 webcam recordings with the same durations.

    By utilizing this dataset, developers and researchers can enhance their understanding of human activity and improving object detection. - Get the data

    Examples of data

    https://www.googleapis.com/download/storage/v1/b/kaggle-user-content/o/inbox%2F22059654%2Fcb41444ba6f5bd4f48f2250f686fed22%2FFrame%20174%20(5).png?generation=1733179922956991&alt=media" alt=""> This extensive collection provides high-quality video recordings that are ideal for training and testing various vision models and learning algorithms. The dataset is a valuable resource for developing and evaluating detection algorithms and object tracking systems.

    💵 Buy the Dataset: This is a limited preview of the data. To access the full dataset, please contact us at https://unidata.pro to discuss your requirements and pricing options.

    Metadata for the dataset

    https://www.googleapis.com/download/storage/v1/b/kaggle-user-content/o/inbox%2F22059654%2Fe6eb3bdb6c82da56c879aa7d1afddb61%2FFrame%20136%20(2).png?generation=1733170796165756&alt=media" alt="">

    This dataset is an invaluable asset for researchers aiming to achieve higher detection accuracy and improve the performance of face recognition systems, ultimately contributing to advancements in biometric security and liveness detection technologies.

    🌐 UniData provides high-quality datasets, content moderation, data collection and annotation for your AI/ML projects

  7. Mobile internet users worldwide 2020-2029

    • statista.com
    Updated Feb 5, 2025
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Statista Research Department (2025). Mobile internet users worldwide 2020-2029 [Dataset]. https://www.statista.com/topics/779/mobile-internet/
    Explore at:
    Dataset updated
    Feb 5, 2025
    Dataset provided by
    Statistahttp://statista.com/
    Authors
    Statista Research Department
    Description

    The global number of smartphone users in was forecast to continuously increase between 2024 and 2029 by in total 1.8 billion users (+42.62 percent). After the ninth consecutive increasing year, the smartphone user base is estimated to reach 6.1 billion users and therefore a new peak in 2029. Notably, the number of smartphone users of was continuously increasing over the past years.Smartphone users here are limited to internet users of any age using a smartphone. The shown figures have been derived from survey data that has been processed to estimate missing demographics.The shown data are an excerpt of Statista's Key Market Indicators (KMI). The KMI are a collection of primary and secondary indicators on the macro-economic, demographic and technological environment in up to 150 countries and regions worldwide. All indicators are sourced from international and national statistical offices, trade associations and the trade press and they are processed to generate comparable data sets (see supplementary notes under details for more information).Find more key insights for the number of smartphone users in countries like Australia & Oceania and Asia.

  8. e

    Internet and Computer use, London

    • data.europa.eu
    unknown
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Office for National Statistics, Internet and Computer use, London [Dataset]. https://data.europa.eu/data/datasets/internet-and-computer-use-london
    Explore at:
    unknownAvailable download formats
    Dataset authored and provided by
    Office for National Statistics
    Area covered
    London
    Description

    Statistics of how many adults access the internet and use different types of technology covering:

    home internet access

    how people connect to the web

    how often people use the web/computers

    whether people use mobile devices

    whether people buy goods over the web

    whether people carried out specified activities over the internet

    For more information see the ONS website and the UKDS website.

  9. m

    USA POI & Foot Traffic Enriched Geospatial Dataset by Predik Data-Driven

    • app.mobito.io
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    USA POI & Foot Traffic Enriched Geospatial Dataset by Predik Data-Driven [Dataset]. https://app.mobito.io/data-product/usa-enriched-geospatial-framework-dataset
    Explore at:
    Area covered
    United States
    Description

    Our dataset provides detailed and precise insights into the business, commercial, and industrial aspects of any given area in the USA (Including Point of Interest (POI) Data and Foot Traffic. The dataset is divided into 150x150 sqm areas (geohash 7) and has over 50 variables. - Use it for different applications: Our combined dataset, which includes POI and foot traffic data, can be employed for various purposes. Different data teams use it to guide retailers and FMCG brands in site selection, fuel marketing intelligence, analyze trade areas, and assess company risk. Our dataset has also proven to be useful for real estate investment.- Get reliable data: Our datasets have been processed, enriched, and tested so your data team can use them more quickly and accurately.- Ideal for trainning ML models. The high quality of our geographic information layers results from more than seven years of work dedicated to the deep understanding and modeling of geospatial Big Data. Among the features that distinguished this dataset is the use of anonymized and user-compliant mobile device GPS location, enriched with other alternative and public data.- Easy to use: Our dataset is user-friendly and can be easily integrated to your current models. Also, we can deliver your data in different formats, like .csv, according to your analysis requirements. - Get personalized guidance: In addition to providing reliable datasets, we advise your analysts on their correct implementation.Our data scientists can guide your internal team on the optimal algorithms and models to get the most out of the information we provide (without compromising the security of your internal data).Answer questions like: - What places does my target user visit in a particular area? Which are the best areas to place a new POS?- What is the average yearly income of users in a particular area?- What is the influx of visits that my competition receives?- What is the volume of traffic surrounding my current POS?This dataset is useful for getting insights from industries like:- Retail & FMCG- Banking, Finance, and Investment- Car Dealerships- Real Estate- Convenience Stores- Pharma and medical laboratories- Restaurant chains and franchises- Clothing chains and franchisesOur dataset includes more than 50 variables, such as:- Number of pedestrians seen in the area.- Number of vehicles seen in the area.- Average speed of movement of the vehicles seen in the area.- Point of Interest (POIs) (in number and type) seen in the area (supermarkets, pharmacies, recreational locations, restaurants, offices, hotels, parking lots, wholesalers, financial services, pet services, shopping malls, among others). - Average yearly income range (anonymized and aggregated) of the devices seen in the area.Notes to better understand this dataset:- POI confidence means the average confidence of POIs in the area. In this case, POIs are any kind of location, such as a restaurant, a hotel, or a library. - Category confidences, for example"food_drinks_tobacco_retail_confidence" indicates how confident we are in the existence of food/drink/tobacco retail locations in the area. - We added predictions for The Home Depot and Lowe's Home Improvement stores in the dataset sample. These predictions were the result of a machine-learning model that was trained with the data. Knowing where the current stores are, we can find the most similar areas for new stores to open.How efficient is a Geohash?Geohash is a faster, cost-effective geofencing option that reduces input data load and provides actionable information. Its benefits include faster querying, reduced cost, minimal configuration, and ease of use.Geohash ranges from 1 to 12 characters. The dataset can be split into variable-size geohashes, with the default being geohash7 (150m x 150m).

  10. m

    Data from: A multi-device and multi-operator dataset from mobile network...

    • data.mendeley.com
    Updated Jul 15, 2024
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    vandermi silva (2024). A multi-device and multi-operator dataset from mobile network coverage on Android devices [Dataset]. http://doi.org/10.17632/tjg9426ykr.1
    Explore at:
    Dataset updated
    Jul 15, 2024
    Authors
    vandermi silva
    License

    Attribution 4.0 (CC BY 4.0)https://creativecommons.org/licenses/by/4.0/
    License information was derived automatically

    Description

    The demand for mobile coverage with adequate signal quality has triggered criticism due to the maturity of the Internet's diffusion in today's society. However, with the deployment of 5G networks, even 5G NSA by 4G LTE, the complexity of the operating environment of mobile networks has increased. To evaluate the behavior of mobile networks in terms of signal quality and other important metrics for mobile telephony, we developed a dataset consisting of 33 radio parameters that can collect up to 736,974 records generated daily by smartphones and tablets. To create the dataset, an application was designed for the Android operating system using the Kotlin programming language, which can collect data in real time and generate a CSV file. The dataset has 10 samples collected from 9 cities located on the Amazon and Negro Rivers. The complete database covering all regions has 33 columns and 736,974 rows. In addition to the primary dataset, we divided the data into three regions: the metropolitan area of Manaus, the middle Solimões River, and the middle Amazonas River. During the scheduled trips, data were collected along rivers and roads that provide access to the locations selected for the experiment. The data was processed, indexed, and organized into a comprehensive database, then categorized by location. This organization allows experiments using the entire dataset across all cities or with data specific to an individual city. To access the database and conduct initial experiments, Python scripts were developed alongside the database to facilitate data loading and the generation of histograms and charts necessary for the initial investigation. In addition to the graph generation scripts, we also created heat maps based on the collected network variables.The data is organized in a folder named “network_dataset,” which contains a list of datasets. Each dataset is named according to the device ID concatenated with the timestamp at which it was collected.The raw dataset was stored inside the mobile device, and stored in the cloud after the preprocessing steps. The collected data contains mobile network variables such as Reference Signal Received Power (RSRP), Reference Signal Received Quality (RSRQ), Signal-to-Noise Ratio (SNR) and Channel Quality Indicator (CQI), collected in real-time and stored on the mobile device in Comma-separated Values ​​(CSV) data format. After completing the daily collection, the device automatically sends the file to the cloud.

  11. A

    LinkNYC New Site Permit Applications

    • data.amerigeoss.org
    • datadiscoverystudio.org
    • +1more
    csv, json, rdf, xml
    Updated Jun 27, 2019
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    United States (2019). LinkNYC New Site Permit Applications [Dataset]. https://data.amerigeoss.org/ja/dataset/linknyc-new-site-permit-applications
    Explore at:
    csv, json, xml, rdfAvailable download formats
    Dataset updated
    Jun 27, 2019
    Dataset provided by
    United States
    Description

    LinkNYC is replacing the City’s outdated public telephones with a network of kiosks that provide free high-speed Wi-Fi, nationwide calling, a dedicated 911 button, charging ports for mobile devices, and access to selected websites. This dataset lists proposed new locations for LinkNYC kiosk that are currently open for public comment. The dataset does not include payphones that are being replaced by Links.

  12. p

    Bulgaria Number Dataset

    • listtodata.com
    .csv, .xls, .txt
    Updated Jul 17, 2025
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    List to Data (2025). Bulgaria Number Dataset [Dataset]. https://listtodata.com/bulgaria-dataset
    Explore at:
    .csv, .xls, .txtAvailable download formats
    Dataset updated
    Jul 17, 2025
    Authors
    List to Data
    License

    CC0 1.0 Universal Public Domain Dedicationhttps://creativecommons.org/publicdomain/zero/1.0/
    License information was derived automatically

    Time period covered
    Jan 1, 2025 - Dec 31, 2025
    Area covered
    Belgium, Bulgaria, United States
    Variables measured
    phone numbers, Email Address, full name, Address, City, State, gender,age,income,ip address,
    Description

    ABulgaria number dataset can be a great element for direct marketing nationwide right now. Also, this Bulgaria number dataset has thousands of active mobile numbers that help to grow sales in the company. In fact, you can develop your business by getting many trustworthy B2C customers. Again, clients can send you a fast answer if they need it or not Similarly, this Bulgaria number dataset is a very essential tool for telemarketing. In other words, you get all these 95% accurate number leads at a very cheap price from us. In addition, our List To Data website always follows the full GDPR laws strictly. As such, the return on investment (ROI) will provide you satisfaction from the business. Bulgaria phone data is a very strong contact database that you can get in your budget. Moreover, the Bulgaria phone data is very beneficial for fast business growth through direct marketing. Besides, our List To Data assures you that we give verified numbers at an affordable cost. Most importantly, you can say that it brings you more profit than your expense. Additionally, the Bulgaria phone data has all the details like name, age, gender, location, and business. Anyway, people can join with the most extensive group of customers quickly through it. Yet, people can use these numbers directory without any worry. So, buy it from us as our experts are ready to present the most satisfactory service. Bulgaria phone number list is very helpful for any business and marketing. People can use this Bulgaria phone number list to develop their telemarketing. They can efficiently contact consumers through direct calls or SMS. In other words, we collect it from authentic sites, so you should purchase our packages right now. Furthermore, you can believe this proper directory to maximize your company’s growth rapidly. Also, we deliver the Bulgaria phone number list in an Excel and CSV file. Actually, the country’s mobile number data will help you in obtaining more profit than investment. Likewise, the List To Data expert team is ready to help you 24 hours with any necessary details that can help any business. Indeed, buy this telemarketing lead at a very reasonable price to expand sales through B2C customers.

  13. Phone Number Data | 50M+ Verified Phone Numbers for Global Professionals |...

    • datarade.ai
    Updated Jan 1, 2018
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Success.ai (2018). Phone Number Data | 50M+ Verified Phone Numbers for Global Professionals | Contact Details from 170M+ Profiles - Best Price Guarantee [Dataset]. https://datarade.ai/data-products/phone-number-data-50m-verified-phone-numbers-for-global-pr-success-ai
    Explore at:
    .bin, .json, .xml, .csv, .xls, .sql, .txtAvailable download formats
    Dataset updated
    Jan 1, 2018
    Dataset provided by
    Area covered
    Panama, Mongolia, Tonga, Algeria, San Marino, Korea (Democratic People's Republic of), Uganda, Timor-Leste, Germany, Mozambique
    Description

    Success.ai’s Phone Number Data offers direct access to over 50 million verified phone numbers for professionals worldwide, extracted from our expansive collection of 170 million profiles. This robust dataset includes work emails and key decision-maker profiles, making it an essential resource for companies aiming to enhance their communication strategies and outreach efficiency. Whether you're launching targeted marketing campaigns, setting up sales calls, or conducting market research, our phone number data ensures you're connected to the right professionals at the right time.

    Why Choose Success.ai’s Phone Number Data?

    Direct Communication: Reach out directly to professionals with verified phone numbers and work emails, ensuring your message gets to the right person without delay. Global Coverage: Our data spans across continents, providing phone numbers for professionals in North America, Europe, APAC, and emerging markets. Continuously Updated: We regularly refresh our dataset to maintain accuracy and relevance, reflecting changes like promotions, company moves, or industry shifts. Comprehensive Data Points:

    Verified Phone Numbers: Direct lines and mobile numbers of professionals across various industries. Work Emails: Reliable email addresses to complement phone communications. Professional Profiles: Decision-makers’ profiles including job titles, company details, and industry information. Flexible Delivery and Integration: Success.ai offers this dataset in various formats suitable for seamless integration into your CRM or sales platform. Whether you prefer API access for real-time data retrieval or static files for periodic updates, we tailor the delivery to meet your operational needs.

    Competitive Pricing with Best Price Guarantee: We provide this essential data at the most competitive prices in the industry, ensuring you receive the best value for your investment. Our best price guarantee means you can trust that you are getting the highest quality data at the lowest possible cost.

    Targeted Applications for Phone Number Data:

    Sales and Telemarketing: Enhance your telemarketing campaigns by reaching out directly to potential customers, bypassing gatekeepers. Market Research: Conduct surveys and research directly with industry professionals to gather insights that can shape your business strategy. Event Promotion: Invite prospects to webinars, conferences, and seminars directly through personal calls or SMS. Customer Support: Improve customer service by integrating accurate contact information into your support systems. Quality Assurance and Compliance:

    Data Accuracy: Our data is verified for accuracy to ensure over 99% deliverability rates. Compliance: Fully compliant with GDPR and other international data protection regulations, allowing you to use the data with confidence globally. Customization and Support:

    Tailored Data Solutions: Customize the data according to geographic, industry-specific, or job role filters to match your unique business needs. Dedicated Support: Our team is on hand to assist with data integration, usage, and any questions you may have. Start with Success.ai Today: Engage with Success.ai to leverage our Phone Number Data and connect with global professionals effectively. Schedule a consultation or request a sample through our dedicated client portal and begin transforming your outreach and communication strategies today.

    Remember, with Success.ai, you don’t just buy data; you invest in a partnership that grows with your business needs, backed by our commitment to quality and affordability.

  14. N

    LinkNYC Locations Live

    • data.cityofnewyork.us
    Updated Aug 13, 2025
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Office of Technology and Innovation (OTI) (2025). LinkNYC Locations Live [Dataset]. https://data.cityofnewyork.us/widgets/2gah-qsg7?mobile_redirect=true
    Explore at:
    xml, application/geo+json, csv, application/rssxml, kmz, kml, tsv, application/rdfxmlAvailable download formats
    Dataset updated
    Aug 13, 2025
    Authors
    Office of Technology and Innovation (OTI)
    Description

    LinkNYC is replacing the City’s outdated public telephones with a network of kiosks that provide free high-speed Wi-Fi, nationwide calling, a dedicated 911 button, charging ports for mobile devices, and access to selected websites. This dataset lists locations where a LinkNYC kiosk has been installed, including sites that have replaced public pay telephones (PPT) and new sites that have been reviewed by community and elected officials. The Project Status field indicates whether the Link is already active or is still in the process of being connected to electric power and telecommunications fiber.

  15. 📱Telecom Shanghai Dataset

    • kaggle.com
    Updated Aug 14, 2023
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    mexwell (2023). 📱Telecom Shanghai Dataset [Dataset]. https://www.kaggle.com/datasets/mexwell/telecom-shanghai-dataset
    Explore at:
    CroissantCroissant is a format for machine-learning datasets. Learn more about this at mlcommons.org/croissant.
    Dataset updated
    Aug 14, 2023
    Dataset provided by
    Kagglehttp://kaggle.com/
    Authors
    mexwell
    Area covered
    Shanghai
    Description

    The dataset, provided by Shanghai Telecom, contains more than 7.2 million records of accessing the Interent through 3,233 base stations from 9,481 mobile phones for six months. For example, the following figure shows the distribution of base stations. Each node denotes a base station in Shanghai, China. This dataset could help researchers to evaluate their solution in mobile edge computing topic such as edge server placement, service migration, service recommendation, etc.

    http://sguangwang.com/fig1.jpg" alt="">

    As shown in the following table, the Telecom dataset shows 6 parameters such as Month, Data, Start Time, End Time, Base Station Location, Mobile Phone ID. The trajectory of users can be found by the dataset.

    MonthThe month when one record happens
    DateThe date when one record happens
    Start TimeThe time when a record stards
    End TimeThe time when a record ends
    Base Station LocationThe longitude and latitude of the base station where the mobile phone accesses the internet
    User IDMobile phone

    Citation

    The telecom dataset is available free of charge for educational and non-commercial purposes. The Telecom data should be used in any scientific or educational study/research. Redistribution of this data to any other third party is not permited.In exchange, we kindly request that you make available to us the results of running the telecom dataset. You must cite the following papers when using this Telecom dataset.

    [1] Yuanzhe Li, Ao Zhou, Xiao Ma, Shangguang Wang, Profit-aware Edge Server Placement, IEEE Internet of Things Journal, 2022, vol.9, no.1 ,pp.55-67 PDF Sourcecode

    [2] Y. Guo, S. Wang, A. Zhou, J. Xu, J. Yuan, C. Hsu. User Allocation‐aware Edge Cloud Placement in Mobile Edge Computing, Software: Practice and Experience, vol. 50, no. 5, pp. 489-502, 2020.PDF Sourcecode

    [3] S. Wang, Y. Guo, N. Zhang, P. Yang, A. Zhou, X. Shen. Delay-aware Microservice Coordination in Mobile Edge Computing: A Reinforcement Learning Approach, IEEE Transactions on Mobile Computing, vol. 20, no.3, pp.939-953, 2021. PDF

  16. Labeled dataset of IEEE 802.11 probe requests

    • zenodo.org
    • data.niaid.nih.gov
    zip
    Updated Jan 6, 2023
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Aleš Simončič; Aleš Simončič; Miha Mohorčič; Miha Mohorčič; Mihael Mohorčič; Mihael Mohorčič; Andrej Hrovat; Andrej Hrovat (2023). Labeled dataset of IEEE 802.11 probe requests [Dataset]. http://doi.org/10.5281/zenodo.7503594
    Explore at:
    zipAvailable download formats
    Dataset updated
    Jan 6, 2023
    Dataset provided by
    Zenodohttp://zenodo.org/
    Authors
    Aleš Simončič; Aleš Simončič; Miha Mohorčič; Miha Mohorčič; Mihael Mohorčič; Mihael Mohorčič; Andrej Hrovat; Andrej Hrovat
    License

    Attribution 4.0 (CC BY 4.0)https://creativecommons.org/licenses/by/4.0/
    License information was derived automatically

    Description

    Introduction

    The 802.11 standard includes several management features and corresponding frame types. One of them are probe requests (PR). They are sent by mobile devices in the unassociated state to search the nearby area for existing wireless networks. The frame part of PRs consists of variable length fields called information elements (IE). IE fields represent the capabilities of a mobile device, such as data rates.
    The dataset includes PRs collected in a controlled rural environment and in a semi-controlled indoor environment under different measurement scenarios.
    It can be used for various use cases, e.g., analysing MAC randomization, determining the number of people in a given location at a given time or in different time periods, analysing trends in population movement (streets, shopping malls, etc.) in different time periods, etc.


    Measurement setup

    The system for collecting PRs consists of a Raspberry Pi 4 (RPi) with an additional WiFi dongle to capture Wi-Fi signal traffic in monitoring mode. Passive PR monitoring is performed by listening to 802.11 traffic and filtering out PR packets on a single WiFi channel.
    The following information about each PR received is collected: MAC address, Supported data rates, extended supported rates, HT capabilities, extended capabilities, data under extended tag and vendor specific tag, interworking, VHT capabilities, RSSI, SSID and timestamp when PR was received.
    The collected data was forwarded to a remote database via a secure VPN connection. A Python script was written using the Pyshark package for data collection, preprocessing and transmission.


    Data preprocessing

    The gateway collects PRs for each consecutive predefined scan interval (10 seconds). During this time interval, the data are preprocessed before being transmitted to the database.
    For each detected PR in the scan interval, IEs fields are saved in the following JSON structure:
    PR_IE_data =
    {
    'DATA_RTS': {'SUPP': DATA_supp , 'EXT': DATA_ext},
    'HT_CAP': DATA_htcap,
    'EXT_CAP': {'length': DATA_len, 'data': DATA_extcap},
    'VHT_CAP': DATA_vhtcap,
    'INTERWORKING': DATA_inter,
    'EXT_TAG': {'ID_1': DATA_1_ext, 'ID_2': DATA_2_ext ...},
    'VENDOR_SPEC': {VENDOR_1:{
    'ID_1': DATA_1_vendor1,
    'ID_2': DATA_2_vendor1
    ...},
    VENDOR_2:{
    'ID_1': DATA_1_vendor2,
    'ID_2': DATA_2_vendor2
    ...}
    ...}
    }


    Supported data rates and extended supported rates are represented as arrays of values that encode information about the rates supported by a mobile device. The rest of the IEs data is represented in hexadecimal format. Vendor Specific Tag is structured differently than the other IEs. This field can contain multiple vendor IDs with multiple data IDs with corresponding data. Similarly, the extended tag can contain multiple data IDs with corresponding data.
    Missing IE fields in the captured PR are not included in PR_IE_DATA.

    When a new MAC address is detected in the current scan time interval, the data from PR is stored in the following structure:

    {'MAC': MAC_address, 'SSIDs': [ SSID ], 'PROBE_REQs': [PR_data] },

    where PR_data is structured as follows:
    {
    'TIME': [ DATA_time ],
    'RSSI': [ DATA_rssi ],
    'DATA': PR_IE_data
    }.

    This data structure allows storing only TOA and RSSI for all PRs originating from the same MAC address and containing the same PR_IE_data. All SSIDs from the same MAC address are also stored.
    The data of the newly detected PR is compared with the already stored data of the same MAC in the current scan time interval.
    If identical PR's IE data from the same MAC address is already stored, then only data for the keys TIME and RSSI are appended.
    If no identical PR's IE data has yet been received from the same MAC address, then PR_data structure of the new PR for that MAC address is appended to PROBE_REQs key.
    The preprocessing procedure is shown in Figure ./Figures/Preprocessing_procedure.png
    At the end of each scan time interval, all processed data is sent to the database along with additional metadata about the collected data e.g. wireless gateway serial number and scan start and end timestamps. For an example of a single PR captured, see the ./Single_PR_capture_example.json file.


    Environments description

    We performed measurements in a controlled rural outdoor environment and in a semi-controlled indoor environment of the Jozef Stefan Institute.
    See the Excel spreadsheet Measurement_informations.xlsx for a list of mobile devices tested.

    Indoor environment

    We used 3 RPi's for the acquisition of PRs in the Jozef Stefan Institute. They were placed indoors in the hallways as shown in the ./Figures/RPi_locations_JSI.png. Measurements were performed on weekend to minimize additional uncontrolled traffic from users' mobile devices. While there is some overlap in WiFi coverage between the devices at the location 2 and 3, the device at location 1 has no overlap with the other two devices.

    Rural environment outdoors

    The three RPi's used to collect PRs were placed at three different locations with non-overlapping WiFi coverage, as shown in ./Figures/RPi_locations_rural_env.png. Before starting the measurement campaign, all measured devices were turned off and the environment was checked for active WiFi devices. We did not detect any unknown active devices sending WiFi packets in the RPi's coverage area, so the deployment can be considered fully controlled.
    All known WiFi enabled devices that were used to collect and send data to the database used a global MAC address, so they can be easily excluded in the preprocessing phase. MAC addresses of these devices can be found in the ./Measurement_informations.xlsx spreadsheet.
    Note: The Huawei P20 device with ID 4.3 was not included in the test in this environment.


    Scenarios description

    We performed three different scenarios of measurements.

    Individual device measurements

    For each device, we collected PRs for one minute with the screen on, followed by PRs collected for one minute with the screen off. In the indoor environment the WiFi interfaces of the other devices not being tested were disabled. In rural environment other devices were turned off. Start and end timestamps of the recorded data for each device can be found in the ./Measurement_informations.xlsx spreadsheet under the Indoor environment of Jozef Stefan Institute sheet and the Rural environment sheet.

    Three groups test

    In this measurement scenario, the devices were divided into three groups. The first group contained devices from different manufacturers. The second group contained devices from only one manufacturer (Samsung). Half of the third group consisted of devices from the same manufacturer (Huawei), and the other half of devices from different manufacturers. The distribution of devices among the groups can be found in the ./Measurement_informations.xlsx spreadsheet.

    The same data collection procedure was used for all three groups. Data for each group were collected in both environments at three different RPis locations, as shown in ./Figures/RPi_locations_JSI.png and ./Figures/RPi_locations_rural_env.png.
    At each location, PRs were collected from each group for 10 minutes with the screen on. Then all three groups switched locations and the process was repeated. Thus, the dataset contains measurements from all three RPi locations of all three groups of devices in both measurement environments. The group movements and the timestamps for the start and end of the collection of PRs at each loacation can be found in spreadsheet ./Measurement_informations.xlsx.

    One group test

    In the last measurement scenario, all devices were grouped together. In rural evironement we first collected PRs for 10 minutes while the screen was on, and then for another 10 minutes while the screen was off. In indoor environment data were collected at first location with screens on for 10 minutes. Then all devices were moved to the location of the next RPi and PRs were collected for 5 minutes with the screen on and then for another 5 minutes with the screen off.

    Folder structure

    The root directory contains two files in JSON format for each of the environments where the measurements took place (Data_indoor_environment.json and Data_rural_environment.json). Both files contain collected PRs for the entire day that the measurements were taken (12:00 AM to 12:00 PM) to get a sense of the behaviour of the unknown devices in each environment. The spreadsheet ./Measurement_informations.xlsx. contains three sheets. Devices description contains general information about the tested devices, RPis, and the assigned group for each device. The sheets Indoor environment of Jozef Stefan Institute and Rural environment contain the corresponding timestamps for the start and end of each measurement scenario. For the scenario where the devices were divided into groups, additional information about the movements between locations is included. The location names are based on the RPi gateway ID and may differ from those on the figures showing the

  17. Smartphones Sales Dataset

    • kaggle.com
    Updated Mar 3, 2024
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Yamin Hossain (2024). Smartphones Sales Dataset [Dataset]. https://www.kaggle.com/datasets/yaminh/smartphone-sale-dataset
    Explore at:
    CroissantCroissant is a format for machine-learning datasets. Learn more about this at mlcommons.org/croissant.
    Dataset updated
    Mar 3, 2024
    Dataset provided by
    Kagglehttp://kaggle.com/
    Authors
    Yamin Hossain
    License

    Apache License, v2.0https://www.apache.org/licenses/LICENSE-2.0
    License information was derived automatically

    Description

    Description for each of the variables:

    1. Brands: The brands of smartphones included in the dataset.
    2. Colors: The colors available for the smartphones.
    3. Memory: The storage capacity of the smartphones, typically measured in gigabytes (GB) or megabytes (MB).
    4. Storage: The internal storage capacity of the smartphones, often measured in gigabytes (GB) or megabytes (MB).
    5. Rating: The user ratings or scores assigned to the smartphones, reflecting user satisfaction or performance.
    6. Selling Price: The price at which the smartphones are sold to consumers.
    7. Original Price: The original or list price of the smartphones before any discounts or promotions.
    8. Mobile: Indicates whether the device is a mobile phone.
    9. Discount: The discount applied to the original price to calculate the selling price.
    10. Discount percentage: The percentage discount applied to the original price to calculate the selling price.
  18. d

    UK B2B Datasets | UK | 12M UK Professional Contact Data Set | Verified Safe...

    • datarade.ai
    .csv, .xls
    Updated May 4, 2024
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Allforce (2024). UK B2B Datasets | UK | 12M UK Professional Contact Data Set | Verified Safe to Email [Dataset]. https://datarade.ai/data-products/b2b-continuum-uk-12m-uk-b2b-data-set-12m-uk-b2b-professio-solution-publishing
    Explore at:
    .csv, .xlsAvailable download formats
    Dataset updated
    May 4, 2024
    Dataset authored and provided by
    Allforce
    Area covered
    United Kingdom
    Description

    Solution Publishing by Allforce UK B2B Contact Data is a sophisticated data product crafted specifically for businesses aiming to bolster their B2B marketing and outreach efforts. This data set amalgamates a wealth of information, providing businesses with unparalleled insights into their target audience, paving the way for more personalized and impactful marketing campaigns.

    Key Features of the Product:

    Comprehensive Contact Information: Gain access to full contact details for an astounding 12 million United Kingdom business contacts at over 4 million business. This vast repository ensures you have the means to reach out to potential leads across a diverse range of sectors.

    Multiple Contact Points: The product is equipped with Business Email details, Telemarketing numbers, and Mobile Phones, ensuring multiple avenues of communication for your marketing and sales teams.

    Locational Data: Receive detailed information about both company and individual locations. This geospatial data can be invaluable in tailoring your marketing strategies based on regional preferences and nuances.

    Rich Technographics and Firmographics: Dive deep into the technology landscape and organizational structures of businesses with the available B2B Technographics and Firmographic data. This ensures that your messaging is not just broad but intricately tailored to resonate with your audience.

    LinkedIn Profile Insights: Leverage valuable LinkedIn Profile data to get a holistic view of your target contacts. This feature provides deeper insights into professional backgrounds, endorsements, connections, and more, enabling even more personalized engagement strategies.

    Benefits:

    Precision Targeting: With a wealth of contact points and detailed firmographic data, you can ensure that your outreach efforts are directed precisely where they matter the most.

    Enhanced Engagement: Leveraging intent data lets you align your messaging with the prospective needs of businesses, leading to increased engagement and improved conversion rates.

    Holistic Outreach: Whether it's through email, phone, or telemarketing, the multiple contact points ensure that your message reaches its intended audience through their preferred channel.

    Strategic Planning: With access to technographic data, businesses can plan their offerings based on the technology stack of their potential clients, ensuring greater compatibility and alignment.

    Data-Driven Insights: This product empowers businesses to make decisions rooted in data, ensuring strategies that are both impactful and efficient.

    In essence, our data is not just a data product, but a strategic tool that empowers businesses to redefine their B2B outreach, fostering relationships that drive growth and success.

  19. d

    Phone Number Data | Global Coverage | 100M+ B2B Mobile Phone Numbers | 95%+...

    • datarade.ai
    .json, .csv
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Forager.ai, Phone Number Data | Global Coverage | 100M+ B2B Mobile Phone Numbers | 95%+ Accuracy [Dataset]. https://datarade.ai/data-products/global-mobile-phone-number-data-90m-95-accuracy-api-b-forager-ai-905f
    Explore at:
    .json, .csvAvailable download formats
    Dataset provided by
    Forager.ai
    Area covered
    Moldova (Republic of), South Georgia and the South Sandwich Islands, Martinique, Japan, Colombia, Macedonia (the former Yugoslav Republic of), United Arab Emirates, Uruguay, Botswana, Cambodia
    Description

    Global B2B Mobile Phone Number Database | 100M+ Verified Contacts | 95% Accuracy Forager.ai provides the world’s most reliable mobile phone number data for businesses that refuse to compromise on quality. With 100 million+ professionally verified mobile numbers refreshed every 3 weeks, our database ensures 95% accuracy – so your teams never waste time on dead-end leads.

    Why Our Data Wins ✅ Accuracy You Can Trust 95% of mobile numbers are verified against live carrier records and tied to current job roles. Say goodbye to “disconnected number” voicemails.

    ✅ Depth Beyond Digits Each contact includes 150+ data points:

    Direct mobile numbers

    Current job title, company, and department

    Full career history + education background

    Location data + LinkedIn profiles

    Company size, industry, and revenue

    ✅ Freshness Guaranteed Bi-weekly updates combat job-hopping and role changes – critical for sales teams targeting decision-makers.

    ✅ Ethically Sourced & Compliant First-party collected data with full GDPR/CCPA compliance.

    Who Uses This Data?

    Sales Teams: Cold-call C-suite prospects with verified mobile numbers.

    Marketers: Run hyper-personalized SMS/WhatsApp campaigns.

    Recruiters: Source passive candidates with up-to-date contact intel.

    Data Vendors: License premium datasets to enhance your product.

    Tech Platforms: Power your SaaS tools via API with enterprise-grade B2B data.

    Flexible Delivery, Instant Results

    API (REST): Real-time integration for CRMs, dialers, or marketing stacks

    CSV/JSON: Campaign-ready files.

    PostgreSQL: Custom databases for large-scale enrichment

    Compliance: Full audit trails + opt-out management

    Why Forager.ai? → Proven ROI: Clients see 62% higher connect rates vs. industry averages (request case studies). → No Guesswork: Test-drive free samples before committing. → Scalable Pricing: Pay per record, license datasets, or get unlimited API access.

    B2B Mobile Phone Data | Verified Contact Database | Sales Prospecting Lists | CRM Enrichment | Recruitment Phone Numbers | Marketing Automation | Phone Number Datasets | GDPR-Compliant Leads | Direct Dial Contacts | Decision-Maker Data

    Need Proof? Contact us to see why Fortune 500 companies and startups alike trust Forager.ai for mission-critical outreach.

  20. p

    Jamaica Number Dataset

    • listtodata.com
    .csv, .xls, .txt
    Updated Jul 17, 2025
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    List to Data (2025). Jamaica Number Dataset [Dataset]. https://listtodata.com/jamaica-dataset
    Explore at:
    .csv, .xls, .txtAvailable download formats
    Dataset updated
    Jul 17, 2025
    Authors
    List to Data
    License

    CC0 1.0 Universal Public Domain Dedicationhttps://creativecommons.org/publicdomain/zero/1.0/
    License information was derived automatically

    Time period covered
    Jan 1, 2025 - Dec 31, 2025
    Area covered
    Jamaica
    Variables measured
    phone numbers, Email Address, full name, Address, City, State, gender,age,income,ip address,
    Description

    Jamaica number dataset makes your telemarketing more beneficial. Thus, this Jamaica number dataset has correct and up-to-date mobile numbers for direct marketing. As of 2024, there are about 3.27 Million mobile phone connections in Jamaica. This number is a bit higher than the total population, which is around 2.83 Million. Our List To Data website can assist in getting speedy replies from new clients for publicity. Besides, the Jamaica number dataset is effective for SMS marketing as well. As well as you have multiple chances to earn huge from other countries. So, using this contact number library is a perfect choice for reaching people in specific places. By using our library, you can enhance your marketing and find new B2C clients easily. Jamaica phone data is a great way to help your business grow. Also, this Jamaica phone data provides the most real and active phone numbers so you can easily reach people in Jamaica. Everybody can select who they want to contact based on their location, what their company does, or how big their company is. Further, the Jamaica phone data is very authentic and useful for finding new customers. At the same time, the sellers can deliver sales promotions and many offers to the consumers. Also, they can connect with the largest group of customers quickly in a selected area. List To Data includes contact leads for both businesses and individuals. Jamaica phone number list will make your business more profitable. Most importantly, a Jamaica phone number list plays a vital role in marketing and business, so take it now. Just visit our List To Data website today to get the most recent phone numbers for any business. With 95% precision, this contact book offers you contact numbers for many people who might want your services. So, the Jamaica phone number list is a great tool for reaching new customers through phone calls. In fact, you can pick from other packages on our website that fit your needs and budget. If your business is big or small, our mobile number data will help you in your entire journey. Ultimately, our team supplies this correct contact number cautiously as per your needs.

Share
FacebookFacebook
TwitterTwitter
Email
Click to copy link
Link copied
Close
Cite
Statista Research Department (2025). Mobile internet usage reach in North America 2020-2029 [Dataset]. https://www.statista.com/topics/779/mobile-internet/
Organization logo

Mobile internet usage reach in North America 2020-2029

Explore at:
177 scholarly articles cite this dataset (View in Google Scholar)
Dataset updated
Feb 5, 2025
Dataset provided by
Statistahttp://statista.com/
Authors
Statista Research Department
Description

The population share with mobile internet access in North America was forecast to increase between 2024 and 2029 by in total 2.9 percentage points. This overall increase does not happen continuously, notably not in 2028 and 2029. The mobile internet penetration is estimated to amount to 84.21 percent in 2029. Notably, the population share with mobile internet access of was continuously increasing over the past years.The penetration rate refers to the share of the total population having access to the internet via a mobile broadband connection.The shown data are an excerpt of Statista's Key Market Indicators (KMI). The KMI are a collection of primary and secondary indicators on the macro-economic, demographic and technological environment in up to 150 countries and regions worldwide. All indicators are sourced from international and national statistical offices, trade associations and the trade press and they are processed to generate comparable data sets (see supplementary notes under details for more information).Find more key insights for the population share with mobile internet access in countries like Caribbean and Europe.

Search
Clear search
Close search
Google apps
Main menu