Buildkite Pipelines API
The Pipelines API from Buildkite — 5 operation(s) for pipelines.
The Pipelines API from Buildkite — 5 operation(s) for pipelines.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
find_apisBrowse and filter every API in the catalog.get_api_artifactsOne API's artifacts, grouped by type.get_openapiThe primary OpenAPI for this API.find_similar_apisAPIs that look like this one.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.curl "https://apis.io/api/v1/apis/buildkite-pipelines-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.
openapi: 3.2.0
info:
title: Buildkite REST AccessToken Pipelines API
description: 'Best-effort OpenAPI 3.1 description of the Buildkite REST API for organizations, pipelines,
builds, jobs, agents, artifacts, annotations, clusters, queues, agent tokens,
pipeline templates, rules, teams, and access tokens.
Authentication is via a Bearer token issued from the Buildkite UI.
'
version: '2.0'
contact:
name: Buildkite
url: https://buildkite.com/docs/apis/rest-api
servers:
- url: https://api.buildkite.com/v2
description: Buildkite REST API v2
security:
- bearerAuth: []
tags:
- name: Pipelines
paths:
/organizations/{org}/pipelines:
parameters:
- $ref: '#/components/parameters/Org'
get:
tags:
- Pipelines
summary: List pipelines
operationId: listPipelines
responses:
'200':
description: Pipelines
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Pipeline'
post:
tags:
- Pipelines
summary: Create pipeline
operationId: createPipeline
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/PipelineCreate'
responses:
'201':
description: Created
content:
application/json:
schema:
$ref: '#/components/schemas/Pipeline'
/organizations/{org}/pipelines/{slug}:
parameters:
- $ref: '#/components/parameters/Org'
- $ref: '#/components/parameters/PipelineSlug'
get:
tags:
- Pipelines
summary: Get pipeline
operationId: getPipeline
responses:
'200':
description: Pipeline
content:
application/json:
schema:
$ref: '#/components/schemas/Pipeline'
patch:
tags:
- Pipelines
summary: Update pipeline
operationId: updatePipeline
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/PipelineCreate'
responses:
'200':
description: Updated
content:
application/json:
schema:
$ref: '#/components/schemas/Pipeline'
delete:
tags:
- Pipelines
summary: Delete pipeline
operationId: deletePipeline
responses:
'204':
description: Deleted
/organizations/{org}/pipelines/{slug}/archive:
parameters:
- $ref: '#/components/parameters/Org'
- $ref: '#/components/parameters/PipelineSlug'
post:
tags:
- Pipelines
summary: Archive pipeline
operationId: archivePipeline
responses:
'200':
description: Archived
/organizations/{org}/pipelines/{slug}/unarchive:
parameters:
- $ref: '#/components/parameters/Org'
- $ref: '#/components/parameters/PipelineSlug'
post:
tags:
- Pipelines
summary: Unarchive pipeline
operationId: unarchivePipeline
responses:
'200':
description: Unarchived
/organizations/{org}/pipelines/{slug}/webhook:
parameters:
- $ref: '#/components/parameters/Org'
- $ref: '#/components/parameters/PipelineSlug'
post:
tags:
- Pipelines
summary: Rotate webhook URL
operationId: rotatePipelineWebhook
responses:
'200':
description: Webhook
components:
parameters:
Org:
name: org
in: path
required: true
description: Organization slug.
schema:
type: string
PipelineSlug:
name: slug
in: path
required: true
description: Pipeline slug.
schema:
type: string
schemas:
Pipeline:
type: object
properties:
id:
type: string
url:
type: string
web_url:
type: string
name:
type: string
slug:
type: string
description:
type: string
repository:
type: string
cluster_id:
type: string
branch_configuration:
type: string
default_branch:
type: string
skip_queued_branch_builds:
type: boolean
provider:
type: object
builds_url:
type: string
badge_url:
type: string
created_at:
type: string
format: date-time
archived_at:
type:
- string
- 'null'
format: date-time
PipelineCreate:
type: object
required:
- name
- repository
properties:
name:
type: string
repository:
type: string
cluster_id:
type: string
configuration:
type: string
default_branch:
type: string
description:
type: string
securitySchemes:
bearerAuth:
type: http
scheme: bearer
description: Bearer token issued from your Buildkite Personal Access Tokens page.