Grist session API

The session API from Grist — 2 operation(s) for session.

Operations 3

GET /session/access/active Get active session information #
POST /session/access/active Set active user for organization #
GET /session/access/all Get all session users and organizations #

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/grist-session-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

grist-session-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: 'An API for manipulating Grist sites, workspaces, and documents.


    # Authentication

    <SecurityDefinitions />

    '
  version: 1.0.1
  title: Grist attachments Session API
servers:
- url: https://{gristhost}/api
  variables:
    subdomain:
      description: The team name, or `docs` for personal areas
      default: docs
security:
- ApiKey: []
tags:
- name: session
paths:
  /session/access/active:
    get:
      operationId: getActiveSession
      tags:
      - session
      summary: Get active session information
      description: 'Returns information about the active user and organization for the current session.

        '
      responses:
        200:
          description: Active session info
          content:
            application/json:
              schema:
                type: object
                properties:
                  user:
                    $ref: '#/components/schemas/User'
                  org:
                    $ref: '#/components/schemas/Org'
                  orgError:
                    type: object
                    description: Error information if org access failed
                    properties:
                      error:
                        type: string
                      status:
                        type: integer
    post:
      operationId: setActiveUser
      tags:
      - session
      summary: Set active user for organization
      description: 'Switch which user account is active for a given organization.

        Useful when a user has multiple accounts logged in.

        '
      requestBody:
        content:
          application/json:
            schema:
              type: object
              required:
              - email
              properties:
                email:
                  type: string
                  description: Email of the user to make active
                org:
                  type: string
                  description: Organization subdomain or 'current'
      responses:
        200:
          description: Active user changed
          content:
            application/json:
              schema:
                type: object
                properties:
                  email:
                    type: string
        403:
          description: Email not available for this session
  /session/access/all:
    get:
      operationId: getAllSessions
      tags:
      - session
      summary: Get all session users and organizations
      description: 'Returns all user profiles logged into the current session and all

        organizations they can access.

        '
      responses:
        200:
          description: All session info
          content:
            application/json:
              schema:
                type: object
                properties:
                  users:
                    type: array
                    items:
                      $ref: '#/components/schemas/User'
                  orgs:
                    type: array
                    items:
                      $ref: '#/components/schemas/Org'
components:
  schemas:
    Org:
      type: object
      required:
      - id
      - name
      - domain
      - owner
      - createdAt
      - updatedAt
      - access
      properties:
        id:
          type: integer
          format: int64
          example: 42
        name:
          type: string
          example: Grist Labs
        domain:
          type:
          - string
          - 'null'
          example: gristlabs
        owner:
          type:
          - object
          - 'null'
          $ref: '#/components/schemas/User'
        access:
          type: string
          $ref: '#/components/schemas/Access'
        createdAt:
          type: string
          example: '2019-09-13T15:42:35.000Z'
        updatedAt:
          type: string
          example: '2019-09-13T15:42:35.000Z'
    Access:
      type: string
      enum:
      - owners
      - editors
      - viewers
    User:
      type: object
      required:
      - id
      - name
      - picture
      properties:
        id:
          type: integer
          format: int64
          example: 101
        name:
          type: string
          example: Helga Hufflepuff
        picture:
          type:
          - string
          - 'null'
          example: null
  securitySchemes:
    ApiKey:
      type: http
      scheme: bearer
      bearerFormat: 'Authorization: Bearer XXXXXXXXXXX'
      description: Access to the Grist API is controlled by an Authorization header, which should contain the word 'Bearer', followed by a space, followed by your API key.