

Global Digital Economy & Connectivity Data
Data
Available ActionsEach successful request consumes credits as outlined below.
query_digital_data5cr
Details
Explore digital economy and technology adoption data for any country in the world. Look up internet penetration rates, mobile subscriptions, broadband access, e-government readiness scores, and ICT infrastructure indicators. Track digital growth, identify connectivity gaps, and compare how countries are progressing in the digital era — all from a comprehensive global data set.
Use Cases
Research internet penetration rates by country, Compare mobile subscription trends across regions, Track broadband access growth over time, Analyze e-government readiness scores, Study the digital divide between countries, Monitor ICT infrastructure development, Assess digital adoption rates by region, Research technology access gaps, Support policy research on digital inclusion, Compare connectivity metrics across income groups
Connect Your Agent In 5 Min
Watch the setup guide for your platform
Or Install Locally
STDIO connector for Claude Code, Codex, Cursor, Zed, and other LLMs that require STDIO or custom connections. This lightweight connector routes requests to https://api.agentpmt.com/mcp. All tool execution happens in the cloud and the server cannot edit any files on your computer.
npm install -g @agentpmt/mcp-routeragentpmt-setupActions(1)
query_digital_data5cr6 params(1 required)Fetch digital economy and technology indicator data for a country or region, including internet penetration, mobile subscriptions, broadband access, ICT trade metrics, and digital divide analysis.
query_digital_data5cr6 params(1 required)Fetch digital economy and technology indicator data for a country or region, including internet penetration, mobile subscriptions, broadband access, ICT trade metrics, and digital divide analysis.
country_or_regionrequiredstringCountry or region name in plain language (e.g., 'South Korea', 'Kenya', 'World')
digital_aspectstringDigital aspect to query: 'internet', 'mobile', 'broadband', 'e_government', 'ict', 'infrastructure', or 'all'
Values:
internetmobilebroadbande_governmentictinfrastructureall
Default:
allcalculate_digital_dividebooleanCalculate digital access gaps (100% minus current access rates) for internet, broadband, and mobile
Default:
falsetime_periodstringTime period: 'latest', 'last_5_years', 'last_10_years', 'YYYY:YYYY' range, or single 'YYYY' year
Default:
latestinclude_regional_comparisonbooleanInclude comparison data with digital leaders (World average, High Income, South Korea, Singapore)
Default:
trueinclude_trendsbooleanInclude trend analysis with CAGR calculations when historical data is available
Default:
truecurl -X POST "https://api.agentpmt.com/products/purchase" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer ********" \
-d '{
"product_id": "6980db8871cad8f61bf5b1d9",
"parameters": {
"action": "query_digital_data",
"country_or_region": "example_country_or_region",
"digital_aspect": "all",
"calculate_digital_divide": false,
"time_period": "latest",
"include_regional_comparison": true,
"include_trends": true
}
}'import requests
import json
url = "https://api.agentpmt.com/products/purchase"
headers = {
"Content-Type": "application/json",
"Authorization": "Bearer ********"
}
data = {
"product_id": "6980db8871cad8f61bf5b1d9",
"parameters": {
"action": "query_digital_data",
"country_or_region": "example_country_or_region",
"digital_aspect": "all",
"calculate_digital_divide": false,
"time_period": "latest",
"include_regional_comparison": true,
"include_trends": true
}
}
response = requests.post(url, headers=headers, json=data)
print(response.status_code)
print(response.json())const url = "https://api.agentpmt.com/products/purchase";
const headers = {
"Content-Type": "application/json",
"Authorization": "Bearer ********"
};
const data = {
product_id: "6980db8871cad8f61bf5b1d9",
parameters: {
"action": "query_digital_data",
"country_or_region": "example_country_or_region",
"digital_aspect": "all",
"calculate_digital_divide": false,
"time_period": "latest",
"include_regional_comparison": true,
"include_trends": true
}
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(data)
})
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error("Error:", error));const axios = require('axios');
const url = "https://api.agentpmt.com/products/purchase";
const headers = {
"Content-Type": "application/json",
"Authorization": "Bearer ********"
};
const data = {
product_id: "6980db8871cad8f61bf5b1d9",
parameters: {
"action": "query_digital_data",
"country_or_region": "example_country_or_region",
"digital_aspect": "all",
"calculate_digital_divide": false,
"time_period": "latest",
"include_regional_comparison": true,
"include_trends": true
}
};
axios.post(url, data, { headers })
.then(response => {
console.log(response.status);
console.log(response.data);
})
.catch(error => {
console.error("Error:", error.message);
});Login to view your API and budget keys. The example above uses placeholder values. Sign in to see personalized code with your bearer token.
This tool supports credit-based access for external agents using AgentAddress identities or standard crypto wallets. External agents should use the External Agent API to buy credits with x402 and invoke this tool.
1. Buy Credits
Purchase credits via x402 payment (500 credit minimum, 100 credits = $1).
# Request payment requirements (returns 402 + PAYMENT-REQUIRED header)
curl -i -s -X POST "https://www.agentpmt.com/api/external/credits/purchase" \
-H "Content-Type: application/json" \
-d '{ "wallet_address":"0xYOUR_WALLET", "credits": 500, "payment_method":"x402" }'
# Sign the EIP-3009 authorization, then retry with signature header
curl -s -X POST "https://www.agentpmt.com/api/external/credits/purchase" \
-H "Content-Type: application/json" \
-H "PAYMENT-SIGNATURE: <base64-json>" \
-d '{ "wallet_address":"0xYOUR_WALLET", "credits": 500, "payment_method":"x402" }'2. Create a Session Nonce (nonce used in signed balance/invoke)
curl -s -X POST "https://www.agentpmt.com/api/external/auth/session" \
-H "Content-Type: application/json" \
-d '{ "wallet_address":"0xYOUR_WALLET" }'3. Invoke This Tool
Sign the message with your wallet (EIP-191 personal-sign), then POST to the invoke endpoint.
# Sign this message (wallet MUST be lowercased):
# agentpmt-external
# wallet:0xyourwallet...
# session:<session_nonce>
# request:<request_id>
# method:POST
# path:/external/tools/digital-economy-technology/actions/<actionSlug>/invoke
# payload:<sha256(canonical_json(parameters))>
curl -s -X POST "https://www.agentpmt.com/api/external/tools/digital-economy-technology/actions/<actionSlug>/invoke" \
-H "Content-Type: application/json" \
-d '{
"wallet_address": "0xYOUR_WALLET",
"session_nonce": "<session_nonce>",
"request_id": "invoke-uuid",
"signature": "0x<signature>",
"parameters": {
"your_param": "value"
}
}'Usage Instructions
Usage guidance provided directly by the developer for this product.
Digital Economy & Technology Data
Access comprehensive digital economy statistics from the World Bank's World Development Indicators database covering 200+ countries. Query internet penetration, mobile and broadband infrastructure, ICT trade metrics, digital divide analysis, and regional comparisons using natural language country names.
Actions
query_digital_data
Fetch digital economy and technology indicator data for a country or region.
Required Parameters:
action(string): Must be"query_digital_data"country_or_region(string): Country or region name in plain language (e.g.,"South Korea","Kenya","World")
Optional Parameters:
digital_aspect(string, default:"all"): Digital domain to query. One of:"internet"- Internet users (% of population and total count)"mobile"- Mobile cellular subscriptions (total and per 100 people) and fixed telephone subscriptions"broadband"- Fixed broadband (total and per 100 people) and mobile broadband subscriptions"ict"- ICT goods exports/imports, ICT service exports, high-tech exports (value and % of manufactured)"infrastructure"- Secure internet servers, telephone subscriptions, fixed broadband"e_government"- E-government context (limited; World Bank data does not include EGDI directly)"all"- All available digital indicators
calculate_digital_divide(boolean, default:false): Calculate digital access gaps (100% minus current access rates) for internet, broadband, and mobiletime_period(string, default:"latest"): Time period for data. Options:"latest"- Most recent available data"last_5_years"- Last 5 years of data"last_10_years"- Last 10 years of data"YYYY:YYYY"- Specific year range (e.g.,"2015:2020"). Years must be between 1960 and current year."YYYY"- A single year (e.g.,"2020")
include_regional_comparison(boolean, default:true): Include comparison data with digital leaders (World average, High Income countries, South Korea, Singapore)include_trends(boolean, default:true): Include trend analysis with CAGR (Compound Annual Growth Rate) calculations when historical data is available
Example - Latest internet data with digital divide:
{
"action": "query_digital_data",
"country_or_region": "Kenya",
"digital_aspect": "internet",
"time_period": "latest",
"calculate_digital_divide": true
}
Example - Broadband growth trends:
{
"action": "query_digital_data",
"country_or_region": "South Korea",
"digital_aspect": "broadband",
"time_period": "last_10_years",
"include_trends": true
}
Example - All digital indicators with comparison:
{
"action": "query_digital_data",
"country_or_region": "India",
"digital_aspect": "all",
"time_period": "latest",
"calculate_digital_divide": true,
"include_regional_comparison": true
}
Example - ICT trade for a specific period:
{
"action": "query_digital_data",
"country_or_region": "China",
"digital_aspect": "ict",
"time_period": "2015:2020"
}
Example - Mobile coverage for a region:
{
"action": "query_digital_data",
"country_or_region": "Sub-Saharan Africa",
"digital_aspect": "mobile",
"time_period": "latest"
}
Supported Countries and Regions
Accepts plain-language names. Examples of supported inputs:
- Countries:
"United States","USA","India","South Korea","Nigeria","Brazil","Singapore","Kenya", etc. (200+ countries) - Regions:
"Sub-Saharan Africa","Latin America","Middle East","South Asia","East Asia","Europe" - Income groups:
"Low Income","Lower Middle Income","Upper Middle Income","High Income","OECD" - Global:
"World"or"Global" - ISO3 codes: 3-letter codes like
"USA","IND","KOR"are also accepted
Country names support partial matching, so "UK" maps to United Kingdom and "America" maps to USA.
Available Indicators
Internet Access
- Internet Users (% of population)
- Internet Users (total number)
Mobile and Telephony
- Mobile Cellular Subscriptions (total)
- Mobile Subscriptions (per 100 people)
- Fixed Telephone Subscriptions
Broadband
- Fixed Broadband Subscriptions (total)
- Fixed Broadband (per 100 people)
- Mobile Broadband Subscriptions
ICT Trade
- ICT Goods Exports (% of total goods exports)
- ICT Goods Imports (% of total goods imports)
- ICT Service Exports (% of service exports)
- High-Technology Exports (current US$)
- High-Tech Exports (% of manufactured exports)
Infrastructure and R&D
- Secure Internet Servers (per million people)
- Researchers in R&D (per million people)
- R&D Expenditure (% of GDP)
Response Structure
Responses include:
- Indicator data with latest values, proper units (%, per 100 people, total numbers, current US$), year, and source
- Trend analysis with absolute change, percent change, direction (increasing/decreasing/stable), data point count, and CAGR when applicable
- Digital divide analysis (when enabled): internet access gap, fixed broadband gap, mobile coverage status
- Regional comparison benchmarked against World average, High Income countries, South Korea, and Singapore
- Insights covering internet penetration levels, mobile adoption, broadband infrastructure, ICT export significance, digital expansion rates, and SDG 9.c progress
- SDG 9.c alignment (Universal and affordable access to internet)
Digital Divide Analysis
When calculate_digital_divide is true, the response includes:
- Internet access gap: Current access percentage and the gap (100% minus access)
- Fixed broadband gap: Current subscriptions per 100 people and gap to universal access
- Mobile coverage: Subscriptions per 100 people and whether coverage exceeds population (multiple devices per person)
Workflows
- Digital Readiness Assessment: Query all digital indicators for a country with regional comparison to benchmark against digital leaders
- Digital Divide Analysis: Enable
calculate_digital_dividefor internet and broadband aspects to quantify access gaps - ICT Trade Research: Use
digital_aspect: "ict"with trends to track technology export growth over time - Infrastructure Planning: Query broadband and infrastructure aspects over the last 10 years to identify growth patterns
- SDG 9.c Monitoring: Query internet penetration with regional comparison to assess progress toward universal access
Notes
- Data sourced from World Bank World Development Indicators
- Mobile subscriptions can exceed 100 per 100 people due to multiple SIMs/devices per person
- Fixed broadband means wired broadband subscriptions, not mobile broadband
- Mobile broadband refers to internet via mobile networks (3G, 4G, 5G)
- ICT goods include computers, telecom equipment, and consumer electronics
- High-tech exports include aerospace, computers, pharmaceuticals, and instruments
- Secure internet servers are measured per 1 million people
- The E-Government Development Index (EGDI) is not available in World Bank data; the
"e_government"aspect returns an empty indicator set - Data availability varies by country and indicator; most recent data may be 1-2 years old
- When an unrecognized
digital_aspectis provided, the tool defaults to internet and mobile indicators - Regional comparison benchmarks against World, High Income, South Korea, and Singapore using internet_users, mobile_subscriptions_per100, and fixed_broadband_per100
- Trend CAGR is only calculated for multi-year periods where both start and end values are positive





