API of Pipelex: open-source language for AI Agents to create and run repeatable AI workflows
461
The official REST API server for building and executing Pipelex pipelines. Deploy your pipelines as HTTP endpoints and integrate them into any application or workflow.
The Pipelex API Server is a FastAPI-based REST API that allows you to execute Pipelexā pipelines via HTTP requests. Deploy your pipelines as HTTP endpoints and integrate them into any application or workflow.
Official Docker image available at: pipelex/pipelex-apiā
Create a .env file with your API key and LLM provider configuration:
# Required: Your API authentication key. This is the API key that will be required to access the API.
API_KEY=your-api-key-here
# AI inference provider API keys: either using Pipelex Inference API or your own API key(s) (see configuration below)
BLACKBOX_API_KEY=your-blackboxai-api-key
Note for v0.0.7: This release temporarily uses
BLACKBOX_API_KEYfor AI inference. Future releases will revert to usingPIPELEX_INFERENCE_API_KEYor allow multiple provider configurations.
You can get a free API key ($20 of free credits) by joining our Discord communityā and requesting it in the appropriate channel.
For complete API key configuration, see the API Key Configuration sectionā in the main Pipelex repository.
Option A: Using Docker Compose (Recommended)
See docker-compose.ymlā for reference.
docker-compose up
Option B: Using Docker Run
docker run --name pipelex-api -p 8081:8081 \
-e API_KEY=your-api-key-here \
-e BLACKBOX_API_KEY=your-blackboxai-api-key-here \
pipelex/pipelex-api:latest
Option C: Build Locally
docker build -t pipelex-api .
docker run --name pipelex-api -p 8081:8081 \
-e API_KEY=your-api-key-here \
-e BLACKBOX_API_KEY=your-blackboxai-api-key-here \
pipelex-api
curl http://localhost:8081/health
The API is now running at http://localhost:8081
For complete API documentation, including input formats, error handling, best practices, and client library examples:
https://docs.pipelex.com/pages/api/ā
This project is licensed under the MIT licenseā . Runtime dependencies are distributed under their own licenses via PyPI.
"Pipelex" is a trademark of Evotis S.A.S.
Ā© 2025 Evotis S.A.S.
Content type
Image
Digest
sha256:eb04cbf12ā¦
Size
259.2 MB
Last updated
about 1 month ago
docker pull pipelex/pipelex-api