Home
Providers
Celery
Celery
Celery is an open-source distributed task queue for Python. It allows you to run tasks asynchronously in the background, enabling scalable distributed systems with support for multiple message brokers (RabbitMQ, Redis, Amazon SQS) and result backends. Celery provides a rich set of Python programming APIs for defining tasks, composing workflows, scheduling periodic work, executing on workers, and monitoring execution.
Celery publishes 8 APIs on the APIs.io network. Tagged areas include Asynchronous, Distributed Systems, Message Queue, Open Source, and Python.
Celery’s developer surface includes documentation, getting-started guide, GitHub presence, changelog, and 8 more developer resources.
8 APIs
Asynchronous Distributed Systems Message Queue Open Source Python Task Queue
On this page
Kin Score
APIs 8
Pricing Plans 1
Rate Limits 1
FinOps 1
Security Posture 1
Resources 12
apis.yml
53 Operational Transparency
Composite quality — 27.3/100 · emerging
Contract Quality
0.0 / 25
Developer Ergonomics
6.1 / 20
Commercial Clarity
7.9 / 20
Operational Transparency
6.8 / 13
Agent readiness — 3/100 · human only
Machine-Readable Contract
0 / 18
Agentic Access Contract
0 / 10
MCP Server
0 / 12
Machine-Readable Auth
0 / 10
Idempotency
0 / 9
Stable Error Semantics
0 / 8
Request/Response Examples
0 / 7
Rate-Limit Signaling
7 / 7
Typed Event Surface
0 / 6
Agent Skills
0 / 5
Well-Known Catalog
0 / 4
Consent & Bot Identity
0 / 3
A2A Agent Card
0 / 8
Dry-Run / Simulate Mode
0 / 4
Individual APIs this provider publishes, each with its own machine-readable definition.
Scroll for all 8
Published pricing tiers and plan structures.
Documented rate limits and quota policies.
Cost, billing, and metering signals for API financial operations.
Authentication, domain security, vulnerability disclosure, and trust-center signals.
Get Started 1
Portal, sign-up, and the first successful call
Documentation 2
Reference material describing how the API behaves
Build 1
SDKs, sample code, and the tooling you integrate with
Access & Security 1
Authentication, authorization, and security posture
Operate 3
Status, limits, changes, and where to get help
Commercial 1
Pricing, plans, and the legal terms of use
Company 1
The organization behind the API
Other 2
Properties that don't map to a standard resource type
Source (apis.yml)
aid: celery
url: https://raw.githubusercontent.com/api-evangelist/celery/refs/heads/main/apis.yml
name: Celery
tags:
- Asynchronous
- Distributed Systems
- Message Queue
- Open Source
- Python
- Task Queue
type: Index
accessModel:
pricing: freemium
onboarding: unknown
trial: false
try_now: false
public: false
label: Freemium
confidence: medium
source:
- plans
generated: '2026-07-22'
method: derived
image: https://kinlane-images.s3.amazonaws.com/shared/apis-json/icons/celery.png
access: Open Source
created: '2024-01-15'
modified: '2026-04-23'
position: Consumer
specificationVersion: '0.19'
description: Celery is an open-source distributed task queue for Python. It allows you to run tasks asynchronously in the
background, enabling scalable distributed systems with support for multiple message brokers (RabbitMQ, Redis, Amazon SQS)
and result backends. Celery provides a rich set of Python programming APIs for defining tasks, composing workflows, scheduling
periodic work, executing on workers, and monitoring execution.
apis:
- aid: celery:celery-task-api
name: Celery Task API
tags:
- Python
- Task Queue
- Tasks
humanURL: https://docs.celeryq.dev/en/stable/userguide/tasks.html
properties:
- url: https://docs.celeryq.dev/en/stable/userguide/tasks.html
type: Documentation
- url: https://docs.celeryq.dev/en/stable/reference/celery.app.task.html
type: Reference
- url: https://docs.celeryq.dev/en/stable/getting-started/
type: GettingStarted
description: Core API for defining and executing distributed tasks in Celery. Supports task decorators, retries, timeouts,
rate limiting, and custom task classes.
- aid: celery:celery-application-api
name: Celery Application API
tags:
- Application
- Configuration
humanURL: https://docs.celeryq.dev/en/stable/userguide/application.html
properties:
- url: https://docs.celeryq.dev/en/stable/userguide/application.html
type: Documentation
- url: https://docs.celeryq.dev/en/stable/reference/celery.html
type: Reference
- url: https://docs.celeryq.dev/en/stable/userguide/configuration.html
type: Configuration
description: Application configuration and initialization API for Celery, used to configure brokers, result backends, serialization,
routing, and task discovery.
- aid: celery:celery-canvas-api
name: Celery Canvas API
tags:
- Workflows
- Chains
- Groups
- Chords
humanURL: https://docs.celeryq.dev/en/stable/userguide/canvas.html
properties:
- url: https://docs.celeryq.dev/en/stable/userguide/canvas.html
type: Documentation
description: Canvas is Celery's workflow composition API for building complex task orchestrations using signatures, chains,
groups, chords, maps, starmaps, and chunks.
- aid: celery:celery-beat-api
name: Celery Beat API
tags:
- Scheduling
- Periodic Tasks
humanURL: https://docs.celeryq.dev/en/stable/userguide/periodic-tasks.html
properties:
- url: https://docs.celeryq.dev/en/stable/userguide/periodic-tasks.html
type: Documentation
- url: https://docs.celeryq.dev/en/stable/reference/celery.beat.html
type: Reference
description: Celery Beat is the scheduler for periodic tasks, supporting crontab-style schedules, interval schedules, and
solar schedules. It can also be backed by a database scheduler for dynamic schedules.
- aid: celery:celery-worker-api
name: Celery Worker API
tags:
- Worker
- Execution
- Concurrency
humanURL: https://docs.celeryq.dev/en/stable/userguide/workers.html
properties:
- url: https://docs.celeryq.dev/en/stable/userguide/workers.html
type: Documentation
- url: https://docs.celeryq.dev/en/stable/reference/celery.worker.html
type: Reference
description: Worker API for executing distributed tasks with configurable concurrency (prefork, gevent, eventlet, solo,
threads), autoscaling, remote control, and signal handling.
- aid: celery:celery-result-api
name: Celery Result Backend API
tags:
- Results
- State
- Storage
humanURL: https://docs.celeryq.dev/en/stable/userguide/tasks.html#result-backends
properties:
- url: https://docs.celeryq.dev/en/stable/userguide/tasks.html#result-backends
type: Documentation
- url: https://docs.celeryq.dev/en/stable/reference/celery.result.html
type: Reference
description: Result backend API for storing and retrieving task results and state using backends such as Redis, RPC, database,
Memcached, Cassandra, and S3.
- aid: celery:celery-signals-api
name: Celery Signals API
tags:
- Signals
- Events
- Extensions
humanURL: https://docs.celeryq.dev/en/stable/userguide/signals.html
properties:
- url: https://docs.celeryq.dev/en/stable/userguide/signals.html
type: Documentation
- url: https://docs.celeryq.dev/en/stable/reference/celery.signals.html
type: Reference
description: Signals API for hooking into Celery lifecycle events including task, worker, beat, and consumer signals to
build extensions and observability.
- aid: celery:celery-monitoring-api
name: Celery Monitoring and Events API
tags:
- Monitoring
- Events
- Observability
humanURL: https://docs.celeryq.dev/en/stable/userguide/monitoring.html
properties:
- url: https://docs.celeryq.dev/en/stable/userguide/monitoring.html
type: Documentation
- url: https://docs.celeryq.dev/en/stable/reference/celery.events.html
type: Reference
description: Event streaming and monitoring API for inspecting workers, tasks, and queues. Supports the curses-based celery
events monitor and third-party tools such as Flower.
common:
- type: DomainSecurity
url: security/celery-domain-security.yml
- type: Website
url: https://docs.celeryq.dev/
- type: Documentation
url: https://docs.celeryq.dev/en/stable/
- type: Reference
url: https://docs.celeryq.dev/en/stable/reference/index.html
- type: GettingStarted
url: https://docs.celeryq.dev/en/stable/getting-started/
- type: GitHub
url: https://github.com/celery/celery
- type: PyPI
url: https://pypi.org/project/celery/
- type: ChangeLog
url: https://docs.celeryq.dev/en/stable/changelog.html
- type: Community
url: https://github.com/celery/celery/discussions
- type: Issues
url: https://github.com/celery/celery/issues
- type: Contributing
url: https://docs.celeryq.dev/en/stable/contributing.html
- type: License
url: https://github.com/celery/celery/blob/main/LICENSE
maintainers:
- FN: Kin Lane
email: kin@apievangelist.com