{id}: Get a specific research article

API: pewresearch.org:pew-research-center-api
Endpoint: /wp/v2/posts/{id}
Response format: application/json
Auth: unknown
Method: GET
Last Status: 200
Latency: 809ms

Description

Returns complete article data including title, content (HTML), excerpt, author information, featured media, categories, tags, and SEO metadata. Use this to display full article content or integrate Pew Research publications into external applications.

From spec: Retrieve a single research article or report by its ID.

Usage Tips

- Content is returned as rendered HTML in the 'rendered' fields - Excerpt contains a plain-text summary suitable for previews - Featured media ID can be used with /wp/v2/media/{id} - Includes Parsely metadata for SEO and social sharing - The 'link' field provides the canonical URL on pewresearch.org

Parameters (1)

id (integer, path, required)

The post ID

Examples (1)

Retrieve Research Article with Full Content probe-gate

Fetches a complete research article including HTML content, excerpt, author info, and metadata

curl 'https://www.pewresearch.org/wp-json/wp/v2/posts/298838'
import requests

resp = requests.get("https://www.pewresearch.org/wp-json/wp/v2/posts/298838")
data = resp.json()
import zingu_apis

api = zingu_apis.api("pewresearch")
result = api.fetch("wp/v2/posts/{id}")

for item in result:
    print(item)
const resp = await fetch("https://www.pewresearch.org/wp-json/wp/v2/posts/298838");
const data = await resp.json();

Probe History

Latency

Status Codes

TimeStatusLatencySize
2026-04-16 03:27:04.307798 200 809ms
2026-04-15 00:04:34.798470 200 971ms
2026-04-14 00:41:52.190899 200 820ms
2026-04-12 15:37:51.647314 200 794ms
2026-04-10 04:24:34.690266 200 726ms
2026-04-09 02:39:44.616262 200 752ms