Vibes Platform Authentication API

The Authentication API from Vibes Platform — 1 operation(s) for authentication.

Operations 1

POST /oauth2/token Request 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/vibes-platform-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

vibes-platform-authentication-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Vibes RBM Authentication API
  description: RCS Business Messaging API authentication
  version: v1
servers:
- url: https://vibes-rbm-prd.auth.us-west-2.amazoncognito.com
  description: Production
security:
- basicAuth: []
tags:
- name: Authentication
paths:
  /oauth2/token:
    post:
      security:
      - basicAuth: []
      tags:
      - Authentication
      summary: Request Access token
      description: 'Get an OAuth 2.0 access token for authenticated API calls <br><br> The API will respond with a JSON object containing the access token and other relevant information. <br/><br/> To make an authenticated API call, include the access token in the authorization header of your API request: <br/><br/> Example: `Authorization: Bearer [access_token]`'
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TokenResponse'
        '401':
          description: Invalid Client Id or Client Secret.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Empty'
      requestBody:
        required: true
        content:
          application/x-www-form-urlencoded:
            schema:
              type: object
              properties:
                grant_type:
                  type: string
                  description: OAuth 2.0 credential grant type. Must be "client_credentials"
                  examples:
                  - client_credentials
                client_id:
                  type: string
                  description: Alphanumeric string identifying your agent. To get your client_id, speak to your Vibes business rep.
                  examples:
                  - 1example2345678
                client_secret:
                  type: string
                  description: Your application's client secret
                scope:
                  type: string
                  description: The permissions required for this API. Must be "https://rbm.vibes.com/rbm.agents"
                  examples:
                  - https://rbm.vibes.com/rbm.agents
components:
  schemas:
    TokenResponse:
      type: object
      description: Object containing an OAuth 2.0 access token and related data
      id: TokenResponse
      properties:
        access_token:
          description: The alphanumeric token to be used in the "Bearer" authorization header.
          type: string
        expires_in:
          description: The time in seconds before token validity expires.
          type: integer
        token_type:
          description: The type of token returned by the service. Defaults to "Bearer".
          type: string
    Empty:
      type: object
      description: Empty message.
      id: Empty
      properties: {}
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
x-readme:
  explorer-enabled: true
  proxy-enabled: true