Discontinued

This API no longer responds. Our last check on 2026-07-31 found no working endpoint — the service appears to have shut down or moved. The documentation, code samples and score below are kept for reference only; do not build against this API. See working Open Data APIs →

Lowy Asia Power Index API

Free to Use

Overview

The Lowy Asia Power Index API provides data on the relative power of states in Asia, measuring resources and influence across multiple dimensions. No authentication is required, making it straightforward to start querying. It is useful for political science researchers, journalists, and developers building geopolitical dashboards.

Beginner Tip

No API key is needed — simply make a GET request to the endpoint. The index scores are updated periodically, so check the GitHub documentation for the latest available years and country codes.

Available Data

The kind of data this API exposes, based on its documentation. We could not call the endpoint to confirm the exact field names.

Lowy Asia Power Index data via REST API

Example Response

Illustrative shape only — we were not able to call this endpoint (it requires credentials or exposes no public sample URL), so the fields below show the kind of data this API returns rather than a recorded response.

JSON Response · Illustrative
{
  "status": "success",
  "data": {
    "result": "Data from Lowy Asia Power Index",
    "description": "Get measure resources and influence to rank the relative power of states in Asia",
    "timestamp": "2025-01-15T10:00:00Z"
  }
}

Field Reference

country Name of the Asian state being measured.
rank Overall power rank of the country in Asia for the given year.
score Composite power score out of 100.
year The index year the data corresponds to.
measures Breakdown of scores across individual power measures such as economic capability and military capability.

Implementation Example

Calls a real endpoint of this API. Replace any placeholder credentials with your own key.

Request
const url = "https://github.com/0x0is1/lowy-index-api-docs";
const response = await fetch(url);
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data);

What Can You Build?

Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.

Common Errors & Troubleshooting

Generated guidance based on this API's documentation, not observed by us. Treat it as a starting point and check against the provider's own error reference.

404 Not Found The country code or year parameter does not match any available data.
Check the GitHub documentation at github.com/algocry/lowy-index-api-docs for valid country codes and available years.
CORS error in browser The API may not include CORS headers allowing browser-side requests.
Use a server-side environment (Node.js, Python) to make requests rather than calling directly from a browser.
Unexpected data structure Score categories and sub-measures may be nested differently than expected.
Log the full response and navigate the nested structure carefully before mapping it to your data model.

Metadata Score Breakdown

Estimated from metadata — endpoint not independently tested

This score is estimated from observable metadata — HTTPS support, authentication model, declared CORS, and documentation reachability — because the API requires authentication or exposes no publicly testable endpoint. The five-signal breakdown is only shown for live-tested APIs.

Metadata estimate · endpoint not independently tested

Technical Specifications

Auth No Auth
HTTPS REQUIRED
CORS UNKNOWN
Category Open Data
Difficulty Beginner
Listing details not endpoint-verified

Related Tags

Similar APIs

View All →