Jobs
Get Job Results
Fetch job + latest job run + sequences for a job ID.
- If the job is public (
isPublic: true), authentication is not required. - If the job is not public (
isPublic: falseornull), authentication is required and the caller must own the job.
Authorization
bearerAuth AuthorizationBearer <token>
Bearer token authentication. Use your API key with the format:
Authorization: Bearer sk-...your-api-key
In: header
Path Parameters
jobId*string
Job ID
Format
uuidResponse Body
application/json
application/json
application/json
curl -X GET "https://api.fastfold.ai/v1/jobs/497f6eca-6276-4993-bfeb-53cbbbba6f08/results"{
"job": {
"id": "550e8400-e29b-41d4-a716-446655440000",
"status": "COMPLETED",
"name": "Job_2026-01-06_18:46",
"date": "2026-01-06T23:46:14.413714",
"updatedAt": "2026-01-06T23:48:17.564509",
"isComplex": true,
"isPublic": true
},
"parameters": {
"count": 2,
"createdAt": "2026-01-06T23:46:14.423605",
"modelName": "boltz-2",
"weightSet": "Boltz-2",
"method": "Boltz-2",
"relaxPrediction": true
},
"sequences": [
{
"id": "f989c0c1-37ac-4f6e-aacf-579ebe79c22e",
"createdAt": "2026-01-06T23:46:14.417233",
"updatedAt": "2026-01-06T23:48:20.503840",
"name": null,
"sequence": "MTYKLILNGKTLKGETTTEAVDAATAEKVFKQYANDNGVDGEWTYDDATKTFTVTE",
"type": "protein"
},
{
"id": "42aea8ca-4cec-450a-890f-fd13d6625809",
"createdAt": "2026-01-06T23:46:14.417247",
"updatedAt": "2026-01-06T23:48:20.503840",
"name": null,
"sequence": "ATP",
"type": "ligand"
}
],
"predictionPayload": {
"predictionStatus": "COMPLETED",
"jobRunStatus": "COMPLETED",
"msaStatus": "PENDING",
"prediction": true,
"error": null,
"meanPLLDT": 76.26388669013977,
"executionTimeInMinutes": 1.99,
"pdb_url": "",
"cif_url": "https://artifacts.fastfold.ai/.../output_model_0.cif",
"msa_coverage_plot_url": null,
"pae_plot_url": "https://artifacts.fastfold.ai/.../PAE_heatmap.svg",
"plddt_plot_url": "https://artifacts.fastfold.ai/.../pLDDT_plot.svg",
"metrics_json_url": "https://artifacts.fastfold.ai/.../plddt_pae_metrics.json",
"config_json_url": null,
"citations_bibtex_url": null,
"plots_url": "",
"ptm_score": 0.8331819772720337,
"iptm_score": 0.6137562990188599,
"max_pae_score": null,
"seed": "1496388795",
"execution_time_in_minutes": 1.99,
"affinity_result_raw_json": {
"affinity_pred_value": 0.9314461946487427,
"affinity_probability_binary": 0.38347506523132324
}
}
}{
"message": "Unauthorized"
}{
"message": "Job not found"
}Last updated on