컨텐츠로 건너뛰기

API 레퍼런스

Pipe2.ai는 완전한 GraphQL API를 제공합니다. 아래의 인터랙티브 플레이그라운드를 사용하여 스키마를 탐색하고, 쿼리를 실행하고, 여러분의 JWT 토큰으로 뮤테이션을 테스트하세요.

플레이그라운드

Endpoint https://api.pipe2.ai/v1/graphql

Explore the full schema, run queries, and test mutations interactively. Set your JWT token in the Headers tab to authenticate.

Open GraphQL Playground Opens Apollo Sandbox in a new tab

인증

모든 요청에는 JWT Bearer 토큰이 필요합니다. Pipe2.ai 대시보드에서 토큰을 가져온 다음 플레이그라운드의 Headers 탭에서 설정하세요:

{
"Authorization": "Bearer YOUR_JWT_TOKEN"
}

빠른 예제

모든 파이프라인 나열:

query {
pipelines {
id
name
slug
credit_cost
description
}
}

파이프라인 실행:

mutation RunPipeline($input: RunPipelineInput!) {
run_pipeline(input: $input) {
pipeline_run_id
}
}

크레딧 잔액 확인:

mutation {
get_credit_balance {
balance
reserved
available
}
}

스키마 레퍼런스

실시간 GraphQL 스키마에서 자동 생성됨 — SEO 및 빠른 조회에 유용합니다.