Cvent Social Tables Authentication API

The Authentication API from Cvent Social Tables — 1 operation(s) for authentication.

Operations 2

POST /4.0/oauth/token Request an OAuth bearer token
GET /4.0/oauth/token Get information about the current OAuth bearer token as-supplied in headers

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/cvent-social-tables-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

cvent-social-tables-authentication-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Social Tables API Gateway Authentication API
  version: 4.0.0
  description: The Social Tables API
servers:
- url: https://api.socialtables.com/
tags:
- name: Authentication
paths:
  /4.0/oauth/token:
    post:
      summary: Request an OAuth bearer token
      tags:
      - Authentication
      parameters:
      - name: Content-Type
        description: content type
        in: header
        schema:
          type: string
      - name: Accept
        description: content type
        in: header
        schema:
          type: string
      responses:
        '200':
          description: success
      requestBody:
        content:
          application/x-www-form-urlencoded:
            schema:
              type: object
              properties:
                client_id:
                  type: string
                  description: OAuth client ID
                client_secret:
                  type: string
                  description: OAuth client secret - required for password and client_credentials flows
                grant_type:
                  type: string
                  enum:
                  - authorization_code
                  - password
                  - client_credentials
                  - refresh_token
                  description: OAuth grant type
                code:
                  type: string
                  description: Authorization code for authorization_code grants
                refresh_token:
                  type: string
                  description: Refresh token for refresh_token grants
                username:
                  type: string
                  description: Username (email) for password grants
                password:
                  type: string
                  description: Password for password grants
              required:
              - client_id
              - client_secret
              - grant_type
    get:
      summary: Get information about the current OAuth bearer token as-supplied in headers
      tags:
      - Authentication
      security:
      - oauth2:
        - authenticated
      responses:
        '200':
          description: success
components:
  securitySchemes:
    oauth2:
      type: oauth2
      flows:
        authorizationCode:
          scopes:
            authenticated: any authentication whatsoever
            create:oauth_client: oauth client create
            userdata: All of the things.
          authorizationUrl: https://auth.socialtables.com/oauth/authorize
          tokenUrl: https://auth.socialtables.com/oauth/token
      description: OAuth
    user_token:
      type: apiKey
      name: user_token
      in: header
      description: Social Tables User Token
    partner_token:
      type: apiKey
      name: partner_token
      in: header
      description: Social Tables Partner Token