Baserow Settings API

The Settings API from Baserow — 3 operation(s) for settings.

Operations 3

GET /api/settings/ #
GET /api/settings/instance-id/ #
PATCH /api/settings/update/ #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/baserow-settings-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

baserow-settings-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Baserow API spec Admin Settings API
  version: 2.2.2
  description: 'For more information about our REST API, please visit [this page](https://baserow.io/docs/apis%2Frest-api).


    For more information about our deprecation policy, please visit [this page](https://baserow.io/docs/apis%2Fdeprecations).'
  contact:
    url: https://baserow.io/contact
  license:
    name: MIT
    url: https://github.com/baserow/baserow/blob/develop/LICENSE
servers:
- url: https://api.baserow.io
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: Settings
paths:
  /api/settings/:
    get:
      operationId: get_settings
      description: Responds with all the admin configured settings.
      tags:
      - Settings
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Settings'
          description: ''
  /api/settings/instance-id/:
    get:
      operationId: get_instance_id
      description: Responds with the self hosted instance id. Only a user with staff permissions can request it.
      tags:
      - Settings
      security:
      - UserSource JWT: []
      - JWT: []
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InstanceId'
          description: ''
  /api/settings/update/:
    patch:
      operationId: update_settings
      description: Updates the admin configured settings if the user has admin permissions.
      tags:
      - Settings
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PatchedSettings'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/PatchedSettings'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/PatchedSettings'
      security:
      - UserSource JWT: []
      - JWT: []
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Settings'
          description: ''
components:
  schemas:
    Settings:
      type: object
      properties:
        allow_new_signups:
          type: boolean
          description: Indicates whether new users can create a new account when signing up.
        allow_signups_via_workspace_invitations:
          type: boolean
          description: Indicates whether invited users can create an account when signing up, even if allow_new_signups is disabled.
        allow_reset_password:
          type: boolean
          description: Indicates whether users can request a password reset link.
        allow_global_workspace_creation:
          type: boolean
          description: Indicates whether all users can create workspaces, or just staff.
        account_deletion_grace_delay:
          type: integer
          maximum: 32767
          minimum: 0
          description: Number of days after the last login for an account pending deletion to be deleted
        show_admin_signup_page:
          type: boolean
          description: Indicates that there are no admin users in the database yet, so in the frontend the signup form will be shown instead of the login page.
        track_workspace_usage:
          type: boolean
          description: Runs a job once per day which calculates per workspace row counts and file storage usage, displayed on the admin workspace page.
        show_baserow_help_request:
          type: boolean
          description: Indicates whether the `We need your help!` message will be shown on the dashboard
        co_branding_logo:
          allOf:
          - $ref: '#/components/schemas/UserFile'
          description: Co-branding logo that's placed next to the Baserow logo (176x29).
        email_verification:
          description: 'Controls whether user email addresses have to be verified.


            * `no_verification` - no_verification

            * `recommended` - recommended

            * `enforced` - enforced'
          oneOf:
          - $ref: '#/components/schemas/EmailVerificationEnum'
          - $ref: '#/components/schemas/NullEnum'
        verify_import_signature:
          type: boolean
          description: Indicates whether the signature of imported files should be verified.
    InstanceId:
      type: object
      properties:
        instance_id:
          type: string
          readOnly: true
          pattern: ^[-a-zA-Z0-9_]+$
      required:
      - instance_id
    NullEnum:
      enum:
      - null
    PatchedSettings:
      type: object
      properties:
        allow_new_signups:
          type: boolean
          description: Indicates whether new users can create a new account when signing up.
        allow_signups_via_workspace_invitations:
          type: boolean
          description: Indicates whether invited users can create an account when signing up, even if allow_new_signups is disabled.
        allow_reset_password:
          type: boolean
          description: Indicates whether users can request a password reset link.
        allow_global_workspace_creation:
          type: boolean
          description: Indicates whether all users can create workspaces, or just staff.
        account_deletion_grace_delay:
          type: integer
          maximum: 32767
          minimum: 0
          description: Number of days after the last login for an account pending deletion to be deleted
        show_admin_signup_page:
          type: boolean
          description: Indicates that there are no admin users in the database yet, so in the frontend the signup form will be shown instead of the login page.
        track_workspace_usage:
          type: boolean
          description: Runs a job once per day which calculates per workspace row counts and file storage usage, displayed on the admin workspace page.
        show_baserow_help_request:
          type: boolean
          description: Indicates whether the `We need your help!` message will be shown on the dashboard
        co_branding_logo:
          allOf:
          - $ref: '#/components/schemas/UserFile'
          description: Co-branding logo that's placed next to the Baserow logo (176x29).
        email_verification:
          description: 'Controls whether user email addresses have to be verified.


            * `no_verification` - no_verification

            * `recommended` - recommended

            * `enforced` - enforced'
          oneOf:
          - $ref: '#/components/schemas/EmailVerificationEnum'
          - $ref: '#/components/schemas/NullEnum'
        verify_import_signature:
          type: boolean
          description: Indicates whether the signature of imported files should be verified.
    UserFile:
      type: object
      properties:
        size:
          type: integer
          maximum: 9223372036854775807
          minimum: 0
          format: int64
        mime_type:
          type: string
          maxLength: 127
        is_image:
          type: boolean
        image_width:
          type:
          - integer
          - 'null'
          maximum: 2147483647
          minimum: 0
        image_height:
          type:
          - integer
          - 'null'
          maximum: 2147483647
          minimum: 0
        uploaded_at:
          type: string
          format: date-time
          readOnly: true
        url:
          type: string
          format: uri
          readOnly: true
        thumbnails:
          type: object
          additionalProperties: {}
          readOnly: true
        name:
          type: string
          readOnly: true
        original_name:
          type: string
          maxLength: 255
      required:
      - name
      - original_name
      - size
      - thumbnails
      - uploaded_at
      - url
    EmailVerificationEnum:
      enum:
      - no_verification
      - recommended
      - enforced
      type: string
      description: '* `no_verification` - no_verification

        * `recommended` - recommended

        * `enforced` - enforced'
  securitySchemes:
    Database_token:
      type: http
      scheme: bearer
      bearerFormat: Token your_token
    JWT:
      type: http
      scheme: bearer
      bearerFormat: JWT your_token
    UserSource_JWT:
      type: http
      scheme: bearer
      bearerFormat: JWT your_token