> ## 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

> Get all data for a single page: SEO fields, Lighthouse scores, open issues, Schema.org data, content, log file analysis frequency, and Enrichment Fields.



## OpenAPI

````yaml other-apis/monitoring/openapi.json GET /v2/data/page
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:
  /v2/data/page:
    get:
      tags:
        - Reporting API v2 - Data
      summary: Get Page Data
      description: >-
        Full data for one page: SEO fields, Lighthouse, open issues, Schema.org,
        content, LFA frequency, enrichment fields.


        Response shape varies by HTTP type:

        - 2xx: full content + open_issues + schema_org

        - 3xx: redirect.location info

        - 4xx: missing page info
      parameters:
        - name: website_id
          in: query
          required: true
          description: Required.
          schema:
            type: string
          example: 1-234
        - name: url
          in: query
          required: true
          description: Required. Full absolute URL.
          schema:
            type: string
            format: uri
          example: https://www.example.com/
      responses:
        '200':
          description: Full page data (2xx page).
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      url:
                        type: string
                        format: uri
                      url_unique_id:
                        type: string
                      is_https:
                        type: boolean
                      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_date_range:
                        type: object
                        properties:
                          since:
                            type: string
                            format: date
                          until:
                            type: string
                            format: date
                      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.
                      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
                      lfa_bing_desktop_frequency:
                        type: object
                        nullable: true
                        description: Crawl frequency for this crawler.
                        properties:
                          value:
                            type: number
                            description: Visits per `unit`.
                          unit:
                            type: string
                            description: Time unit, e.g. `month`.
                      lfa_bing_desktop_last_visit:
                        nullable: true
                        description: Datetime (ISO-8601 format)
                        type: string
                      lfa_bing_frequency:
                        type: object
                        nullable: true
                        description: Crawl frequency for this crawler.
                        properties:
                          value:
                            type: number
                            description: Visits per `unit`.
                          unit:
                            type: string
                            description: Time unit, e.g. `month`.
                      lfa_bing_last_visit:
                        nullable: true
                        description: Datetime (ISO-8601 format)
                        type: string
                      lfa_bing_mobile_frequency:
                        type: object
                        nullable: true
                        description: Crawl frequency for this crawler.
                        properties:
                          value:
                            type: number
                            description: Visits per `unit`.
                          unit:
                            type: string
                            description: Time unit, e.g. `month`.
                      lfa_bing_mobile_last_visit:
                        nullable: true
                        description: Datetime (ISO-8601 format)
                        type: string
                      lfa_google_desktop_frequency:
                        type: object
                        nullable: true
                        description: Crawl frequency for this crawler.
                        properties:
                          value:
                            type: number
                            description: Visits per `unit`.
                          unit:
                            type: string
                            description: Time unit, e.g. `month`.
                      lfa_google_desktop_last_visit:
                        nullable: true
                        description: Datetime (ISO-8601 format)
                        type: string
                      lfa_google_frequency:
                        type: object
                        nullable: true
                        description: Crawl frequency for this crawler.
                        properties:
                          value:
                            type: number
                            description: Visits per `unit`.
                          unit:
                            type: string
                            description: Time unit, e.g. `month`.
                      lfa_google_last_visit:
                        nullable: true
                        description: Datetime (ISO-8601 format)
                        type: string
                      lfa_google_mobile_frequency:
                        type: object
                        nullable: true
                        description: Crawl frequency for this crawler.
                        properties:
                          value:
                            type: number
                            description: Visits per `unit`.
                          unit:
                            type: string
                            description: Time unit, e.g. `month`.
                      lfa_google_mobile_last_visit:
                        nullable: true
                        description: Datetime (ISO-8601 format)
                        type: string
                      lfa_openai_desktop_frequency:
                        type: object
                        nullable: true
                        description: Crawl frequency for this crawler.
                        properties:
                          value:
                            type: number
                            description: Visits per `unit`.
                          unit:
                            type: string
                            description: Time unit, e.g. `month`.
                      lfa_openai_desktop_last_visit:
                        nullable: true
                        description: Datetime (ISO-8601 format)
                        type: string
                      lfa_openai_search_last_visit:
                        nullable: true
                        description: Datetime (ISO-8601 format)
                        type: string
                      lfa_openai_search_frequency:
                        type: object
                        nullable: true
                        description: Crawl frequency for this crawler.
                        properties:
                          value:
                            type: number
                            description: Visits per `unit`.
                          unit:
                            type: string
                            description: Time unit, e.g. `month`.
                      lfa_openai_user_last_visit:
                        nullable: true
                        description: Datetime (ISO-8601 format)
                        type: string
                      lfa_openai_user_frequency:
                        type: object
                        nullable: true
                        description: Crawl frequency for this crawler.
                        properties:
                          value:
                            type: number
                            description: Visits per `unit`.
                          unit:
                            type: string
                            description: Time unit, e.g. `month`.
                      lfa_openai_bot_last_visit:
                        nullable: true
                        description: Datetime (ISO-8601 format)
                        type: string
                      lfa_openai_bot_frequency:
                        type: object
                        nullable: true
                        description: Crawl frequency for this crawler.
                        properties:
                          value:
                            type: number
                            description: Visits per `unit`.
                          unit:
                            type: string
                            description: Time unit, e.g. `month`.
                      lfa_openai_frequency:
                        type: object
                        nullable: true
                        description: Crawl frequency for this crawler.
                        properties:
                          value:
                            type: number
                            description: Visits per `unit`.
                          unit:
                            type: string
                            description: Time unit, e.g. `month`.
                      lfa_openai_last_visit:
                        nullable: true
                        description: Datetime (ISO-8601 format)
                        type: string
                      lfa_perplexity_desktop_frequency:
                        type: object
                        nullable: true
                        description: Crawl frequency for this crawler.
                        properties:
                          value:
                            type: number
                            description: Visits per `unit`.
                          unit:
                            type: string
                            description: Time unit, e.g. `month`.
                      lfa_perplexity_desktop_last_visit:
                        nullable: true
                        description: Datetime (ISO-8601 format)
                        type: string
                      lfa_perplexity_user_last_visit:
                        nullable: true
                        description: Datetime (ISO-8601 format)
                        type: string
                      lfa_perplexity_user_frequency:
                        type: object
                        nullable: true
                        description: Crawl frequency for this crawler.
                        properties:
                          value:
                            type: number
                            description: Visits per `unit`.
                          unit:
                            type: string
                            description: Time unit, e.g. `month`.
                      lfa_perplexity_bot_last_visit:
                        nullable: true
                        description: Datetime (ISO-8601 format)
                        type: string
                      lfa_perplexity_bot_frequency:
                        type: object
                        nullable: true
                        description: Crawl frequency for this crawler.
                        properties:
                          value:
                            type: number
                            description: Visits per `unit`.
                          unit:
                            type: string
                            description: Time unit, e.g. `month`.
                      lfa_perplexity_frequency:
                        type: object
                        nullable: true
                        description: Crawl frequency for this crawler.
                        properties:
                          value:
                            type: number
                            description: Visits per `unit`.
                          unit:
                            type: string
                            description: Time unit, e.g. `month`.
                      lfa_perplexity_last_visit:
                        nullable: true
                        description: Datetime (ISO-8601 format)
                        type: string
                      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_performance:
                        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
                      relevance:
                        type: number
                      status_code:
                        type: integer
                      type:
                        type: string
                      enrichment_fields_data:
                        type: object
                        properties: {}
                      content:
                        type: array
                        items:
                          type: object
                          properties:
                            type:
                              type: string
                            content:
                              type: string
                              nullable: true
                            hreflang:
                              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.
                      app_url:
                        type: string
                        format: uri
                      time_document_download:
                        type: number
                      open_issues:
                        type: array
                        items:
                          type: object
                          properties:
                            name:
                              type: string
                              description: String (see List of issues)
                              nullable: true
                      custom_elements:
                        type: object
                        properties:
                          custom_element_name:
                            description: >-
                              String/number/boolean/date (depending on
                              configuration)
                            type: string
                      unstable_last_checked_at:
                        description: Datetime (ISO-8601 format)
                        type: string
                      redirect:
                        type: object
                        properties:
                          location:
                            type: string
                          url:
                            type: string
                      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_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.
                      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_date_range:
                        type: array
                        items:
                          type: object
                          properties:
                            since:
                              type: string
                              format: date
                            until:
                              type: string
                              format: date
                      data_captured_at:
                        description: Datetime (ISO-8601 format)
                        type: string
                      is_data_golden:
                        type: boolean
                  data_captured_at:
                    type: string
                  is_data_golden:
                    type: boolean
              examples:
                page:
                  value:
                    data:
                      url: https://www.conductor.com
                      url_unique_id: 1-234
                      is_https: true
                      ga_v4_active_users: 10
                      ga_v4_average_engagement_time: 10
                      ga_v4_date_range:
                        since: '2022-05-16'
                        until: '2022-08-14'
                      ga_v4_engagement_rate: 10
                      ga_v4_screen_page_views: 10
                      gsc_clicks: 10
                      gsc_ctr: 10
                      gsc_date_range:
                        since: '2022-05-16'
                        until: '2022-08-14'
                      gsc_impressions: 10
                      gsc_position: 10
                      health: 881
                      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
                      lfa_bing_desktop_frequency: null
                      lfa_bing_desktop_last_visit: null
                      lfa_bing_frequency: null
                      lfa_bing_last_visit: null
                      lfa_bing_mobile_frequency: null
                      lfa_bing_mobile_last_visit: null
                      lfa_google_desktop_frequency: null
                      lfa_google_desktop_last_visit: null
                      lfa_google_frequency: null
                      lfa_google_last_visit: null
                      lfa_google_mobile_frequency: null
                      lfa_google_mobile_last_visit: null
                      lfa_openai_desktop_frequency: null
                      lfa_openai_desktop_last_visit: null
                      lfa_openai_search_last_visit: null
                      lfa_openai_search_frequency: null
                      lfa_openai_user_last_visit: null
                      lfa_openai_user_frequency: null
                      lfa_openai_bot_last_visit: null
                      lfa_openai_bot_frequency: null
                      lfa_openai_frequency: null
                      lfa_openai_last_visit: null
                      lfa_perplexity_desktop_frequency: null
                      lfa_perplexity_desktop_last_visit: null
                      lfa_perplexity_user_last_visit: null
                      lfa_perplexity_user_frequency: null
                      lfa_perplexity_bot_last_visit: null
                      lfa_perplexity_bot_frequency: null
                      lfa_perplexity_frequency: null
                      lfa_perplexity_last_visit: null
                      lighthouse_cls:
                        value: 0
                        range: good
                      lighthouse_fcp:
                        value: 1000
                        range: good
                      lighthouse_lcp:
                        value: 2000
                        range: good
                      lighthouse_performance:
                        value: 95
                        range: good
                      lighthouse_si:
                        value: 3700
                        range: needsImprovement
                      lighthouse_tbt:
                        value: 669
                        range: bad
                      lighthouse_tti:
                        value: 2000
                        range: good
                      relevance: 9.33
                      status_code: 200
                      type: page
                      enrichment_fields_data: {}
                      content:
                        - type: canonical
                          content: null
                        - type: link_alternate_hreflang
                          content: null
                          hreflang: en
                        - type: link_alternate_hreflang
                          content: null
                          hreflang: x-default
                        - type: title
                          content: Some Title
                        - type: meta_description
                          content: Some Meta Description
                        - type: h1
                          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: twitter_title
                          content: null
                        - type: twitter_description
                          content: null
                        - type: twitter_image
                          content: null
                        - type: google_analytics
                          content: UA-12345678-1
                        - type: google_tag_manager
                          content: GTM-AB12345
                      schema_org: []
                      segments:
                        - '1111111'
                      app_url: >-
                        https://app.cm.conductor.com/websites/1-12345/pages/123456789
                      time_document_download: 123
                      open_issues:
                        - name: analytics/visual_analytics_missing
                        - name: open_graph/description_incorrect_length
                        - name: open_graph/title_incorrect_length
                      custom_elements: {}
                      unstable_last_checked_at: '2022-08-15T13:32:12+02:00'
                    data_captured_at: '2022-08-15T13:32:29+02:00'
                    is_data_golden: false
                  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:
                  data:
                    type: object
                    properties:
                      url:
                        type: string
                        format: uri
                      url_unique_id:
                        type: string
                      is_https:
                        type: boolean
                      ga_v4_active_users:
                        type: integer
                      ga_v4_average_engagement_time:
                        type: integer
                        description: Seconds.
                      ga_v4_date_range:
                        type: object
                        properties:
                          since:
                            type: string
                            format: date
                          until:
                            type: string
                            format: date
                      ga_v4_engagement_rate:
                        type: number
                        description: Percentage.
                      ga_v4_screen_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
                      lfa_bing_desktop_frequency:
                        nullable: true
                        type: array
                        items:
                          type: object
                          properties:
                            value:
                              type: number
                            unit:
                              type: string
                      lfa_bing_desktop_last_visit:
                        nullable: true
                        description: Datetime (ISO-8601 format)
                        type: string
                      lfa_bing_frequency:
                        nullable: true
                        type: array
                        items:
                          type: object
                          properties:
                            value:
                              type: number
                            unit:
                              type: string
                      lfa_bing_last_visit:
                        nullable: true
                        description: Datetime (ISO-8601 format)
                        type: string
                      lfa_bing_mobile_frequency:
                        nullable: true
                        type: array
                        items:
                          type: object
                          properties:
                            value:
                              type: number
                            unit:
                              type: string
                      lfa_bing_mobile_last_visit:
                        nullable: true
                        description: Datetime (ISO-8601 format)
                        type: string
                      lfa_google_desktop_frequency:
                        nullable: true
                        type: array
                        items:
                          type: object
                          properties:
                            value:
                              type: number
                            unit:
                              type: string
                      lfa_google_desktop_last_visit:
                        nullable: true
                        description: Datetime (ISO-8601 format)
                        type: string
                      lfa_google_frequency:
                        nullable: true
                        type: array
                        items:
                          type: object
                          properties:
                            value:
                              type: number
                            unit:
                              type: string
                      lfa_google_last_visit:
                        nullable: true
                        description: Datetime (ISO-8601 format)
                        type: string
                      lfa_google_mobile_frequency:
                        nullable: true
                        type: array
                        items:
                          type: object
                          properties:
                            value:
                              type: number
                            unit:
                              type: string
                      lfa_google_mobile_last_visit:
                        nullable: true
                        description: Datetime (ISO-8601 format)
                        type: string
                      lfa_openai_desktop_frequency:
                        nullable: true
                        type: array
                        items:
                          type: object
                          properties:
                            value:
                              type: number
                            unit:
                              type: string
                      lfa_openai_desktop_last_visit:
                        nullable: true
                        description: Datetime (ISO-8601 format)
                        type: string
                      lfa_openai_search_last_visit:
                        nullable: true
                        description: Datetime (ISO-8601 format)
                        type: string
                      lfa_openai_search_frequency:
                        nullable: true
                        type: array
                        items:
                          type: object
                          properties:
                            value:
                              type: number
                            unit:
                              type: string
                      lfa_openai_user_last_visit:
                        nullable: true
                        description: Datetime (ISO-8601 format)
                        type: string
                      lfa_openai_user_frequency:
                        nullable: true
                        type: array
                        items:
                          type: object
                          properties:
                            value:
                              type: number
                            unit:
                              type: string
                      lfa_openai_bot_last_visit:
                        nullable: true
                        description: Datetime (ISO-8601 format)
                        type: string
                      lfa_openai_bot_frequency:
                        nullable: true
                        type: array
                        items:
                          type: object
                          properties:
                            value:
                              type: number
                            unit:
                              type: string
                      lfa_openai_frequency:
                        nullable: true
                        type: array
                        items:
                          type: object
                          properties:
                            value:
                              type: number
                            unit:
                              type: string
                      lfa_openai_last_visit:
                        nullable: true
                        description: Datetime (ISO-8601 format)
                        type: string
                      lfa_perplexity_desktop_frequency:
                        nullable: true
                        type: array
                        items:
                          type: object
                          properties:
                            value:
                              type: number
                            unit:
                              type: string
                      lfa_perplexity_desktop_last_visit:
                        nullable: true
                        description: Datetime (ISO-8601 format)
                        type: string
                      lfa_perplexity_user_last_visit:
                        nullable: true
                        description: Datetime (ISO-8601 format)
                        type: string
                      lfa_perplexity_user_frequency:
                        nullable: true
                        type: array
                        items:
                          type: object
                          properties:
                            value:
                              type: number
                            unit:
                              type: string
                      lfa_perplexity_bot_last_visit:
                        nullable: true
                        description: Datetime (ISO-8601 format)
                        type: string
                      lfa_perplexity_bot_frequency:
                        nullable: true
                        type: array
                        items:
                          type: object
                          properties:
                            value:
                              type: number
                            unit:
                              type: string
                      lfa_perplexity_frequency:
                        nullable: true
                        type: array
                        items:
                          type: object
                          properties:
                            value:
                              type: number
                            unit:
                              type: string
                      lfa_perplexity_last_visit:
                        nullable: true
                        description: Datetime (ISO-8601 format)
                        type: string
                      lighthouse_cls:
                        type: object
                        properties:
                          value:
                            type: number
                          range:
                            type: string
                      lighthouse_fcp:
                        type: object
                        properties:
                          value:
                            type: integer
                            description: Milliseconds.
                          range:
                            type: string
                      lighthouse_lcp:
                        type: object
                        properties:
                          value:
                            type: integer
                            description: Milliseconds.
                          range:
                            type: string
                      lighthouse_performance:
                        type: object
                        properties:
                          value:
                            type: integer
                          range:
                            type: string
                      lighthouse_si:
                        type: object
                        properties:
                          value:
                            type: integer
                            description: Milliseconds.
                          range:
                            type: string
                      lighthouse_tbt:
                        type: object
                        properties:
                          value:
                            type: integer
                            description: Milliseconds.
                          range:
                            type: string
                      lighthouse_tti:
                        type: object
                        properties:
                          value:
                            type: integer
                            description: Milliseconds.
                          range:
                            type: string
                      relevance:
                        type: number
                      status_code:
                        type: integer
                      type:
                        type: string
                      enrichment_fields_data:
                        type: object
                        properties: {}
                      content:
                        type: array
                        items:
                          type: object
                          properties:
                            type:
                              type: string
                            content:
                              type: string
                              nullable: true
                            hreflang:
                              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.
                      app_url:
                        type: string
                        format: uri
                      time_document_download:
                        type: number
                      open_issues:
                        type: array
                        items:
                          type: object
                          properties:
                            name:
                              type: string
                              description: String (see List of issues)
                              nullable: true
                      custom_elements:
                        type: object
                        properties:
                          custom_element_name:
                            description: >-
                              String/number/boolean/date (depending on
                              configuration)
                            type: string
                      unstable_last_checked_at:
                        description: Datetime (ISO-8601 format)
                        type: string
                      redirect:
                        type: object
                        properties:
                          location:
                            type: string
                          url:
                            type: string
                      ga_average_time:
                        type: integer
                        description: Seconds.
                      ga_bounce_rate:
                        type: number
                        description: Percentage.
                      ga_page_views:
                        type: integer
                      ga_unique_page_views:
                        type: integer
                      ga_page_value:
                        type: number
                      ga_date_range:
                        type: array
                        items:
                          type: object
                          properties:
                            since:
                              type: string
                              format: date
                            until:
                              type: string
                              format: date
                      data_captured_at:
                        description: Datetime (ISO-8601 format)
                        type: string
                      is_data_golden:
                        type: boolean
                  data_captured_at:
                    type: string
                  is_data_golden:
                    type: boolean
              examples:
                redirect:
                  value:
                    data:
                      url: https://cm.conductor.com/
                      url_unique_id: '123345'
                      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: false
                      redirect:
                        location: https://www.conductor.com/
                        url: https://www.conductor.com/
                      status_code: 301
                      type: redirect
                      enrichment_fields_data: {}
                      segments: []
                      app_url: >-
                        https://app.cm.conductor.com/websites/5-2457491/pages/12334563485638745638465837465836
                      time_document_download: 123
                      unstable_last_checked_at: '2022-08-15T06:28:42+02:00'
                    data_captured_at: '2022-08-15T13:55:35+02:00'
                    is_data_golden: false
                  summary: A 3xx page — includes redirect.location details
        4XX:
          description: Missing page info.
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      url:
                        type: string
                        format: uri
                      url_unique_id:
                        type: string
                      is_https:
                        type: boolean
                      ga_v4_active_users:
                        type: integer
                      ga_v4_average_engagement_time:
                        type: integer
                        description: Seconds.
                      ga_v4_date_range:
                        type: object
                        properties:
                          since:
                            type: string
                            format: date
                          until:
                            type: string
                            format: date
                      ga_v4_engagement_rate:
                        type: number
                        description: Percentage.
                      ga_v4_screen_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
                      lfa_bing_desktop_frequency:
                        nullable: true
                        type: array
                        items:
                          type: object
                          properties:
                            value:
                              type: number
                            unit:
                              type: string
                      lfa_bing_desktop_last_visit:
                        nullable: true
                        description: Datetime (ISO-8601 format)
                        type: string
                      lfa_bing_frequency:
                        nullable: true
                        type: array
                        items:
                          type: object
                          properties:
                            value:
                              type: number
                            unit:
                              type: string
                      lfa_bing_last_visit:
                        nullable: true
                        description: Datetime (ISO-8601 format)
                        type: string
                      lfa_bing_mobile_frequency:
                        nullable: true
                        type: array
                        items:
                          type: object
                          properties:
                            value:
                              type: number
                            unit:
                              type: string
                      lfa_bing_mobile_last_visit:
                        nullable: true
                        description: Datetime (ISO-8601 format)
                        type: string
                      lfa_google_desktop_frequency:
                        nullable: true
                        type: array
                        items:
                          type: object
                          properties:
                            value:
                              type: number
                            unit:
                              type: string
                      lfa_google_desktop_last_visit:
                        nullable: true
                        description: Datetime (ISO-8601 format)
                        type: string
                      lfa_google_frequency:
                        nullable: true
                        type: array
                        items:
                          type: object
                          properties:
                            value:
                              type: number
                            unit:
                              type: string
                      lfa_google_last_visit:
                        nullable: true
                        description: Datetime (ISO-8601 format)
                        type: string
                      lfa_google_mobile_frequency:
                        nullable: true
                        type: array
                        items:
                          type: object
                          properties:
                            value:
                              type: number
                            unit:
                              type: string
                      lfa_google_mobile_last_visit:
                        nullable: true
                        description: Datetime (ISO-8601 format)
                        type: string
                      lfa_openai_desktop_frequency:
                        nullable: true
                        type: array
                        items:
                          type: object
                          properties:
                            value:
                              type: number
                            unit:
                              type: string
                      lfa_openai_desktop_last_visit:
                        nullable: true
                        description: Datetime (ISO-8601 format)
                        type: string
                      lfa_openai_search_last_visit:
                        nullable: true
                        description: Datetime (ISO-8601 format)
                        type: string
                      lfa_openai_search_frequency:
                        nullable: true
                        type: array
                        items:
                          type: object
                          properties:
                            value:
                              type: number
                            unit:
                              type: string
                      lfa_openai_user_last_visit:
                        nullable: true
                        description: Datetime (ISO-8601 format)
                        type: string
                      lfa_openai_user_frequency:
                        nullable: true
                        type: array
                        items:
                          type: object
                          properties:
                            value:
                              type: number
                            unit:
                              type: string
                      lfa_openai_bot_last_visit:
                        nullable: true
                        description: Datetime (ISO-8601 format)
                        type: string
                      lfa_openai_bot_frequency:
                        nullable: true
                        type: array
                        items:
                          type: object
                          properties:
                            value:
                              type: number
                            unit:
                              type: string
                      lfa_openai_frequency:
                        nullable: true
                        type: array
                        items:
                          type: object
                          properties:
                            value:
                              type: number
                            unit:
                              type: string
                      lfa_openai_last_visit:
                        nullable: true
                        description: Datetime (ISO-8601 format)
                        type: string
                      lfa_perplexity_desktop_frequency:
                        nullable: true
                        type: array
                        items:
                          type: object
                          properties:
                            value:
                              type: number
                            unit:
                              type: string
                      lfa_perplexity_desktop_last_visit:
                        nullable: true
                        description: Datetime (ISO-8601 format)
                        type: string
                      lfa_perplexity_user_last_visit:
                        nullable: true
                        description: Datetime (ISO-8601 format)
                        type: string
                      lfa_perplexity_user_frequency:
                        nullable: true
                        type: array
                        items:
                          type: object
                          properties:
                            value:
                              type: number
                            unit:
                              type: string
                      lfa_perplexity_bot_last_visit:
                        nullable: true
                        description: Datetime (ISO-8601 format)
                        type: string
                      lfa_perplexity_bot_frequency:
                        nullable: true
                        type: array
                        items:
                          type: object
                          properties:
                            value:
                              type: number
                            unit:
                              type: string
                      lfa_perplexity_frequency:
                        nullable: true
                        type: array
                        items:
                          type: object
                          properties:
                            value:
                              type: number
                            unit:
                              type: string
                      lfa_perplexity_last_visit:
                        nullable: true
                        description: Datetime (ISO-8601 format)
                        type: string
                      lighthouse_cls:
                        type: object
                        properties:
                          value:
                            type: number
                          range:
                            type: string
                      lighthouse_fcp:
                        type: object
                        properties:
                          value:
                            type: integer
                            description: Milliseconds.
                          range:
                            type: string
                      lighthouse_lcp:
                        type: object
                        properties:
                          value:
                            type: integer
                            description: Milliseconds.
                          range:
                            type: string
                      lighthouse_performance:
                        type: object
                        properties:
                          value:
                            type: integer
                          range:
                            type: string
                      lighthouse_si:
                        type: object
                        properties:
                          value:
                            type: integer
                            description: Milliseconds.
                          range:
                            type: string
                      lighthouse_tbt:
                        type: object
                        properties:
                          value:
                            type: integer
                            description: Milliseconds.
                          range:
                            type: string
                      lighthouse_tti:
                        type: object
                        properties:
                          value:
                            type: integer
                            description: Milliseconds.
                          range:
                            type: string
                      relevance:
                        type: number
                      status_code:
                        type: integer
                      type:
                        type: string
                      enrichment_fields_data:
                        type: object
                        properties: {}
                      content:
                        type: array
                        items:
                          type: object
                          properties:
                            type:
                              type: string
                            content:
                              type: string
                              nullable: true
                            hreflang:
                              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.
                      app_url:
                        type: string
                        format: uri
                      time_document_download:
                        type: number
                      open_issues:
                        type: array
                        items:
                          type: object
                          properties:
                            name:
                              type: string
                              description: String (see List of issues)
                              nullable: true
                      custom_elements:
                        type: object
                        properties:
                          custom_element_name:
                            description: >-
                              String/number/boolean/date (depending on
                              configuration)
                            type: string
                      unstable_last_checked_at:
                        description: Datetime (ISO-8601 format)
                        type: string
                      redirect:
                        type: object
                        properties:
                          location:
                            type: string
                          url:
                            type: string
                      ga_average_time:
                        type: integer
                        description: Seconds.
                      ga_bounce_rate:
                        type: number
                        description: Percentage.
                      ga_page_views:
                        type: integer
                      ga_unique_page_views:
                        type: integer
                      ga_page_value:
                        type: number
                      ga_date_range:
                        type: array
                        items:
                          type: object
                          properties:
                            since:
                              type: string
                              format: date
                            until:
                              type: string
                              format: date
                      data_captured_at:
                        description: Datetime (ISO-8601 format)
                        type: string
                      is_data_golden:
                        type: boolean
                  data_captured_at:
                    type: string
                  is_data_golden:
                    type: boolean
              examples:
                missing:
                  value:
                    data:
                      url: https://cm.conductor.com/this-page-does-not-exist/
                      url_unique_id: '123345'
                      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: false
                      status_code: 404
                      type: missing
                      enrichment_fields_data: {}
                      segments: []
                      app_url: >-
                        https://app.cm.conductor.com/websites/5-2457491/pages/12334563485638745638465837465836
                      time_document_download: 123
                      unstable_last_checked_at: '2022-08-15T06:28:42+02:00'
                    data_captured_at: '2022-08-15T13:55:35+02:00'
                    is_data_golden: false
                  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**.

````