> ## Documentation Index
> Fetch the complete documentation index at: https://student-213fb9fc.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# マップ

> 注意: 機能とパフォーマンスが向上した本 API の新しい [v2 バージョン](/ja/api-reference/endpoint/map) が利用可能です。


## OpenAPI

````yaml ja/api-reference/v1-openapi.json post /map
openapi: 3.0.0
info:
  title: Firecrawl API
  version: v1
  description: Firecrawl サービスと連携して Web サイトのスクレイピングおよびクロール処理を行うための API です。
  contact:
    name: Firecrawl Support
    url: https://firecrawl.dev/support
    email: support@firecrawl.dev
servers:
  - url: https://api.firecrawl.dev/v1
security:
  - bearerAuth: []
paths:
  /map:
    post:
      tags:
        - Mapping
      summary: オプションに基づいて複数のURLをマップする
      operationId: mapUrls
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                url:
                  type: string
                  format: uri
                  description: クロールを開始するベースURL
                search:
                  type: string
                  description: >-
                    マッピングに使用する検索クエリです。Alpha フェーズ中は、検索機能の「スマート」な部分は検索結果 500
                    件までに制限されています。ただし、map によってそれ以上の結果が見つかった場合でも、その件数には制限はありません。
                ignoreSitemap:
                  type: boolean
                  description: クロール時にサイトマップを無視する。
                  default: true
                sitemapOnly:
                  type: boolean
                  description: ウェブサイトのサイトマップに含まれるリンクだけを返す
                  default: false
                includeSubdomains:
                  type: boolean
                  description: サイトのサブドメインを含める
                  default: true
                limit:
                  type: integer
                  description: 返すリンク数の上限
                  default: 5000
                  maximum: 30000
                timeout:
                  type: integer
                  description: タイムアウト時間（ミリ秒単位）。デフォルトではタイムアウトは設定されていません。
                location:
                  type: object
                  description: >-
                    リクエストのロケーション設定。指定した場合、利用可能であれば対応するプロキシを使用し、対応する言語とタイムゾーン設定をエミュレートします。指定しない場合は、デフォルトで「US」が使用されます。
                  properties:
                    country:
                      type: string
                      description: 'ISO 3166-1 alpha-2 形式の国コード（例: 「US」「AU」「DE」「JP」）'
                      pattern: ^[A-Z]{2}$
                      default: US
                    languages:
                      type: array
                      description: >-
                        リクエストに対して優先される言語およびロケール（優先度順）。指定された location
                        の言語が既定値です。詳細は
                        https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Accept-Language
                        を参照してください。
                      items:
                        type: string
                        example: en-US
              required:
                - url
      responses:
        '200':
          description: 成功時のレスポンス
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MapResponse'
        '402':
          description: お支払いが必要です
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    example: Payment required to access this resource.
        '429':
          description: リクエストが多すぎます。
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    example: >-
                      Request rate limit exceeded. Please wait and try again
                      later.
        '500':
          description: サーバーエラー
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    example: An unexpected error occurred on the server.
      security:
        - bearerAuth: []
components:
  schemas:
    MapResponse:
      type: object
      properties:
        success:
          type: boolean
        links:
          type: array
          items:
            type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````