> ## 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.

# List readable artifact metadata

> Returns artifacts visible to the caller. Revision content is omitted and links are filtered by effective issue/project access.



## OpenAPI

````yaml /openapi.json get /api/orgs/{id}/artifacts
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:
    parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
          format: uuid
    get:
      tags:
        - Artifacts
      summary: List readable artifact metadata
      description: >-
        Returns artifacts visible to the caller. Revision content is omitted and
        links are filtered by effective issue/project access.
      operationId: list_artifacts
      parameters:
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            minimum: 1
            maximum: 100
            default: 50
        - name: offset
          in: query
          required: false
          schema:
            type: integer
            minimum: 0
            maximum: 10000
            default: 0
      responses:
        '200':
          description: Readable artifacts
          content:
            application/json:
              schema:
                type: object
                required:
                  - artifacts
                  - limit
                  - offset
                  - hasMore
                properties:
                  artifacts:
                    type: array
                    items:
                      $ref: '#/components/schemas/Artifact'
                  limit:
                    type: integer
                    minimum: 1
                    maximum: 100
                  offset:
                    type: integer
                    minimum: 0
                  hasMore:
                    type: boolean
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
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'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: sk_atoll_<key>

````