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

# List Cookies



## OpenAPI

````yaml https://api.warmyourx.com/openapi.json get /cookies/
openapi: 3.1.0
info:
  title: Automatex API
  version: 0.1.0
servers:
  - url: https://api.warmyourx.com
    description: Production
security: []
paths:
  /cookies/:
    get:
      tags:
        - cookies
      summary: List Cookies
      operationId: list_cookies_cookies__get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/CookieListItem'
                type: array
                title: Response List Cookies Cookies  Get
      security:
        - HTTPBearer: []
components:
  schemas:
    CookieListItem:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        cookie_preview:
          type: string
          title: Cookie Preview
          description: >-
            Truncated preview of the cookie header (list views never expose the
            full value).
        label:
          anyOf:
            - type: string
            - type: 'null'
          title: Label
        expires_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Expires At
        is_active:
          type: boolean
          title: Is Active
        last_used_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Last Used At
        created_at:
          type: string
          format: date-time
          title: Created At
        updated_at:
          type: string
          format: date-time
          title: Updated At
      type: object
      required:
        - id
        - cookie_preview
        - label
        - expires_at
        - is_active
        - last_used_at
        - created_at
        - updated_at
      title: CookieListItem
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````