색인미확인수명주기 미확인품질 미측정구조화 한국어 안내 · 문장 번역 전

Airflow API

apache.org에서 제공하는 문서·기록 분야의 API 제품입니다. 확인된 분류 신호는 검색·조회, OCR·텍스트 추출, 문서·기록입니다.

영문 원문 보기
Airflow API

Overview To facilitate management, Apache Airflow supports a range of REST API endpoints across its objects. This section provides an overview of the API design, methods, and supported use cases. Most of the endpoints accept JSON as input and return JSON responses. This means that you must usually add the following headers to your request: Content-type: application/json Accept: application/json Resources The term resource refers to a single type of object in the Airflow metadata. An API is broken up by its endpoint's corresponding resource. The name of a resource is typically plural and expressed in camelCase. Example: dagRuns . Resource names are used as part of endpoint URLs, as well as in API parameters and responses. CRUD Operations The platform supports C reate, R ead, U pdate, and D elete operations on most resources. You can review the standards for these operations and their standard parameters below. Some endpoints have special behavior as exceptions. Create To create a resource, you typically submit an HTTP POST request with the resource's required metadata in the request body. The response returns a 201 Created response code upon success with the resource's metadata, including its internal id , in the response body. Read The HTTP GET request can be used to read a resource or to list a number of resources. A resource's id can be submitted in the request parameters to read a specific resource. The response usually returns a 200 OK response code upon success, with the resource's metadata in the response body. If a GET request does not include a specific resource id , it is treated as a list request. The response usually returns a 200 OK response code upon success, with an object containing a list of resources' metadata in the response body. When reading resources, some common query parameters are usually available. e.g.: v1/connections?limit=25&offset=25 Query Parameter Type Description --------------- ---- ----------- limit integer Maximum number of objects to fetch. Usually 25 by default offset integer Offset after which to start returning objects. For use with limit query parameter. Update Updating a resource requires the resource id , and is typically done using an HTTP PATCH request, with the fields to modify in the request body. The response usually returns a 200 OK response code upon success, with information about the modified resource in the response body. Delete Deleting a resource requires the resource id and is typically executing via an HTTP DELETE request. The response usually returns a 204 No Content response code upon success. Conventions - Resource names are plural and expressed in camelCase. - Names are consistent between URL parameter name and field name. - Field names are in snake case. json { "name": "string", "slots": 0, "occupied slots": 0, "used slots": 0, "queued slots": 0, "open slots": 0 } Update Mask Update mask is available as a query parameter in patch endpoints. It is used to notify the API which fields you want to update. Using update mask makes it easier to update objects by helping the server know which fields to update in an object instead of updating all fields. The update request ignores any fields that aren't specified in the field mask, leaving them with their current values. Example: resource = request.get('/resource/my-id').json() resource['my field'] = 'new-value' request.patch('/resource/my-id?update mask=my field', data=json.dumps(resource)) Versioning and Endpoint Lifecycle - API versioning is not synchronized to specific releases of the Apache Airflow. - APIs are designed to be backward compatible. - Any changes to the API will first go through a deprecation phase. Trying the API You can use a third party client, such as [curl](https://curl.haxx.se/), [HTTPie](https://httpie.org/), [Postman](https://www.postman.com/) or [the Insomnia rest client](https://insomnia.rest/) to test the Apache Airflow API. Note that you will need to pass credentials data. For e.g., here is how …

번역은 이해를 돕기 위한 미검수 초벌 또는 구조화 안내입니다. 계약·의료·법률 판단에는 원문을 확인하세요.
연결된 문서
전역 집계 전현재 별표는 이 브라우저에만 저장
종합 품질근거 0%
가격미확인상세 가격 미수집
인증미확인
프로토콜REST73개 엔드포인트 수집
마지막 확인2026. 7. 28.출처 확인됨

SELECTION SUMMARY

도입 판단 요약

이 항목은 문서·기록 카테고리로 분류된 API 제품입니다. 확인된 분류 신호는 검색·조회, OCR·텍스트 추출, 문서·기록입니다. 상세 문장 번역은 아직 검수되지 않았으므로 아래 원문을 함께 확인하세요.

검수된 적합 용도

검증 정보 없음 — 태그와 카테고리는 분류 정보이며 적합성 보증이 아닙니다.

도입 전 확인

인증, 호출 제한, 데이터 처리 지역과 가격 조건을 연결된 문서에서 직접 확인하세요.

피해야 할 조건

제품별 제한 조건이 검수되지 않았습니다. 운영 적용 전에 공급자 조건을 재확인하세요.

EVIDENCED ADVANTAGES

API 특·장점

공급자·카탈로그·실측·편집 근거가 있는 신호만 표시하며, 근거 유형을 함께 밝힙니다.

카탈로그출처가 확인된 제품

카탈로그 원본과 확인 시점이 연결되어 있습니다.

공급자OpenAPI 3.0.3

정규화된 엔드포인트 73개를 탐색할 수 있습니다.

CATALOG TRUST

색인0

재배포 정책과 기본 식별 조건을 통과해 검색할 수 있지만 편집 승인은 아직 완료되지 않았습니다.

평가 2026. 07. 28. 13:05

QUALITY COVERAGE

미측정종합 점수
근거 충족률 0% · 신뢰 0%

unrated

핵심 도입 정보

인증검증 정보 없음
프로토콜REST
가격 모델미확인
리전검증 정보 없음
수집된 엔드포인트73개
마지막 확인2026. 07. 28. 13:05

같은 목적의 대체 API

같은 카테고리에서 공개 상태와 품질 근거를 우선해 표시합니다.