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

# Get search rollup totals

> Returns fixed-window Google Search Console or GA4 rollup totals. Totals are null and measurement status is unmeasured unless every non-paused, non-disconnected current contributor has complete coverage for the full requested window. Coverage is reported per contributor.



## OpenAPI

````yaml /openapi.json get /projects/{projectId}/traffic/search-rollups
openapi: 3.1.0
info:
  title: DevTune API
  version: 2.0.0
  description: >-
    API for programmatic access to your AI visibility data, webhook
    subscriptions, and automation workflows. Use this API to integrate DevTune
    data into CI/CD pipelines, BI tools, AI agents, and operational systems.
servers:
  - url: https://devtune.ai/api/v2
    description: Production
security:
  - bearerAuth: []
paths:
  /projects/{projectId}/traffic/search-rollups:
    get:
      summary: Get search rollup totals
      description: >-
        Returns fixed-window Google Search Console or GA4 rollup totals. Totals
        are null and measurement status is unmeasured unless every non-paused,
        non-disconnected current contributor has complete coverage for the full
        requested window. Coverage is reported per contributor.
      operationId: getSearchRollups
      parameters:
        - name: projectId
          in: path
          required: true
          schema:
            type: string
            format: uuid
        - name: source
          in: query
          required: true
          schema:
            type: string
            enum:
              - gsc
              - ga4
        - name: windowDays
          in: query
          schema:
            type: integer
            default: 30
            enum:
              - 30
              - 90
          description: >-
            Fixed rolling window in days. Supported values are 30 and 90.
            Defaults to 30.
      responses:
        '200':
          description: Search rollup totals and measurement coverage
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      source:
                        type: string
                        enum:
                          - gsc
                          - ga4
                      aggregates:
                        oneOf:
                          - type: object
                            properties:
                              avgPosition:
                                type:
                                  - number
                                  - 'null'
                              clicks:
                                type:
                                  - integer
                                  - 'null'
                              ctr:
                                type:
                                  - number
                                  - 'null'
                              impressions:
                                type:
                                  - integer
                                  - 'null'
                              measurement:
                                type: object
                                properties:
                                  contributors:
                                    type: array
                                    items:
                                      type: object
                                      properties:
                                        connectionId:
                                          type: string
                                          format: uuid
                                        generation:
                                          type: integer
                                        status:
                                          type: string
                                        coverageFrom:
                                          type:
                                            - string
                                            - 'null'
                                          format: date
                                        coverageThrough:
                                          type:
                                            - string
                                            - 'null'
                                          format: date
                                      required:
                                        - connectionId
                                        - generation
                                        - status
                                        - coverageFrom
                                        - coverageThrough
                                  coverageFrom:
                                    type:
                                      - string
                                      - 'null'
                                    format: date
                                  coverageThrough:
                                    type:
                                      - string
                                      - 'null'
                                    format: date
                                  status:
                                    type: string
                                    enum:
                                      - measured
                                      - unmeasured
                                required:
                                  - contributors
                                  - coverageFrom
                                  - coverageThrough
                                  - status
                            required:
                              - avgPosition
                              - clicks
                              - ctr
                              - impressions
                              - measurement
                          - type: object
                            properties:
                              engagedSessions:
                                type:
                                  - integer
                                  - 'null'
                              measurement:
                                type: object
                                properties:
                                  contributors:
                                    type: array
                                    items:
                                      type: object
                                      properties:
                                        connectionId:
                                          type: string
                                          format: uuid
                                        generation:
                                          type: integer
                                        status:
                                          type: string
                                        coverageFrom:
                                          type:
                                            - string
                                            - 'null'
                                          format: date
                                        coverageThrough:
                                          type:
                                            - string
                                            - 'null'
                                          format: date
                                      required:
                                        - connectionId
                                        - generation
                                        - status
                                        - coverageFrom
                                        - coverageThrough
                                  coverageFrom:
                                    type:
                                      - string
                                      - 'null'
                                    format: date
                                  coverageThrough:
                                    type:
                                      - string
                                      - 'null'
                                    format: date
                                  status:
                                    type: string
                                    enum:
                                      - measured
                                      - unmeasured
                                required:
                                  - contributors
                                  - coverageFrom
                                  - coverageThrough
                                  - status
                              sessions:
                                type:
                                  - integer
                                  - 'null'
                            required:
                              - engagedSessions
                              - measurement
                              - sessions
                      window:
                        type: object
                        properties:
                          days:
                            type: integer
                            enum:
                              - 30
                              - 90
                          dateFrom:
                            type: string
                            format: date
                          dateTo:
                            type: string
                            format: date
                        required:
                          - days
                          - dateFrom
                          - dateTo
                    required:
                      - aggregates
                      - source
                      - window
                  meta:
                    $ref: '#/components/schemas/Meta'
                required:
                  - data
                  - meta
        '400':
          $ref: '#/components/responses/BadRequestError'
        '401':
          $ref: '#/components/responses/UnauthorizedError'
        '403':
          $ref: '#/components/responses/ForbiddenError'
        '429':
          $ref: '#/components/responses/RateLimitExceededError'
        '500':
          $ref: '#/components/responses/ServerError'
components:
  schemas:
    Meta:
      type: object
      properties:
        timestamp:
          type: string
          format: date-time
        projectId:
          type: string
          format: uuid
    Error:
      type: object
      properties:
        error:
          type: string
        message:
          type: string
        status:
          type: integer
      required:
        - error
        - message
        - status
  responses:
    BadRequestError:
      description: Bad request
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    UnauthorizedError:
      description: Unauthorized
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    ForbiddenError:
      description: Forbidden
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    RateLimitExceededError:
      description: Rate limit exceeded
      headers:
        X-RateLimit-Limit:
          $ref: '#/components/headers/X-RateLimit-Limit'
        X-RateLimit-Remaining:
          $ref: '#/components/headers/X-RateLimit-Remaining'
        X-RateLimit-Reset:
          $ref: '#/components/headers/X-RateLimit-Reset'
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    ServerError:
      description: Internal server error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  headers:
    X-RateLimit-Limit:
      description: Maximum requests per window
      schema:
        type: integer
    X-RateLimit-Remaining:
      description: Requests remaining in current window
      schema:
        type: integer
    X-RateLimit-Reset:
      description: Unix timestamp when the window resets
      schema:
        type: integer
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        API key with dtk_live_ prefix. Obtain it from API Keys in the account
        sidebar. New keys start with all supported scopes selected for the
        chosen project, and you can narrow them to specific read/write scopes as
        needed.

````