# Cookies

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths: {}
components:
  schemas:
    Cookies:
      type: array
      items:
        type: object
        properties:
          domain:
            type: string
            description: cookie domain
          expires:
            type: integer
            description: >-
              cookie expiration date as the number of seconds since the UNIX
              epoch. Set to `-1` for session cookies
          name:
            type: string
            description: cookie name
          path:
            type: string
            description: cookie path
          sameSite:
            type: string
            description: cookie SameSite type
          secure:
            type: boolean
            description: '`true` if cookie is secure'
          value:
            type: string
            description: cookie value
        required:
          - domain
          - path
          - value
          - name
        x-apidog-orders:
          - domain
          - path
          - name
          - value
          - expires
          - sameSite
          - secure
        description: cookie
      description: cookies for JS render
      x-apidog-folder: ''
  securitySchemes:
    apikey-header-x-api-token:
      type: apiKey
      in: header
      name: x-api-token
servers:
  - url: https://api.scrapeless.com
    description: Prod Env
security:
  - apikey-header-x-api-token: []

```
