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

# Get the application timeline

> The application's unified timeline, newest first: platform builds, deploy runs, demos, AI reviews and lifecycle events from the platform's own records, capped with the cap reported and every unreadable source named - an unreadable source is unknown, not a source with no events. Live-fetched lanes (GitHub workflow runs, registry scans) keep their own endpoints.



## OpenAPI

````yaml https://platform.ankra.app/openapi.json get /org/applications/{application_id}/timeline
openapi: 3.1.0
info:
  title: FastAPI
  version: 0.1.0
servers:
  - url: https://platform.ankra.app
security: []
paths:
  /org/applications/{application_id}/timeline:
    get:
      tags:
        - applications
      summary: Get the application timeline
      description: >-
        The application's unified timeline, newest first: platform builds,
        deploy runs, demos, AI reviews and lifecycle events from the platform's
        own records, capped with the cap reported and every unreadable source
        named - an unreadable source is unknown, not a source with no events.
        Live-fetched lanes (GitHub workflow runs, registry scans) keep their own
        endpoints.
      operationId: get_application_timeline
      parameters:
        - in: path
          name: application_id
          required: true
          schema:
            title: Application Id
            type: string
        - in: query
          name: limit
          required: false
          schema:
            default: 60
            maximum: 100
            minimum: 1
            title: Limit
            type: integer
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApplicationTimelineResponse'
          description: Successful Response
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DemoDetailError'
          description: Not found ("Application not found")
components:
  schemas:
    ApplicationTimelineResponse:
      properties:
        events:
          items:
            $ref: '#/components/schemas/ApplicationTimelineEvent'
          title: Events
          type: array
        capped:
          title: Capped
          type: boolean
        unavailable_sources:
          items:
            type: string
          title: Unavailable Sources
          type: array
      required:
        - events
        - capped
        - unavailable_sources
      title: ApplicationTimelineResponse
      type: object
    DemoDetailError:
      description: >-
        The FastAPI-style detail envelope the demo routes use for
        400/403/404/409/502 responses.
      properties:
        detail:
          type: string
      required:
        - detail
      type: object
    ApplicationTimelineEvent:
      properties:
        id:
          title: Id
          type: string
        kind:
          type: string
          title: Kind
        status:
          type: string
          title: Status
        occurred_at:
          title: Occurred At
          type: string
        cluster_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Cluster Name
        namespace:
          anyOf:
            - type: string
            - type: 'null'
          title: Namespace
        commit_sha:
          anyOf:
            - type: string
            - type: 'null'
          title: Commit Sha
        ref:
          anyOf:
            - type: string
            - type: 'null'
          title: Ref
        url:
          anyOf:
            - type: string
            - type: 'null'
          title: Url
        message:
          anyOf:
            - type: string
            - type: 'null'
          title: Message
        verdict:
          anyOf:
            - type: string
            - type: 'null'
          title: Verdict
        pr_number:
          anyOf:
            - type: integer
            - type: 'null'
          title: Pr Number
        duration_seconds:
          anyOf:
            - type: integer
            - type: 'null'
          title: Duration Seconds
      required:
        - id
        - kind
        - status
        - occurred_at
      title: ApplicationTimelineEvent
      type: object

````