> ## Documentation Index
> Fetch the complete documentation index at: https://docs.firecrawl.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# 抽出ステータスの取得

> Firecrawl API キーが必要な AI エージェントですか？自動オンボーディングの手順については、[firecrawl.dev/agent-onboarding/SKILL.md](https://www.firecrawl.dev/agent-onboarding/SKILL.md)を参照してください。


## OpenAPI

````yaml ja/api-reference/v2-openapi.json GET /extract/{id}
openapi: 3.0.0
info:
  contact:
    email: support@firecrawl.dev
    name: Firecrawl Support
    url: https://firecrawl.dev/support
  description: Firecrawlのサービスを利用して、Webスクレイピングやクロールを行うためのAPIです。
  title: Firecrawl API
  version: v2
servers:
  - url: https://api.firecrawl.dev/v2
security:
  - bearerAuth: []
paths:
  /extract/{id}:
    parameters:
      - description: 抽出ジョブのID
        in: path
        name: id
        required: true
        schema:
          format: uuid
          type: string
    get:
      tags:
        - Extraction
      summary: 抽出ジョブの状態を取得する
      operationId: getExtractStatus
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ExtractStatusResponse'
          description: 成功時のレスポンス
      security:
        - bearerAuth: []
components:
  schemas:
    ExtractStatusResponse:
      properties:
        data:
          type: object
        expiresAt:
          format: date-time
          type: string
        status:
          description: 抽出ジョブの現在の状態
          enum:
            - completed
            - processing
            - failed
            - cancelled
          type: string
        success:
          type: boolean
        tokensUsed:
          description: 抽出ジョブで使用されたトークン数。ジョブが完了している場合にのみ取得できます。
          type: integer
      type: object
  securitySchemes:
    bearerAuth:
      scheme: bearer
      type: http

````