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

# Get saved task by name

> Retrieve a specific saved task by its name. This is helpful for accessing or reusing previously saved automation tasks.



## OpenAPI

````yaml GET /saved_tasks/name/{task_name}
openapi: 3.0.3
info:
  title: BrowserAI Task API
  version: 1.0.0
  description: API for creating and retrieving browser automation tasks and their results.
servers:
  - url: https://browser.ai/api/v1
security: []
paths:
  /saved_tasks/name/{task_name}:
    get:
      summary: Get a saved task by name
      description: >-
        Retrieve a specific saved task by its name. This is helpful for
        accessing or reusing previously saved automation tasks.
      parameters:
        - name: task_name
          in: path
          required: true
          description: The name of the saved task (URL-encoded if it contains spaces).
          schema:
            type: string
            example: MySavedTask
      responses:
        '200':
          description: Saved task details
          content:
            application/json:
              schema:
                type: object
                properties:
                  taskId:
                    type: string
                  name:
                    type: string
                  project:
                    type: string
                  geoLocation:
                    $ref: '#/components/schemas/GeoLocation'
                  type:
                    type: string
                  cron_settings:
                    type: string
                  instructions:
                    type: array
                    items:
                      type: object
                      properties:
                        action:
                          type: string
        '401':
          description: Unauthorized
          content:
            application/json:
              example:
                error: Unauthorized
        '404':
          description: Saved task not found
          content:
            application/json:
              example:
                error: Saved task not found
        '500':
          description: Internal server error
          content:
            application/json:
              example:
                error: Internal server error
      security:
        - ApiKeyAuth: []
components:
  schemas:
    GeoLocation:
      type: object
      required:
        - country
      properties:
        country:
          type: string
          description: '2-letter country code, for example: es for Spain.'
        city:
          type: string
        zipcode:
          type: string
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: 'Insert API token, use the format: `apikey <API-TOKEN>`.'

````