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

> Returns project-scoped content-intent and suspected-noise 404 clusters from the current materializer window, including explicit degraded state and machine-traffic sensor coverage.



## OpenAPI

````yaml /openapi.json get /projects/{projectId}/traffic/404-demand
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/404-demand:
    get:
      summary: Get 404 Demand
      description: >-
        Returns project-scoped content-intent and suspected-noise 404 clusters
        from the current materializer window, including explicit degraded state
        and machine-traffic sensor coverage.
      operationId: getTraffic404Demand
      parameters:
        - name: projectId
          in: path
          required: true
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: 404 Demand
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/Traffic404DemandData'
                  meta:
                    $ref: '#/components/schemas/Meta'
                required:
                  - data
                  - meta
        '400':
          $ref: '#/components/responses/BadRequestError'
        '401':
          $ref: '#/components/responses/UnauthorizedError'
        '403':
          $ref: '#/components/responses/ForbiddenError'
        '404':
          $ref: '#/components/responses/NotFoundError'
        '429':
          $ref: '#/components/responses/RateLimitExceededError'
components:
  schemas:
    Traffic404DemandData:
      type: object
      additionalProperties: false
      properties:
        clusters:
          type: array
          items:
            $ref: '#/components/schemas/Traffic404DemandCluster'
        dataAvailability:
          type: string
          enum:
            - available
            - degraded
            - empty
        dataScope:
          type: string
          enum:
            - project
        hasObservedDemand:
          type: boolean
        suspectedNoiseClusters:
          type: array
          items:
            $ref: '#/components/schemas/Traffic404DemandCluster'
        state:
          anyOf:
            - $ref: '#/components/schemas/Traffic404DemandState'
            - type: 'null'
        trafficSensors:
          type: object
          additionalProperties: false
          properties:
            connectedProviders:
              type: array
              items:
                type: string
            hasConnectedSensor:
              type: boolean
            middlewareConnected:
              type: boolean
          required:
            - connectedProviders
            - hasConnectedSensor
            - middlewareConnected
      required:
        - clusters
        - dataAvailability
        - dataScope
        - hasObservedDemand
        - suspectedNoiseClusters
        - state
        - trafficSensors
    Meta:
      type: object
      properties:
        timestamp:
          type: string
          format: date-time
        projectId:
          type: string
          format: uuid
    Traffic404DemandCluster:
      type: object
      additionalProperties: false
      properties:
        clusterKey:
          type: string
        demandClassification:
          type: string
          enum:
            - content_intent
            - generic_probe
            - technical_asset
            - infrastructure_path
        distinctBots:
          type: integer
        id:
          type: string
          format: uuid
        priorRequestCount:
          type:
            - integer
            - 'null'
        representativePath:
          type: string
        requestCount:
          type: integer
        samplePaths:
          type: array
          items:
            type: string
        status:
          type: string
          enum:
            - new
            - acknowledged
            - dismissed
        totalClusterCount:
          type: integer
        totalRequestCount:
          type: integer
        windowEnd:
          type: string
          format: date
        windowStart:
          type: string
          format: date
      required:
        - clusterKey
        - demandClassification
        - distinctBots
        - id
        - priorRequestCount
        - representativePath
        - requestCount
        - samplePaths
        - status
        - totalClusterCount
        - totalRequestCount
        - windowEnd
        - windowStart
    Traffic404DemandState:
      type: object
      additionalProperties: false
      properties:
        clusterCount:
          type: integer
        completedAt:
          type: string
          format: date-time
        lastError:
          type:
            - string
            - 'null'
        requestCount:
          type: integer
        status:
          type: string
          enum:
            - completed
            - skipped_rollups_only
            - failed
        windowEnd:
          type: string
          format: date
        windowStart:
          type: string
          format: date
      required:
        - clusterCount
        - completedAt
        - lastError
        - requestCount
        - status
        - windowEnd
        - windowStart
    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'
    NotFoundError:
      description: Not found
      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'
  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.

````