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

# Who did what

> Newest first: assets added, suggested, approved, rejected and deleted, tags suggested, and brand rule changes (one per brand version). An actor is an API key's name, or `web` for the app.

Scope: `read`.



## OpenAPI

````yaml /openapi.json get /api/v1/activity
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/activity:
    get:
      summary: Who did what
      description: >-
        Newest first: assets added, suggested, approved, rejected and deleted,
        tags suggested, and brand rule changes (one per brand version). An actor
        is an API key's name, or `web` for the app.


        Scope: `read`.
      parameters:
        - name: before
          in: query
          schema:
            type: string
            format: date-time
          description: 'Only before this time: the previous page''s `next`'
        - name: limit
          in: query
          schema:
            type: integer
            minimum: 1
            maximum: 100
            default: 50
          description: Page size
      responses:
        '200':
          description: Activity
          content:
            application/json:
              schema:
                type: object
                properties:
                  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)$
                        at:
                          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)))$
                        actor:
                          type: string
                          description: >-
                            Who: a person's name, an API key's name, or "web"
                            for the app without an account
                        agent:
                          type: boolean
                          description: Done with an API key
                        verb:
                          type: string
                          enum:
                            - added
                            - suggested
                            - approved
                            - rejected
                            - deleted
                            - suggested_tags
                            - archived
                            - unarchived
                            - made_current
                            - edited_rules
                            - restored_rules
                        label:
                          type: string
                          description: >-
                            The asset's title or filename then, or the brand's
                            name
                        assetId:
                          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'
                        brand:
                          anyOf:
                            - type: object
                              properties:
                                slug:
                                  type: string
                                name:
                                  type: string
                                version:
                                  type: integer
                                  minimum: -9007199254740991
                                  maximum: 9007199254740991
                              required:
                                - slug
                                - name
                                - version
                              additionalProperties: false
                            - type: 'null'
                        detail:
                          anyOf:
                            - type: object
                              properties:
                                tags:
                                  type: array
                                  items:
                                    type: string
                                note:
                                  type: string
                                version:
                                  type: integer
                                  minimum: -9007199254740991
                                  maximum: 9007199254740991
                                rules:
                                  type: array
                                  items:
                                    type: string
                                summary:
                                  type: string
                              additionalProperties: false
                            - type: 'null'
                      required:
                        - id
                        - at
                        - actor
                        - agent
                        - verb
                        - label
                        - assetId
                        - brand
                        - detail
                      additionalProperties: false
                  next:
                    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'
                    description: Pass as `before` for the next page; null at the end
                required:
                  - data
                  - next
                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
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

````