## Connections
### Web Interface
1. Go to https://alphafold.ebi.ac.uk
2. Search by UniProt ID (e.g., Q7RTU9 for STRC) or gene name
3. View 3D structure colored by pLDDT confidence
4. Download structure files
### API (Programmatic)
# Get structure by UniProt ID
curl https://alphafold.ebi.ac.uk/api/prediction/Q7RTU9
# Download PDB file
curl -O https://alphafold.ebi.ac.uk/files/AF-Q7RTU9-F1-model_v4.pdb
### Python
import requests
r = requests.get("https://alphafold.ebi.ac.uk/api/prediction/Q7RTU9")
data = r.json()[0]
print(f"pLDDT: {data['globalMetricValue']}")
print(f"PDB URL: {data['pdbUrl']}")
VERIFIED — STRC (Q7RTU9) structure available (model v6). pLDDT at E1659: 95.69/100 — very high confidence, well-structured region. pLDDT profile shows high confidence in core domain (residues ~700-1775), low confidence in N-terminal disordered region.