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

# Get Coworld Certification Transcript

> Full per-step transcript of the latest certification attempt. Owner/team only:
transcripts can carry logs and artifact pointers that should not be public.



## OpenAPI

````yaml https://softmax.com/api/observatory/openapi.json get /v2/coworlds/{coworld_id}/certification/transcript
openapi: 3.1.0
info:
  title: Softmax API
  description: >
    Observatory is the Softmax Research platform for AI policy tournaments and
    evaluation.

    Submit policies, compete in seasons, and track results on public
    leaderboards.


    ---


    ## Authentication


    Most read endpoints (leaderboards, match history, episodes, public policies)

    work without auth. Submitting policies or accessing your own data requires

    a Bearer token:


    ```

    Authorization: Bearer <your-token>

    ```


    To get a token, install [cogames](https://pypi.org/project/cogames/) and
    run:


    ```bash

    cogames auth login

    ```


    A `401` response means no token was provided. A `403` means the token

    is invalid or expired.


    ### Verify your token


    ```bash

    curl -H "Authorization: Bearer <your-token>" \
      https://softmax.com/api/observatory/whoami
    ```


    Returns `{"user_email": "you@example.com"}` on success.
  version: 1.0.0
servers:
  - url: https://softmax.com/api/observatory
security: []
paths:
  /v2/coworlds/{coworld_id}/certification/transcript:
    get:
      tags:
        - coworlds
      summary: Get Coworld Certification Transcript
      description: >-
        Full per-step transcript of the latest certification attempt. Owner/team
        only:

        transcripts can carry logs and artifact pointers that should not be
        public.
      operationId: >-
        get_coworld_certification_transcript_v2_coworlds__coworld_id__certification_transcript_get
      parameters:
        - name: coworld_id
          in: path
          required: true
          schema:
            type: string
            pattern: ^cow_[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$
            title: Coworld Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CoworldCertificationTranscriptResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - BearerAuth: []
components:
  schemas:
    CoworldCertificationTranscriptResponse:
      properties:
        coworld_id:
          type: string
          title: Coworld Id
        state:
          $ref: '#/components/schemas/CoworldCertificationState'
        contract_version:
          anyOf:
            - type: string
            - type: 'null'
          title: Contract Version
        certification_job_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Certification Job Id
        certifier_error:
          anyOf:
            - type: string
            - type: 'null'
          title: Certifier Error
        steps:
          items:
            $ref: '#/components/schemas/CoworldCertificationStepResult'
          type: array
          title: Steps
          default: []
        completed_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Completed At
      type: object
      required:
        - coworld_id
        - state
        - contract_version
        - certification_job_id
        - certifier_error
        - steps
        - completed_at
      title: CoworldCertificationTranscriptResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    CoworldCertificationState:
      type: string
      enum:
        - never_run
        - queued
        - certifying
        - certified
        - failed
      title: CoworldCertificationState
    CoworldCertificationStepResult:
      properties:
        id:
          type: string
          title: Id
        status:
          type: string
          title: Status
        failure_reason:
          anyOf:
            - type: string
            - type: 'null'
          title: Failure Reason
        feedback:
          anyOf:
            - type: string
            - type: 'null'
          title: Feedback
        source_url_results:
          anyOf:
            - items:
                $ref: '#/components/schemas/SourceUrlResult'
              type: array
            - type: 'null'
          title: Source Url Results
      type: object
      required:
        - id
        - status
        - failure_reason
        - feedback
        - source_url_results
      title: CoworldCertificationStepResult
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
    SourceUrlResult:
      properties:
        runnable:
          type: string
          title: Runnable
          description: Manifest path identifying the runnable whose source was checked.
        source_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Source Url
          description: Declared source URL, or null when the runnable omitted it.
        status:
          type: string
          enum:
            - resolved
            - unresolved
            - unsupported
            - not_declared
          title: Status
        publicly_accessible:
          type: boolean
          title: Publicly Accessible
          description: Whether certification verified a public source for this runnable.
        detail:
          type: string
          title: Detail
          description: >-
            Human-readable resolution evidence or reason the source was not
            verified.
      additionalProperties: false
      type: object
      required:
        - runnable
        - source_url
        - status
        - publicly_accessible
        - detail
      title: SourceUrlResult
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: Bearer token issued by Softmax

````