Einride Authentication Service API

The Authentication Service API from Einride — 1 operation(s) for authentication service.

Operations 1

POST /v1beta1/auth:exchangeSecret Exchange secret for access token #

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/einride-authentication-service-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

einride-authentication-service-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: 'Einride Extend: Authentication Authentication Service API'
  description: Based on REST principles, with optional support for gRPC, the Einride Extend API enables modern API-based integration to Einride Saga.
  version: v1beta1
tags:
- name: Authentication Service
paths:
  /v1beta1/auth:exchangeSecret:
    post:
      summary: Exchange secret for access token
      operationId: AuthenticationService_ExchangeSecret
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1beta1ExchangeSecretResponse'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/rpcStatus'
      tags:
      - Authentication Service
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/v1beta1ExchangeSecretRequest'
        description: Request to the ExchangeSecret method.
        required: true
components:
  schemas:
    protobufAny:
      type: object
      properties:
        '@type':
          type: string
      additionalProperties: {}
    v1beta1ExchangeSecretResponse:
      type: object
      properties:
        accessToken:
          type: string
          description: 'Access token to pass as a Bearer token in the authorization header

            on subsequent API calls.'
        expireTime:
          type: string
          format: date-time
          description: Expire time of the access token.
          readOnly: true
      description: Response from the ExchangeSecret method.
    v1beta1ExchangeSecretRequest:
      type: object
      properties:
        clientId:
          type: string
          format: string
          description: The client ID.
        clientSecret:
          type: string
          format: password
          description: The client secret.
      description: Request to the ExchangeSecret method.
      required:
      - clientId
      - clientSecret
    rpcStatus:
      type: object
      properties:
        code:
          type: integer
          format: int32
        message:
          type: string
        details:
          type: array
          items:
            type: object
            $ref: '#/components/schemas/protobufAny'