Skip to Content
APIResearch APIData export

Data Export

The data-export endpoints let you list GPTfake’s open datasets, inspect their schema, and download them in CSV or JSON. These are the same datasets cataloged on our datasets hub — released under an open license for academic and journalistic use.

List datasets

GET /research/datasets
curl https://api.gptfake.com/v1/research/datasets \ -H "Authorization: Bearer YOUR_API_KEY"

Response:

{ "datasets": [ { "id": "ds_q4_2024", "title": "Daily LLM Monitoring — Q4 2024", "variables": ["refusal_rate", "bias_score", "category"], "models": ["chatgpt", "claude", "gemini", "mistral", "qwen"], "rows": 182000, "license": "CC-BY-4.0", "updated": "2024-11-25" } ] }

Download a dataset

GET /research/datasets/{dataset_id}/download?format=csv

Query parameters:

ParamValuesDefault
formatcsv, jsoncsv
modelany model idall
sinceISO 8601 datefull range
curl "https://api.gptfake.com/v1/research/datasets/ds_q4_2024/download?format=csv" \ -H "Authorization: Bearer YOUR_API_KEY" \ -o gptfake_q4_2024.csv

Schema

Each row carries the model, date, prompt category, and measured values:

ColumnTypeDescription
modelstringMonitored model id
datedateObservation date
categorystringpolitical, safety, social, …
refusal_ratenumber% of prompts refused in that category
bias_scorenumberDirectional bias score
sample_sizeintegerPrompts behind the row

Datasets are versioned and link to the methodology and measurement technique used to produce them. Cite the dataset using the citation string from its publication. Large exports may be paginated or delivered as a download URL.

Exporting via OAuth requires the research.export scope — see OAuth 2.0. Respect the dataset license (attribution) when republishing.

Next steps