Google Looker Users API

The Users API from Google Looker — 2 operation(s) for users.

Operations 2

GET /user Get Current User #
GET /users Get All Users #

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/google-looker-users-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

google-looker-users-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Google Looker Authentication Users API
  description: A simplified OpenAPI representation for Google Looker covering core Looker API 4.0 endpoints used to authenticate, fetch users, and run looks. This spec is a curated index entry pointing to the upstream Looker OpenAPI for full coverage.
  version: 4.0.0
  contact:
    name: Google Looker
    url: https://cloud.google.com/looker/docs/api-overview
servers:
- url: https://your-instance.cloud.looker.com:19999/api/4.0
  description: Looker instance API endpoint (replace your-instance).
security:
- BearerAuth: []
tags:
- name: Users
paths:
  /user:
    get:
      operationId: getCurrentUser
      summary: Get Current User
      description: Return the user record associated with the access token used for the request, including identifiers, profile fields, and role membership.
      tags:
      - Users
      responses:
        '200':
          description: Successful response containing the current Looker user record.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/User'
  /users:
    get:
      operationId: getAllUsers
      summary: Get All Users
      description: Return a paginated list of all Looker user records visible to the authenticated caller. Use page and per_page to traverse results.
      tags:
      - Users
      parameters:
      - name: page
        in: query
        description: Page number to retrieve when paginating user results.
        schema:
          type: integer
      - name: per_page
        in: query
        description: Number of user records to return per page.
        schema:
          type: integer
      responses:
        '200':
          description: Successful response containing a list of Looker user records.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/User'
components:
  schemas:
    User:
      type: object
      description: A Looker user account record.
      properties:
        id:
          type: string
          description: Unique identifier for the user.
        first_name:
          type: string
          description: User first name.
        last_name:
          type: string
          description: User last name.
        email:
          type: string
          description: Primary email address for the user.
        is_disabled:
          type: boolean
          description: Indicates whether the user account is disabled.
        role_ids:
          type: array
          description: List of role identifiers assigned to the user.
          items:
            type: string
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer