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 key
PIPELEX_INFERENCE_API_KEY=your-pipelex-inference-api-key
# TEMPORARY: Required for image generation (will be integrated into unified inference system)
FAL_API_KEY=your-fal-api-keyYou can get a free Pipelex Inference 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 upOption B: Using Docker Run
docker run --name pipelex-api -p 8081:8081 \
-e API_KEY=your-api-key-here \
-e PIPELEX_INFERENCE_API_KEY=your-pipelex-inference-api-key \
-e FAL_API_KEY=your-fal-api-key \
pipelex/pipelex-api:latestOption C: Build Locally
docker build -t pipelex-api .
docker run --name pipelex-api -p 8081:8081 \
-e API_KEY=your-api-key-here \
-e PIPELEX_INFERENCE_API_KEY=your-pipelex-inference-api-key \
-e FAL_API_KEY=your-fal-api-key \
pipelex-apicurl http://localhost:8081/healthThe 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/
- API Documentation: https://docs.pipelex.com/pages/api/
- Pipelex Documentation: https://docs.pipelex.com/
- Discord Community: https://go.pipelex.com/discord
- Main Repository: https://github.com/Pipelex/pipelex
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.