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

# Get page data

> Legacy v1 equivalent of the v2 get page data endpoint.

<Warning>
  **The Reporting API v1.0 is unsupported.** It receives no new endpoints or fields and will
  be sunsetted. This reference is published only to help you migrate to the
  [Reporting API v2.0](/docs/other-apis/conductor-monitoring-reporting-api/) — do not build new
  integrations against it. See the
  [migration guide](/docs/other-apis/conductor-monitoring-reporting-api-v10-legacy/#migration-guide)
  for the v1 to v2 endpoint mapping.
</Warning>


## OpenAPI

````yaml other-apis/monitoring/openapi.json GET /v1/websites/{website_id}/pages
openapi: 3.0.3
info:
  title: Conductor Monitoring APIs
  description: >-
    Complete collection for all Conductor Monitoring APIs.


    ## The 3 API Tokens


    | Token Variable | API | Purpose |

    |---|---|---|

    | `reporting_api_token` | Reporting API v1 + v2 | READ — extract SEO data,
    stats, pages, issues, alerts |

    | `cms_api_token` | CMS API v1 | WRITE — trigger immediate page re-crawl
    after publishing |

    | `enrichment_api_token` | Data Enrichment API v1 | WRITE — push custom
    field values (revenue, owner, etc.) into pages |


    All tokens found under: ****Account** > **Account** tab > **Integration
    Tokens****


    ## Rate Limits

    - Reporting API: 6 req/sec/IP (429 for 1 min if exceeded)

    - Data Enrichment API: max 1,000 URLs/request, 1 req/sec/website
  version: 1.0.0
servers:
  - url: https://api.cm.conductor.com
security: []
tags:
  - name: Reporting API v2 - Entities
    description: |-
      Current version — use this for all new integrations.
      Token: reporting_api_token
      Purpose: Read-only SEO data extraction.
  - name: Reporting API v2 - Data
    description: |-
      Current version — use this for all new integrations.
      Token: reporting_api_token
      Purpose: Read-only SEO data extraction.
  - name: Reporting API v2 - Alerts
    description: |-
      Current version — use this for all new integrations.
      Token: reporting_api_token
      Purpose: Read-only SEO data extraction.
  - name: Reporting API v1 (Legacy)
    description: >-
      Original Reporting API — will be deprecated. Same reporting_api_token as
      v2.


      Key differences from v2:

      - website_id is a URL path segment, not a query param

      - Has /gds (Google Data Studio) and /metrics endpoints not in v2

      - No LFA endpoint

      - Fewer response fields


      Migrate to v2 when possible.
  - name: CMS API v1
    description: >-
      Trigger immediate re-crawls when content is published.

      Token: cms_api_token (separate from Reporting API)

      Typical use: call from CMS publish hooks (WordPress, Contentful, Drupal,
      etc.)
  - name: Data Enrichment API v1
    description: >-
      Push custom data into Conductor Monitoring pages.

      Token: enrichment_api_token (separate from Reporting and CMS APIs)


      Use cases: revenue per page, page owner, qualified leads, content score,
      last reviewed date.


      Setup:

      1. **Settings** > **Enrichment Fields** > **Create Enrichment Field**

      2. Choose type: string, number, boolean, or date

      3. Copy the Enrichment Field ID for use in requests


      Rate limits: max 1,000 URLs/request, 1 req/sec/website


      Once pushed, enrichment data can be used to:

      - Filter pages

      - Create segments

      - Set change alerts

      - View in page detail
paths:
  /v1/websites/{website_id}/pages:
    get:
      tags:
        - Reporting API v1 (Legacy)
      summary: Get Page Data
      description: Legacy equivalent of GET /v2/data/page.
      parameters:
        - name: website_id
          in: path
          required: true
          schema:
            type: string
          example: 1-234
        - name: url
          in: query
          required: true
          description: Required.
          schema:
            type: string
            format: uri
          example: https://www.example.com/
      responses:
        '200':
          description: Successful response.
          content:
            application/json:
              schema:
                type: object
                properties:
                  url:
                    type: string
                    format: uri
                  is_https:
                    type: boolean
                  ga_average_time:
                    oneOf:
                      - type: integer
                      - type: string
                        enum:
                          - no_data
                    nullable: true
                    description: >-
                      Seconds. Returns the string `"no_data"` when the connected
                      analytics or Search Console integration has no value for
                      this page. Check for it before doing arithmetic.
                  ga_bounce_rate:
                    oneOf:
                      - type: number
                      - type: string
                        enum:
                          - no_data
                    nullable: true
                    description: >-
                      Percentage. Returns the string `"no_data"` when the
                      connected analytics or Search Console integration has no
                      value for this page. Check for it before doing arithmetic.
                  ga_date_range:
                    type: object
                    properties:
                      since:
                        type: string
                        format: date
                      until:
                        type: string
                        format: date
                  ga_page_value:
                    oneOf:
                      - type: number
                      - type: string
                        enum:
                          - no_data
                    nullable: true
                    description: >-
                      Returns the string `"no_data"` when the connected
                      analytics or Search Console integration has no value for
                      this page. Check for it before doing arithmetic.
                  ga_page_views:
                    oneOf:
                      - type: integer
                      - type: string
                        enum:
                          - no_data
                    nullable: true
                    description: >-
                      Returns the string `"no_data"` when the connected
                      analytics or Search Console integration has no value for
                      this page. Check for it before doing arithmetic.
                  ga_unique_page_views:
                    oneOf:
                      - type: integer
                      - type: string
                        enum:
                          - no_data
                    nullable: true
                    description: >-
                      Returns the string `"no_data"` when the connected
                      analytics or Search Console integration has no value for
                      this page. Check for it before doing arithmetic.
                  gsc_clicks:
                    oneOf:
                      - type: integer
                      - type: string
                        enum:
                          - no_data
                    nullable: true
                    description: >-
                      Returns the string `"no_data"` when the connected
                      analytics or Search Console integration has no value for
                      this page. Check for it before doing arithmetic.
                  gsc_ctr:
                    oneOf:
                      - type: number
                      - type: string
                        enum:
                          - no_data
                    nullable: true
                    description: >-
                      Percentage. Returns the string `"no_data"` when the
                      connected analytics or Search Console integration has no
                      value for this page. Check for it before doing arithmetic.
                  gsc_date_range:
                    type: object
                    properties:
                      since:
                        type: string
                        format: date
                      until:
                        type: string
                        format: date
                  gsc_impressions:
                    oneOf:
                      - type: integer
                      - type: string
                        enum:
                          - no_data
                    nullable: true
                    description: >-
                      Returns the string `"no_data"` when the connected
                      analytics or Search Console integration has no value for
                      this page. Check for it before doing arithmetic.
                  gsc_position:
                    oneOf:
                      - type: number
                      - type: string
                        enum:
                          - no_data
                    nullable: true
                    description: >-
                      Returns the string `"no_data"` when the connected
                      analytics or Search Console integration has no value for
                      this page. Check for it before doing arithmetic.
                  health:
                    type: number
                  is_disallowed_in_robots_txt:
                    type: boolean
                  is_indexable:
                    type: boolean
                  is_indexable_due_to_meta_robots:
                    oneOf:
                      - type: boolean
                      - type: string
                    nullable: true
                    description: >-
                      Production returns a boolean on some websites and a string
                      such as `"yes"` on others. Handle both.
                  is_indexable_due_to_x_robots_tag:
                    oneOf:
                      - type: boolean
                      - type: string
                    nullable: true
                    description: >-
                      Production returns a boolean on some websites and a string
                      such as `"yes"` on others. Handle both.
                  is_in_sitemap:
                    type: boolean
                  relevance:
                    type: number
                  status_code:
                    type: integer
                  time_document_download:
                    type: number
                  type:
                    type: string
                  content:
                    type: array
                    items:
                      type: object
                      properties:
                        type:
                          type: string
                        content:
                          type: string
                          nullable: true
                  custom_elements:
                    type: object
                    properties:
                      author:
                        type: string
                      date_published:
                        type: string
                      custom_element_name:
                        description: >-
                          String/number/boolean/date (depending on
                          configuration)
                        type: string
                  schema_org:
                    type: array
                    items: {}
                    description: >-
                      Array (containing different Schema properties as defined
                      by schema.org)
                  segments:
                    type: array
                    items:
                      type: string
                    description: Containing segment ids, see retrieving a list of segments.
                  app_url:
                    type: string
                    format: uri
                  open_issues:
                    type: array
                    items:
                      type: object
                      properties:
                        name:
                          type: string
                          description: String (see List of issues)
                          nullable: true
                  redirect:
                    type: object
                    properties:
                      location:
                        type: string
                      url:
                        type: string
                  ga_v4_active_users:
                    oneOf:
                      - type: integer
                      - type: string
                        enum:
                          - no_data
                    nullable: true
                    description: >-
                      Returns the string `"no_data"` when the connected
                      analytics or Search Console integration has no value for
                      this page. Check for it before doing arithmetic.
                  ga_v4_average_engagement_time:
                    oneOf:
                      - type: integer
                      - type: string
                        enum:
                          - no_data
                    nullable: true
                    description: >-
                      Seconds. Returns the string `"no_data"` when the connected
                      analytics or Search Console integration has no value for
                      this page. Check for it before doing arithmetic.
                  ga_v4_engagement_rate:
                    oneOf:
                      - type: number
                      - type: string
                        enum:
                          - no_data
                    nullable: true
                    description: >-
                      Percentage. Returns the string `"no_data"` when the
                      connected analytics or Search Console integration has no
                      value for this page. Check for it before doing arithmetic.
                  ga_v4_screen_page_views:
                    oneOf:
                      - type: integer
                      - type: string
                        enum:
                          - no_data
                    nullable: true
                    description: >-
                      Returns the string `"no_data"` when the connected
                      analytics or Search Console integration has no value for
                      this page. Check for it before doing arithmetic.
                  ga_v4_date_range:
                    type: array
                    items:
                      type: object
                      properties:
                        since:
                          type: string
                          format: date
                        until:
                          type: string
                          format: date
                  lighthouse_performance:
                    type: object
                    nullable: true
                    description: Lighthouse metric with its banding.
                    properties:
                      value:
                        type: number
                      range:
                        type: string
                        enum:
                          - good
                          - needsImprovement
                          - bad
                  lighthouse_cls:
                    type: object
                    nullable: true
                    description: Lighthouse metric with its banding.
                    properties:
                      value:
                        type: number
                      range:
                        type: string
                        enum:
                          - good
                          - needsImprovement
                          - bad
                  lighthouse_fcp:
                    type: object
                    nullable: true
                    description: Lighthouse metric with its banding.
                    properties:
                      value:
                        type: number
                      range:
                        type: string
                        enum:
                          - good
                          - needsImprovement
                          - bad
                  lighthouse_lcp:
                    type: object
                    nullable: true
                    description: Lighthouse metric with its banding.
                    properties:
                      value:
                        type: number
                      range:
                        type: string
                        enum:
                          - good
                          - needsImprovement
                          - bad
                  lighthouse_si:
                    type: object
                    nullable: true
                    description: Lighthouse metric with its banding.
                    properties:
                      value:
                        type: number
                      range:
                        type: string
                        enum:
                          - good
                          - needsImprovement
                          - bad
                  lighthouse_tbt:
                    type: object
                    nullable: true
                    description: Lighthouse metric with its banding.
                    properties:
                      value:
                        type: number
                      range:
                        type: string
                        enum:
                          - good
                          - needsImprovement
                          - bad
                  lighthouse_tti:
                    type: object
                    nullable: true
                    description: Lighthouse metric with its banding.
                    properties:
                      value:
                        type: number
                      range:
                        type: string
                        enum:
                          - good
                          - needsImprovement
                          - bad
              examples:
                page:
                  value:
                    url: https://www.conductor.com/
                    is_https: true
                    ga_average_time: 10
                    ga_bounce_rate: 5
                    ga_date_range:
                      since: '2018-05-09'
                      until: '2018-08-07'
                    ga_page_value: 0
                    ga_page_views: 1
                    ga_unique_page_views: 2
                    gsc_clicks: 0
                    gsc_ctr: 0
                    gsc_date_range:
                      since: '2018-05-09'
                      until: '2018-08-07'
                    gsc_impressions: 4
                    gsc_position: 5
                    health: 935
                    is_disallowed_in_robots_txt: false
                    is_indexable: true
                    is_indexable_due_to_meta_robots: 'yes'
                    is_indexable_due_to_x_robots_tag: 'yes'
                    is_in_sitemap: true
                    relevance: 8.72
                    status_code: 200
                    time_document_download: 183
                    type: page
                    content:
                      - type: canonical
                        content: null
                      - type: title
                        content: Blog
                      - type: meta_description
                        content: some meta description
                      - type: h1
                        content: Conductor Monitoring
                      - type: h2
                        content: Pricing
                      - type: meta_robots
                        content: null
                      - type: open_graph_description
                        content: null
                      - type: open_graph_image
                        content: null
                      - type: open_graph_title
                        content: null
                      - type: open_graph_type
                        content: null
                      - type: open_graph_url
                        content: null
                      - type: twitter_card
                        content: null
                      - type: twitter_site
                        content: null
                      - type: google_analytics
                        content: UA-XXXXXX-X
                    custom_elements:
                      author: Josie Walters
                      date_published: 12 August 2019
                    schema_org: []
                    segments:
                      - '1'
                      - '3'
                    app_url: https://app.cm.conductor.com/websites/1-234/pages/3
                    open_issues:
                      - name: open_graph/missing
                      - name: twitter_cards/missing
                      - name: meta_information/meta_description_incorrect_length
                      - name: meta_information/title_incorrect_length
                  summary: A 2xx page — full content, open issues, and Schema.org data
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
        '422':
          $ref: '#/components/responses/Unprocessable'
        '429':
          $ref: '#/components/responses/RateLimited'
        3XX:
          description: 'Redirect page: includes redirect.location info.'
          content:
            application/json:
              schema:
                type: object
                properties:
                  url:
                    type: string
                    format: uri
                  is_https:
                    type: boolean
                  ga_average_time:
                    type: integer
                    description: Seconds.
                  ga_bounce_rate:
                    type: number
                    description: Percentage.
                  ga_date_range:
                    type: object
                    properties:
                      since:
                        type: string
                        format: date
                      until:
                        type: string
                        format: date
                  ga_page_value:
                    type: number
                  ga_page_views:
                    type: integer
                  ga_unique_page_views:
                    type: integer
                  gsc_clicks:
                    type: integer
                  gsc_ctr:
                    type: number
                    description: Percentage.
                  gsc_date_range:
                    type: object
                    properties:
                      since:
                        type: string
                        format: date
                      until:
                        type: string
                        format: date
                  gsc_impressions:
                    type: integer
                  gsc_position:
                    type: number
                  health:
                    type: number
                  is_disallowed_in_robots_txt:
                    type: boolean
                  is_indexable:
                    type: boolean
                  is_indexable_due_to_meta_robots:
                    type: string
                    description: >-
                      Documented as `boolean` in the Reporting API reference;
                      sample responses return `string`.
                  is_indexable_due_to_x_robots_tag:
                    type: string
                    description: >-
                      Documented as `boolean` in the Reporting API reference;
                      sample responses return `string`.
                  is_in_sitemap:
                    type: boolean
                  relevance:
                    type: number
                  status_code:
                    type: integer
                  time_document_download:
                    type: number
                  type:
                    type: string
                  content:
                    type: array
                    items:
                      type: object
                      properties:
                        type:
                          type: string
                        content:
                          type: string
                          nullable: true
                  custom_elements:
                    type: object
                    properties:
                      author:
                        type: string
                      date_published:
                        type: string
                      custom_element_name:
                        description: >-
                          String/number/boolean/date (depending on
                          configuration)
                        type: string
                  schema_org:
                    type: array
                    items: {}
                    description: >-
                      Array (containing different Schema properties as defined
                      by schema.org)
                  segments:
                    type: array
                    items:
                      type: string
                    description: Containing segment ids, see retrieving a list of segments.
                  app_url:
                    type: string
                    format: uri
                  open_issues:
                    type: array
                    items:
                      type: object
                      properties:
                        name:
                          type: string
                          description: String (see List of issues)
                          nullable: true
                  redirect:
                    type: object
                    properties:
                      location:
                        type: string
                      url:
                        type: string
                  ga_v4_active_users:
                    type: integer
                  ga_v4_average_engagement_time:
                    type: integer
                    description: Seconds.
                  ga_v4_engagement_rate:
                    type: number
                    description: Percentage.
                  ga_v4_screen_page_views:
                    type: integer
                  ga_v4_date_range:
                    type: array
                    items:
                      type: object
                      properties:
                        since:
                          type: string
                          format: date
                        until:
                          type: string
                          format: date
                  lighthouse_performance:
                    type: array
                    items:
                      type: object
                      properties:
                        value:
                          type: integer
                        range:
                          type: string
                  lighthouse_cls:
                    type: array
                    items:
                      type: object
                      properties:
                        value:
                          type: number
                        range:
                          type: string
                  lighthouse_fcp:
                    type: array
                    items:
                      type: object
                      properties:
                        value:
                          type: integer
                          description: Milliseconds.
                        range:
                          type: string
                  lighthouse_lcp:
                    type: array
                    items:
                      type: object
                      properties:
                        value:
                          type: integer
                          description: Milliseconds.
                        range:
                          type: string
                  lighthouse_si:
                    type: array
                    items:
                      type: object
                      properties:
                        value:
                          type: integer
                          description: Milliseconds.
                        range:
                          type: string
                  lighthouse_tbt:
                    type: array
                    items:
                      type: object
                      properties:
                        value:
                          type: integer
                          description: Milliseconds.
                        range:
                          type: string
                  lighthouse_tti:
                    type: array
                    items:
                      type: object
                      properties:
                        value:
                          type: integer
                          description: Milliseconds.
                        range:
                          type: string
              examples:
                redirect:
                  value:
                    url: https://www.conductor.com/this-redirects
                    is_https: true
                    gsc_clicks: 9
                    gsc_ctr: 5
                    gsc_date_range:
                      since: '2018-05-09'
                      until: '2018-08-07'
                    gsc_impressions: 1
                    gsc_position: 4
                    is_disallowed_in_robots_txt: false
                    is_indexable: false
                    is_indexable_due_to_meta_robots: not_applicable
                    is_indexable_due_to_x_robots_tag: not_applicable
                    is_in_sitemap: true
                    redirect:
                      location: https://www.conductor.com/
                      url: https://www.conductor.com/
                    status_code: 302
                    time_document_download: 149
                    type: redirect
                    segments:
                      - '1'
                    app_url: https://app.cm.conductor.com/websites/1-234/pages/4
                  summary: A 3xx page — includes redirect.location details
        4XX:
          description: Missing page info.
          content:
            application/json:
              schema:
                type: object
                properties:
                  url:
                    type: string
                    format: uri
                  is_https:
                    type: boolean
                  ga_average_time:
                    type: integer
                    description: Seconds.
                  ga_bounce_rate:
                    type: number
                    description: Percentage.
                  ga_date_range:
                    type: object
                    properties:
                      since:
                        type: string
                        format: date
                      until:
                        type: string
                        format: date
                  ga_page_value:
                    type: number
                  ga_page_views:
                    type: integer
                  ga_unique_page_views:
                    type: integer
                  gsc_clicks:
                    type: integer
                  gsc_ctr:
                    type: number
                    description: Percentage.
                  gsc_date_range:
                    type: object
                    properties:
                      since:
                        type: string
                        format: date
                      until:
                        type: string
                        format: date
                  gsc_impressions:
                    type: integer
                  gsc_position:
                    type: number
                  health:
                    type: number
                  is_disallowed_in_robots_txt:
                    type: boolean
                  is_indexable:
                    type: boolean
                  is_indexable_due_to_meta_robots:
                    type: string
                    description: >-
                      Documented as `boolean` in the Reporting API reference;
                      sample responses return `string`.
                  is_indexable_due_to_x_robots_tag:
                    type: string
                    description: >-
                      Documented as `boolean` in the Reporting API reference;
                      sample responses return `string`.
                  is_in_sitemap:
                    type: boolean
                  relevance:
                    type: number
                  status_code:
                    type: integer
                  time_document_download:
                    type: number
                  type:
                    type: string
                  content:
                    type: array
                    items:
                      type: object
                      properties:
                        type:
                          type: string
                        content:
                          type: string
                          nullable: true
                  custom_elements:
                    type: object
                    properties:
                      author:
                        type: string
                      date_published:
                        type: string
                      custom_element_name:
                        description: >-
                          String/number/boolean/date (depending on
                          configuration)
                        type: string
                  schema_org:
                    type: array
                    items: {}
                    description: >-
                      Array (containing different Schema properties as defined
                      by schema.org)
                  segments:
                    type: array
                    items:
                      type: string
                    description: Containing segment ids, see retrieving a list of segments.
                  app_url:
                    type: string
                    format: uri
                  open_issues:
                    type: array
                    items:
                      type: object
                      properties:
                        name:
                          type: string
                          description: String (see List of issues)
                          nullable: true
                  redirect:
                    type: object
                    properties:
                      location:
                        type: string
                      url:
                        type: string
                  ga_v4_active_users:
                    type: integer
                  ga_v4_average_engagement_time:
                    type: integer
                    description: Seconds.
                  ga_v4_engagement_rate:
                    type: number
                    description: Percentage.
                  ga_v4_screen_page_views:
                    type: integer
                  ga_v4_date_range:
                    type: array
                    items:
                      type: object
                      properties:
                        since:
                          type: string
                          format: date
                        until:
                          type: string
                          format: date
                  lighthouse_performance:
                    type: array
                    items:
                      type: object
                      properties:
                        value:
                          type: integer
                        range:
                          type: string
                  lighthouse_cls:
                    type: array
                    items:
                      type: object
                      properties:
                        value:
                          type: number
                        range:
                          type: string
                  lighthouse_fcp:
                    type: array
                    items:
                      type: object
                      properties:
                        value:
                          type: integer
                          description: Milliseconds.
                        range:
                          type: string
                  lighthouse_lcp:
                    type: array
                    items:
                      type: object
                      properties:
                        value:
                          type: integer
                          description: Milliseconds.
                        range:
                          type: string
                  lighthouse_si:
                    type: array
                    items:
                      type: object
                      properties:
                        value:
                          type: integer
                          description: Milliseconds.
                        range:
                          type: string
                  lighthouse_tbt:
                    type: array
                    items:
                      type: object
                      properties:
                        value:
                          type: integer
                          description: Milliseconds.
                        range:
                          type: string
                  lighthouse_tti:
                    type: array
                    items:
                      type: object
                      properties:
                        value:
                          type: integer
                          description: Milliseconds.
                        range:
                          type: string
              examples:
                missing:
                  value:
                    url: https://www.conductor.com/this-does-not-exist
                    is_https: true
                    is_disallowed_in_robots_txt: false
                    is_indexable: false
                    is_indexable_due_to_meta_robots: not_applicable
                    is_indexable_due_to_x_robots_tag: not_applicable
                    is_in_sitemap: true
                    status_code: 404
                    time_document_download: 218
                    type: missing
                    segments:
                      - '2'
                    app_url: https://app.cm.conductor.com/websites/1-234/pages/5
                  summary: A 4xx page — missing page information
      security:
        - reportingApiToken: []
components:
  responses:
    Unauthorized:
      description: >
        Unauthorized.


        - **Missing authentication token** — the request was received but
        carries no authorization token, so it cannot be processed. Check that
        the `Authorization` header is set.

        - **Authentication failed** — the supplied API token is expired or
        invalid:


        ```json

        {
          "code": "auth_failed",
          "message": "Authentication token is expired or invalid.",
          "errors": []
        }

        ```
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
          examples:
            missingToken:
              value:
                code: auth_missing_token
                message: >-
                  Authentication token must be passed in Authorization HTTP
                  header.
                errors: []
    Forbidden:
      description: >
        Forbidden.


        - **Terms of Use not accepted** — accept the Reporting API Terms of Use
        in Account Settings before calling the API.

        - **Blocked user agent** — our CDN blocks generic default user agents
        such as `Python urllib3`. Setting a less generic user agent, or one that
        more closely resembles a browser, usually bypasses this.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
          examples:
            termsNotAccepted:
              value:
                code: terms_of_use_not_accepted
                message: >-
                  Reporting API Terms of Use have not been accepted yet. Please
                  accept Terms of Use in Account Settings.
                errors: []
    NotFound:
      description: >
        Not found. The requested website, scope, or URL does not exist or is
        unavailable.


        - **Website not found** — the `website_id` does not belong to the
        account that owns the token.

        - **No statistics for scope** — statistics for the given website or
        segment are not available at this time. They may become available later,
        depending on the actual content of the scope:


        ```json

        {
          "error": "No statistics found for given scope"
        }

        ```


        - **URL not found** — the requested URL is not tracked on this website:


        ```json

        {
          "error": "Requested URL was not found (url)"
        }

        ```
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/SimpleError'
          examples:
            websiteNotFound:
              value:
                error: Requested website ID was not found
    Unprocessable:
      description: >-
        Unprocessable entity. The `Authorization` header was not formatted
        correctly — the value must be the string `token`, a space, then your API
        token.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
          examples:
            authMalformed:
              value:
                code: auth_malformed
                message: >-
                  Authorization HTTP header must conform to format described in
                  docs.
                errors: []
    RateLimited:
      description: >-
        Too many requests. The Reporting API allows 6 requests/second per
        requester IP address; exceeding it returns `429` for one minute.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
          examples:
            rateLimited:
              value:
                code: rate_limit_exceeded
                message: Too many requests. Try again in a minute.
                errors: []
  schemas:
    ApiError:
      type: object
      description: Structured error payload returned by the Monitoring APIs.
      properties:
        code:
          type: string
          description: Machine-readable error code.
        message:
          type: string
          description: Human-readable explanation.
        errors:
          type: array
          description: Field-level details, when available.
          items:
            type: object
    SimpleError:
      type: object
      description: Short error payload used by the Reporting API for lookup failures.
      properties:
        error:
          type: string
          description: Human-readable explanation.
  securitySchemes:
    reportingApiToken:
      type: apiKey
      in: header
      name: Authorization
      description: >-
        Send your Reporting API token as `Authorization: token
        {reporting_api_token}` — the literal string `token`, a space, then the
        token itself. Find it in Conductor Monitoring under **Account** >
        **Account** tab > **Integration Tokens**.

````