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

# Get artifact metadata



## OpenAPI

````yaml /openapi.json get /api/orgs/{id}/artifacts/{artifactId}
openapi: 3.1.0
info:
  title: Atoll API
  version: 1.0.0
  description: >-
    REST API for Atoll project management, agent collaboration, strategy
    tracking, and integrations.
servers:
  - url: https://atollhq.com
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Authentication
  - name: Organizations
  - name: Projects
  - name: Project access
  - name: Issues
  - name: Issue details
  - name: Milestones
  - name: Artifacts
  - name: Strategy
  - name: Members and agents
  - name: Planning
  - name: Setup
  - name: Integrations and billing
  - name: Notifications and public
  - name: Private inbox
  - name: Agent executions
  - name: Human attention
paths:
  /api/orgs/{id}/artifacts/{artifactId}:
    parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
          format: uuid
      - name: artifactId
        in: path
        required: true
        schema:
          type: string
          format: uuid
    get:
      tags:
        - Artifacts
      summary: Get artifact metadata
      operationId: get_artifact
      responses:
        '200':
          description: Readable artifact
          content:
            application/json:
              schema:
                type: object
                required:
                  - artifact
                properties:
                  artifact:
                    $ref: '#/components/schemas/Artifact'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
components:
  schemas:
    Artifact:
      type: object
      additionalProperties: false
      required:
        - id
        - org_id
        - type
        - title
        - current_revision_id
        - created_by
        - created_at
        - updated_at
        - links
        - can_edit
        - can_unlink
      properties:
        id:
          type: string
          format: uuid
        org_id:
          type: string
          format: uuid
        type:
          type: string
          enum:
            - prd
            - implementation_plan
            - test_plan
            - decision
            - research
            - release_checklist
        title:
          type: string
          maxLength: 200
        current_revision_id:
          type: string
          format: uuid
          nullable: true
        created_by:
          type: string
          format: uuid
          nullable: true
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
        links:
          type: array
          items:
            $ref: '#/components/schemas/ArtifactLink'
        can_edit:
          type: boolean
          description: >-
            Whether the current member can create a revision or link the
            Artifact.
        can_unlink:
          type: boolean
          description: >-
            Whether the current member can remove a visible link from the
            Artifact.
    ArtifactLink:
      type: object
      additionalProperties: false
      required:
        - id
        - org_id
        - artifact_id
        - artifact_type
        - target_type
        - target_id
        - created_by
        - created_at
      properties:
        id:
          type: string
          format: uuid
        org_id:
          type: string
          format: uuid
        artifact_id:
          type: string
          format: uuid
        artifact_type:
          type: string
          enum:
            - prd
            - implementation_plan
            - test_plan
            - decision
            - research
            - release_checklist
        target_type:
          type: string
          enum:
            - issue
            - project
        target_id:
          type: string
          format: uuid
        created_by:
          type: string
          format: uuid
          nullable: true
        created_at:
          type: string
          format: date-time
    Error:
      type: object
      description: >-
        Common error responses contain error. Shared missing-auth and
        unknown-API responses also contain a stable code.
      properties:
        error:
          type: string
        code:
          type: string
      required:
        - error
      examples:
        - error: Unauthorized
          code: unauthorized
        - error: Not found
          code: not_found
      additionalProperties: true
  responses:
    Unauthorized:
      description: Missing or invalid authentication
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    Forbidden:
      description: Authenticated but not allowed
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    NotFound:
      description: Resource not found or not visible
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: sk_atoll_<key>

````