ProductAPIRESTIntegrationPremium

API Access Now Available on Premium Plans

Premium subscribers can now access Foldexa programmatically through our REST API. Submit jobs, poll status, retrieve results, and integrate Foldexa directly into your research pipelines and laboratory information systems.

KT

Kanat Tilekov

CTO & Software Developer

Jan 30, 2026 3 min read

Many of our early access researchers are running Foldexa as part of larger computational pipelines. Starting today, you can do that programmatically.

API Overview

The Foldexa REST API provides full programmatic access to all platform capabilities. It is designed for integration with existing bioinformatics pipelines, LIMS systems, and custom research tooling. The API follows RESTful conventions with JSON request and response bodies.

EndpointMethodDescription
POST /v1/jobsPOSTSubmit a new design job
GET /v1/jobs/{id}GETGet job status and results
GET /v1/jobsGETList all jobs (paginated)
DELETE /v1/jobs/{id}DELETECancel a queued job
GET /v1/modelsGETList available pipeline models
Quick start — 10 lines
import foldexa  # pip install foldexa

client = foldexa.Client(api_key="fldx_live_...")

job = client.jobs.create(
    pipeline="diffab-cdr-redesign",
    antigen_pdb="7KMG",
    cdrs=["H1", "H2", "H3"],
    num_designs=50,
)

result = client.jobs.wait(job.id, poll_interval=10)

for design in result.top_designs(n=5):
    print(design.rank, design.foldexa_score, design.sequence[:20])

Rate Limits

PlanConcurrent JobsDesigns / MonthAPI Calls / Min
Free110010
Pro52,00060
Premium2020,000300
EnterpriseUnlimitedUnlimitedUnlimited

Python SDK

The official Python SDK (pip install foldexa) wraps the REST API with typed response objects, automatic retry on transient errors, and a jobs.wait() helper for synchronous polling. Full SDK documentation is in the Docs.

Share
KT

Written by

Kanat Tilekov

CTO & Software Developer