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

# Add an app domain

> An address of the organization's own for the whole app. Add the TXT record in `record`, point the domain at this server, then POST /api/v1/domains/{host}/verify. Its people sign in there; links in email point there.

Scope: `admin`.



## OpenAPI

````yaml /openapi.json post /api/v1/domains
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/domains:
    post:
      summary: Add an app domain
      description: >-
        An address of the organization's own for the whole app. Add the TXT
        record in `record`, point the domain at this server, then POST
        /api/v1/domains/{host}/verify. Its people sign in there; links in email
        point there.


        Scope: `admin`.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                host:
                  type: string
                  minLength: 1
                  maxLength: 253
                  description: A host name of the organization's, e.g. assets.example.com
              required:
                - host
              additionalProperties: false
      responses:
        '201':
          description: The domain, not verified yet
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      host:
                        type: string
                      verified:
                        type: boolean
                      record:
                        type: object
                        properties:
                          type:
                            type: string
                            const: TXT
                          name:
                            type: string
                          value:
                            type: string
                        required:
                          - type
                          - name
                          - value
                        additionalProperties: false
                        description: 'What proves it: add this record at your DNS host'
                      portal:
                        description: The portal it serves, by slug; null for the whole app
                        type:
                          - string
                          - 'null'
                      url:
                        type: string
                        format: uri
                    required:
                      - host
                      - verified
                      - record
                      - portal
                      - url
                    additionalProperties: false
                required:
                  - data
                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

````