Skip to main content
POST
/
predict
Submit a prediction
curl --request POST \
  --url https://app.strandai.com/api/v1/predict \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "uploadId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "markers": [
    "<string>"
  ]
}
'
{
  "jobId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "reservedCredits": 123,
  "status": "queued"
}

Authorizations

Authorization
string
header
required

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

Body

application/json
uploadId
string<uuid>
required
markers
string[]
required
Minimum array length: 1
model
enum<string>

Optional explicit Lattice version. v0.4 is the 192-marker original; v0.5 is the retrained 192-marker sibling and the current default. Both share GenePT embeddings — the marker vocabulary is identical between them. Omit to let the platform pick (currently v0.5). Legacy strings "v10-fullpanel" and "v10-fullpanel-v2" are still accepted on input and rewritten server-side to "v0.4" / "v0.5" respectively (with a Warning: 299 response header); the legacy alias path is undocumented and will be removed on 2026-12-01. The "v10" alias resolved to the now-sunset v0.3 and is rejected with 400 unknown_model.

Available options:
v0.4,
v0.5

Response

Job accepted and credits reserved

jobId
string<uuid>
required
reservedCredits
integer
required
status
enum<string>
required
Available options:
queued