SKILL.md
AlphaFold Protein Structure Database API
Overview
The AlphaFold DB, maintained by EMBL-EBI and DeepMind, provides open access to over 200 million protein structure predictions. The REST API enables programmatic lookup of predicted structures, confidence metrics (pLDDT, PAE), and downloadable structure files (PDB, mmCIF, BinaryCIF) keyed on UniProt accessions. Free, no authentication required.
Authentication
None. All endpoints are publicly accessible without API keys or tokens.
Core Endpoints
Base URL: https://alphafold.ebi.ac.uk/api
1. Get Prediction by UniProt Accession
Retrieves all AlphaFold models for a given UniProt accession or model ID.
curl "https://alphafold.ebi.ac.uk/api/prediction/P04637"
Response (first entry, abbreviated):
[
{
"entryId": "AF-P04637-F1",
"uniprotAccession": "P04637",
"uniprotId": "P53_HUMAN",
"uniprotDescription": "Cellular tumor antigen p53",
"gene": "TP53",
"organismScientificName": "Homo sapiens",
"taxId": 9606,
"globalMetricValue": 75.06,
"fractionPlddtVeryHigh": 0.527,
"fractionPlddtConfident": 0.071,
"fractionPlddtLow": 0.104,
"fractionPlddtVeryLow": 0.298,
"latestVersion": 6,
"modelCreatedDate": "2025-08-01T00:00:00Z",
"sequenceStart": 1,
"sequenceEnd": 393,
"pdbUrl": "https://alphafold.ebi.ac.uk/files/AF-P04637-F1-model_v6.pdb",
"cifUrl": "https://alphafold.ebi.ac.uk/files/AF-P04637-F1-model_v6.cif",
"bcifUrl": "https://alphafold.ebi.ac.uk/files/AF-P04637-F1-model_v6.bcif",
"paeImageUrl": "https://alphafold.ebi.ac.uk/files/AF-P04637-F1-predicted_aligned_error_v6.png",
"paeDocUrl": "https://alphafold.ebi.ac.uk/files/AF-P04637-F1-predicted_aligned_error_v6.json",
"plddtDocUrl": "https://alphafold.ebi.ac.uk/files/AF-P04637-F1-confidence_v6.json",
"amAnnotationsUrl": "https://alphafold.ebi.ac.uk/files/AF-P04637-F1-aa-substitutions.csv"
}
]
2. Per-Residue Confidence Scores (pLDDT)
Download the per-residue pLDDT confidence JSON linked in plddtDocUrl:
