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

# 抽出ステータスの取得

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


## OpenAPI

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

````