> ## Documentation Index
> Fetch the complete documentation index at: https://firecrawl-research-index-life-sciences-docs.mintlify.site/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 POST /map
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:
  /map:
    post:
      tags:
        - Mapping
      summary: オプションを指定して複数のURLをマップする
      operationId: mapUrls
      requestBody:
        content:
          application/json:
            examples:
              example1:
                summary: 例 1
                value:
                  ignoreCache: false
                  ignoreQueryParameters: true
                  includeSubdomains: true
                  limit: 5000
                  location:
                    country: US
                    languages:
                      - en-US
                  search: <string>
                  sitemap: include
                  timeout: 60000
                  url: <string>
            schema:
              properties:
                ignoreCache:
                  default: false
                  description: >-
                    サイトマップキャッシュを無視して最新のURLを取得します。サイトマップデータは最大7日間キャッシュされるため、サイトマップを最近更新した場合はこのパラメータを指定してください。
                  type: boolean
                ignoreQueryParameters:
                  default: true
                  description: クエリパラメータ付きのURLを返さない
                  type: boolean
                includeSubdomains:
                  default: true
                  description: このサイトのサブドメインを含める
                  type: boolean
                limit:
                  default: 5000
                  description: 返すリンクの最大数
                  maximum: 100000
                  type: integer
                location:
                  description: >-
                    リクエストのロケーション設定です。指定すると、利用可能な場合は適切なプロキシを使用し、対応する言語およびタイムゾーン設定をエミュレートします。指定しない場合は、デフォルトで「US」が使用されます。
                  properties:
                    country:
                      default: US
                      description: 'ISO 3166-1 の alpha-2 国コード（例: 「US」「AU」「DE」「JP」）'
                      pattern: ^[A-Z]{2}$
                      type: string
                    languages:
                      description: >-
                        リクエストに対して優先度順に指定する言語およびロケール。指定された location
                        の言語がデフォルトになります。詳細は
                        https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Accept-Language
                        を参照してください。
                      items:
                        example: en-US
                        type: string
                      type: array
                  type: object
                search:
                  description: >-
                    検索クエリを指定すると、結果が関連度の高い順に並べ替えられます。例: 「blog」を指定すると、URL
                    内に「blog」を含むものが関連度順に返されます。
                  type: string
                sitemap:
                  default: include
                  description: >-
                    マッピング時のサイトマップモードです。`skip` に設定すると、URL
                    の検出にサイトマップは使用されません。`only` に設定すると、サイトマップ内にある URL
                    だけが返されます。デフォルトの `include` では、サイトマップとその他の手法を併用して URL を検出します。
                  enum:
                    - skip
                    - include
                    - only
                  type: string
                timeout:
                  description: タイムアウト（ミリ秒単位）。既定ではタイムアウトはありません。
                  type: integer
                url:
                  description: クロールの開始地点となるベースURL
                  format: uri
                  type: string
              required:
                - url
              type: object
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MapResponse'
          description: 成功したレスポンス
        '402':
          content:
            application/json:
              schema:
                properties:
                  error:
                    example: Payment required to access this resource.
                    type: string
                type: object
          description: お支払いが必要です
        '429':
          content:
            application/json:
              schema:
                properties:
                  error:
                    example: >-
                      Request rate limit exceeded. Please wait and try again
                      later.
                    type: string
                type: object
          description: リクエストが多すぎます
        '500':
          content:
            application/json:
              schema:
                properties:
                  error:
                    example: An unexpected error occurred on the server.
                    type: string
                type: object
          description: サーバーエラー
      security:
        - bearerAuth: []
components:
  schemas:
    MapResponse:
      properties:
        links:
          items:
            properties:
              description:
                description: ページの説明（あれば）
                type: string
              title:
                description: （存在する場合の）ページのタイトル。
                type: string
              url:
                format: uri
                type: string
            required:
              - url
            type: object
          type: array
        success:
          type: boolean
      type: object
  securitySchemes:
    bearerAuth:
      scheme: bearer
      type: http

````