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

# Get Map

> Retrieve a previously completed map by its ID.



## OpenAPI

````yaml openapi/maps.json GET /v1/maps/{map_id}
openapi: 3.0.3
info:
  title: Maps API
  version: 1.0.0
servers:
  - url: https://api.olostep.com
security: []
paths:
  /v1/maps/{map_id}:
    get:
      summary: Get Map
      description: Retrieve a previously completed map by its ID.
      parameters:
        - name: map_id
          in: path
          required: true
          description: Unique identifier for the map to be retrieved.
          schema:
            type: string
      responses:
        '200':
          description: Successful response with the map object.
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                    description: Unique identifier for this map
                  urls_count:
                    type: integer
                    description: Number of URLs in the current response
                  urls:
                    type: array
                    items:
                      type: string
                    description: Array of URLs found on the page
                  cursor:
                    type: string
                    nullable: true
                    description: >-
                      Pagination cursor to retrieve the next set of URLs. If
                      null, all URLs have been retrieved.
                  credits_consumed:
                    type: integer
                    nullable: true
                    description: >-
                      Number of credits consumed by this request. Populated
                      after execution completes. Credits are the source of truth
                      for billing.
                  cost_usd:
                    type: number
                    nullable: true
                    description: >-
                      Estimated cost in USD for this request. Populated after
                      execution completes. Calculated from credits consumed and
                      your plan rate — 99% accurate, but credits_consumed is the
                      authoritative value.
        '401':
          description: Invalid API Key
        '404':
          description: Map Not Found
        '500':
          description: Internal Server Error
      security:
        - Authorization: []
components:
  securitySchemes:
    Authorization:
      type: http
      scheme: bearer
      description: >-
        Bearer authentication header of the form Bearer <token>, where <token>
        is your auth token.

````