Google Looker Authentication API

The Authentication API from Google Looker — 1 operation(s) for authentication.

Operations 1

POST /login Login #

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-authentication-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-authentication-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Google Looker Authentication 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: Authentication
paths:
  /login:
    post:
      operationId: login
      summary: Login
      description: Exchange Looker API client_id and client_secret for an OAuth-style access token used to authorize subsequent API requests.
      tags:
      - Authentication
      parameters:
      - name: client_id
        in: query
        required: true
        description: Looker API client ID for the user account being authenticated.
        schema:
          type: string
      - name: client_secret
        in: query
        required: true
        description: Looker API client secret paired with the client_id.
        schema:
          type: string
      responses:
        '200':
          description: Successful login response containing the access token.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AccessToken'
components:
  schemas:
    AccessToken:
      type: object
      description: OAuth-style access token returned by the Looker login endpoint.
      properties:
        access_token:
          type: string
          description: Bearer token used to authorize subsequent Looker API requests.
        token_type:
          type: string
          description: Type of token issued, typically Bearer.
        expires_in:
          type: integer
          description: Lifetime of the access token in seconds.
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer