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

# Get the latest agent readiness report

> The most recent completed report for the project's website, any newer run still in flight or failed, and the score history. Returns stored data only; it never starts a scan.



## OpenAPI

````yaml https://api.usenotra.com/openapi.json get /v1/projects/{projectId}/geo/agent-readiness
openapi: 3.1.1
info:
  title: Notra API
  version: 1.0.0
  description: >-
    OpenAPI schema for Notra content endpoints. Use GET /v1/status for public
    reachability. Error responses include recovery guidance.
servers:
  - url: https://api.usenotra.com
    description: Production
security:
  - BearerAuth: []
tags:
  - name: Discovery
    description: Public API status and authenticated workspace discovery.
  - name: Content
    description: >-
      Manage posts, brand identities, and GitHub or Linear integrations, and
      queue content generation. Organization is inferred from the API key
      (identity.externalId).
  - name: Schedules
    description: >-
      Manage scheduled content generation. Organization is inferred from the API
      key (identity.externalId).
  - name: Event Triggers
    description: >-
      Manage event-based content generation triggered by GitHub webhooks.
      Organization is inferred from the API key (identity.externalId).
  - name: Chats
    description: >-
      Manage chat sessions. Organization is inferred from the API key
      (identity.externalId).
  - name: Skills
    description: >-
      Manage reusable writing skills. Organization is inferred from the API key
      (identity.externalId).
  - name: Feedback
    description: >-
      Collect and triage feedback submitted by AI agents. Agents post to the
      organization's feedback URL without credentials; reading and triage
      require an API key with feedback.read or feedback.write.
  - name: GEO
    description: >-
      Manage generative engine optimization: projects, tracking settings,
      prompts, prompt sequences, competitors, scans, visibility reads, content
      gaps and briefs, agent readiness and AI traffic. Project-scoped endpoints
      require the GEO plan entitlement in addition to their scope;
      organization-level ingest endpoints require only the traffic scope.
paths:
  /v1/projects/{projectId}/geo/agent-readiness:
    get:
      tags:
        - GEO
      summary: Get the latest agent readiness report
      description: >-
        The most recent completed report for the project's website, any newer
        run still in flight or failed, and the score history. Returns stored
        data only; it never starts a scan.
      operationId: getGeoAgentReadiness
      parameters:
        - schema:
            type: string
            minLength: 1
            pattern: ^[A-Za-z0-9_-]{1,100}$
            example: b1f2c3d4-0000-4000-8000-000000000000
          required: true
          name: projectId
          in: path
      responses:
        '200':
          description: Report fetched successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GeoAgentReadinessResponse'
        '400':
          description: Invalid request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Missing or invalid API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '402':
          description: GEO plan or available AI credits required
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Organization, project or resource not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '409':
          description: Conflict
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '503':
          description: Authentication or billing service unavailable
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    GeoAgentReadinessResponse:
      type: object
      properties:
        targetUrl:
          type: string
        report:
          $ref: '#/components/schemas/GeoAgentReadinessReport'
        scan:
          allOf:
            - $ref: '#/components/schemas/GeoAgentReadinessReport'
            - description: Latest run newer than the completed report, if any.
        history:
          type: array
          items:
            type: object
            properties:
              id:
                type: string
              score:
                type:
                  - number
                  - 'null'
              failedCount:
                type: integer
              partialCount:
                type: integer
              scannedAt:
                type: string
            required:
              - id
              - score
              - failedCount
              - partialCount
              - scannedAt
          description: Completed scans, oldest first.
        organization:
          type: object
          properties:
            id:
              type: string
            slug:
              type: string
            name:
              type: string
            logo:
              type:
                - string
                - 'null'
          required:
            - id
            - slug
            - name
            - logo
      required:
        - targetUrl
        - report
        - scan
        - history
        - organization
    ErrorResponse:
      type: object
      properties:
        error:
          type: string
        code:
          type: string
        recovery:
          type: string
      required:
        - error
    GeoAgentReadinessReport:
      type:
        - object
        - 'null'
      properties:
        id:
          type: string
        status:
          type: string
          enum:
            - running
            - completed
            - failed
        targetUrl:
          type: string
        score:
          type:
            - number
            - 'null'
        scoreLabel:
          type:
            - string
            - 'null'
        scoreBreakdown:
          type:
            - object
            - 'null'
          properties:
            essential:
              type: object
              properties:
                earned:
                  type: number
                available:
                  type: number
                passing:
                  type: number
                total:
                  type: number
              required:
                - earned
                - available
                - passing
                - total
            recommended:
              type: object
              properties:
                earned:
                  type: number
                available:
                  type: number
                passing:
                  type: number
                total:
                  type: number
              required:
                - earned
                - available
                - passing
                - total
            bonus:
              type: object
              properties:
                points:
                  type: number
                positiveSignals:
                  type: number
              required:
                - points
                - positiveSignals
          required:
            - essential
            - recommended
            - bonus
        issues:
          type: array
          items:
            type: object
            properties:
              id:
                type: string
              name:
                type: string
              tier:
                type: string
                enum:
                  - essential
                  - recommended
                  - bonus
              result:
                type: string
                enum:
                  - failed
                  - partial
              details:
                type:
                  - string
                  - 'null'
              recommendation:
                type:
                  - string
                  - 'null'
            required:
              - id
              - name
              - tier
              - result
              - details
              - recommendation
        eligibleChecks:
          type:
            - integer
            - 'null'
        reportUrl:
          type:
            - string
            - 'null'
        errorMessage:
          type:
            - string
            - 'null'
        scannedAt:
          type:
            - string
            - 'null'
        createdAt:
          type: string
      required:
        - id
        - status
        - targetUrl
        - score
        - scoreLabel
        - scoreBreakdown
        - issues
        - eligibleChecks
        - reportUrl
        - errorMessage
        - scannedAt
        - createdAt
      description: Latest completed report, if any.
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key
      description: Send your API key in the Authorization header as Bearer API_KEY.

````