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

# Open a share link

> What the link is, and for a view link its approved assets with download URLs. A password goes in `X-Share-Password`: 401 `password` without it or with a wrong one, 410 `gone` once expired.

No key needed.



## OpenAPI

````yaml /openapi.json get /api/v1/shared/{token}
openapi: 3.1.0
info:
  title: artbucket
  version: '1'
  description: >-
    Agent-first asset management. The web UI is built on this API and nothing
    else, beside signing in at /api/auth. Send `Authorization: Bearer <key>`: a
    key works in one workspace with one scope, and scopes are a ladder: read <
    propose < write < admin. People signed in to the app carry a session cookie
    instead, and their scope is what their grants add up to: on the
    organization, the workspace, or single collections and assets. A scope shown
    as needed on the workspace is also enough on the one collection or asset a
    route acts on. Agents (MCP at POST /api/v1/mcp) usually get `propose`: what
    they add waits for a human.
servers:
  - url: http://localhost:3000
security:
  - bearer: []
  - session: []
  - {}
paths:
  /api/v1/shared/{token}:
    parameters:
      - name: token
        in: path
        required: true
        description: From the share link
        schema:
          type: string
    get:
      summary: Open a share link
      description: >-
        What the link is, and for a view link its approved assets with download
        URLs. A password goes in `X-Share-Password`: 401 `password` without it
        or with a wrong one, 410 `gone` once expired.


        No key needed.
      parameters:
        - name: limit
          in: query
          schema:
            type: integer
            minimum: 1
            maximum: 200
            default: 100
          description: Page size
        - name: offset
          in: query
          schema:
            type: integer
            minimum: 0
            default: 0
          description: Skip this many
      responses:
        '200':
          description: The link's contents
          content:
            application/json:
              schema:
                type: object
                properties:
                  share:
                    type: object
                    properties:
                      kind:
                        type: string
                        enum:
                          - view
                          - upload
                      name:
                        type:
                          - string
                          - 'null'
                      workspace:
                        type:
                          - string
                          - 'null'
                      organization:
                        type:
                          - string
                          - 'null'
                      target:
                        type: object
                        properties:
                          type:
                            type: string
                            enum:
                              - collection
                              - asset
                              - workspace
                          id:
                            anyOf:
                              - type: string
                                format: uuid
                                pattern: >-
                                  ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$
                              - type: 'null'
                          label:
                            type:
                              - string
                              - 'null'
                        required:
                          - type
                          - id
                          - label
                        additionalProperties: false
                      expiresAt:
                        anyOf:
                          - type: string
                            format: date-time
                            pattern: >-
                              ^(?:(?:\d\d[2468][048]|\d\d[13579][26]|\d\d0[48]|[02468][048]00|[13579][26]00)-02-29|\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\d|30)|(?:02)-(?:0[1-9]|1\d|2[0-8])))T(?:(?:[01]\d|2[0-3]):[0-5]\d:[0-5]\d(?:\.\d+)?(?:Z|([+-](?:[01]\d|2[0-3]):[0-5]\d)))$
                          - type: 'null'
                      brand:
                        type: object
                        properties:
                          name:
                            type: string
                            description: What the product is called here
                          tagline:
                            type:
                              - string
                              - 'null'
                          logo:
                            description: A URL on this host
                            type:
                              - string
                              - 'null'
                          icon:
                            description: A URL on this host, square
                            type:
                              - string
                              - 'null'
                          accent:
                            type:
                              - string
                              - 'null'
                          emailFooter:
                            type:
                              - string
                              - 'null'
                          custom:
                            type: boolean
                            description: Anything differs from the product's own look
                        required:
                          - name
                          - tagline
                          - logo
                          - icon
                          - accent
                          - emailFooter
                          - custom
                        additionalProperties: false
                        description: Whose link this is, and how it looks
                    required:
                      - kind
                      - name
                      - workspace
                      - organization
                      - target
                      - expiresAt
                      - brand
                    additionalProperties: false
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          format: uuid
                          pattern: >-
                            ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$
                        filename:
                          type: string
                        title:
                          type:
                            - string
                            - 'null'
                        description:
                          type:
                            - string
                            - 'null'
                        creator:
                          type:
                            - string
                            - 'null'
                        copyright:
                          type:
                            - string
                            - 'null'
                        mime:
                          type: string
                        size:
                          type: integer
                          minimum: -9007199254740991
                          maximum: 9007199254740991
                        width:
                          anyOf:
                            - type: integer
                              minimum: -9007199254740991
                              maximum: 9007199254740991
                            - type: 'null'
                        height:
                          anyOf:
                            - type: integer
                              minimum: -9007199254740991
                              maximum: 9007199254740991
                            - type: 'null'
                        url:
                          type: string
                          format: uri
                        download:
                          type: string
                          format: uri
                        thumbnail:
                          anyOf:
                            - type: string
                              format: uri
                            - type: 'null'
                      required:
                        - id
                        - filename
                        - title
                        - description
                        - creator
                        - copyright
                        - mime
                        - size
                        - width
                        - height
                        - url
                        - download
                        - thumbnail
                      additionalProperties: false
                  total:
                    type: integer
                    minimum: -9007199254740991
                    maximum: 9007199254740991
                required:
                  - share
                  - data
                  - total
                additionalProperties: false
        default:
          description: An error
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                      message:
                        type: string
                      detail: {}
                    required:
                      - code
                      - message
                    additionalProperties: false
                required:
                  - error
                additionalProperties: false
      security: []
components:
  securitySchemes:
    bearer:
      type: http
      scheme: bearer
      description: 'An API key: ab_...'
    session:
      type: apiKey
      in: cookie
      name: better-auth.session_token
      description: Signed in, at /api/auth

````