Skip to main content
GET
/
v1
/
structure-predictions
List structure predictions for a variant
curl --request GET \
  --url https://api.example.com/v1/structure-predictions \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "completed_at": "2026-04-22T14:16:10+00:00",
      "created_at": "2026-04-22T14:15:00+00:00",
      "credit_cost": 2,
      "id": "aaaa1111-bbbb-2222-cccc-333344445555",
      "inputs": {
        "variant_id": "11112222-3333-4444-5555-666677778888"
      },
      "object": "structure_prediction",
      "results": {
        "confidence_score": 0.87,
        "model_used": "ABodyBuilder2",
        "pdb_url": "https://<project>.supabase.co/storage/v1/object/sign/structures/...?token=...",
        "pdb_url_expires_at": "2026-04-22T15:16:10+00:00"
      },
      "started_at": "2026-04-22T14:15:02+00:00",
      "status": "completed"
    }
  ],
  "has_more": true,
  "next_cursor": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

variant_id
string<uuid>
required
limit
integer
default:50
Required range: 1 <= x <= 200
after
string | null

Response

Successful Response

data
StructurePrediction · object[]
required
has_more
boolean
required
next_cursor
string | null