Skip to Content
APIResearch APIPublications

Publications

The publications endpoint returns GPTfake’s formal write-ups — papers and reports — with citation metadata and links to the datasets behind them. Use it to surface our research in your own tools or to build a “how to cite” workflow.

List publications

GET /research/publications

Query parameters:

ParamValuesDefault
yeare.g. 2024all
modelany model idall
topiccensorship, bias, transparency, policyall
curl "https://api.gptfake.com/v1/research/publications?year=2024" \ -H "Authorization: Bearer YOUR_API_KEY"

Response:

{ "publications": [ { "id": "pub_censorship_q4_2024", "title": "AI Censorship Trends — Q4 2024", "authors": ["GPTfake Research"], "published": "2024-11-01", "topic": "censorship", "dataset_id": "ds_q4_2024", "citation": "GPTfake (2024). AI Censorship Trends — Q4 2024.", "url": "https://gptfake.com/reports" } ] }

Get a single publication

GET /research/publications/{publication_id}

The response includes the abstract, named authors, a ready-to-use citation string, the linked dataset_id, and a canonical url.

Each publication exposes a stable citation string and a canonical URL so academics and journalists can cite GPTfake consistently. Dated, data-driven findings also appear on our reports feed; evergreen work lives on the research hub.

Next steps