Typeface Authentication API

The Authentication API from Typeface — 3 operation(s) for authentication.

Operations 3

POST /oauth2/token Get access token
POST /identity-service/applications Create Application #
POST /identity-service/applications/{applicationId}/keys/{ordinal}/rotate Rotate Application Secret #

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/typeface-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 email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

typeface-authentication-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Typeface Audiences Authentication API
  version: v0
servers:
- url: https://api-us.typeface.ai
  description: Generated server url
security:
- BearerAuth: []
tags:
- name: Authentication
paths:
  /oauth2/token:
    post:
      security: []
      summary: Get access token
      description: "This API endpoint allows authorized client applications to obtain an access token using their Application credentials. The access token is required to authenticate and authorize requests to other Typeface AI API endpoints. \n\n**Token Expiration & Renewal**:  Access tokens are valid for one hour.\n\nTo maintain uninterrupted access to Typeface AI APIs, client applications should implement a mechanism to:\n  - *Periodically Refresh*: Automatically fetch a new access token before\n  the current one expires.\n  - *Error-Based Refresh*: Fetch a new access token when encountering a 401\n  Unauthorized error, indicating token expiration."
      tags:
      - Authentication
      requestBody:
        content:
          application/x-www-form-urlencoded:
            schema:
              type: object
              required:
              - grant_type
              - applicationId
              - applicationSecret
              - tenantId
              properties:
                grant_type:
                  type: string
                  enum:
                  - client_credentials
                applicationId:
                  type: string
                applicationSecret:
                  type: string
                tenantId:
                  type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  access_token:
                    type: string
                  token_type:
                    type: string
                  expires_in:
                    type: integer
  /identity-service/applications:
    post:
      tags:
      - Authentication
      operationId: registerApplication
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateApplicationRequestBody'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreateApplicationResponseBody'
      summary: Create Application
  /identity-service/applications/{applicationId}/keys/{ordinal}/rotate:
    post:
      tags:
      - Authentication
      operationId: rotateApplicationSecret
      parameters:
      - name: applicationId
        in: path
        required: true
        schema:
          type: string
      - name: ordinal
        in: path
        required: true
        schema:
          type: string
          enum:
          - PRIMARY
          - SECONDARY
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RotateApplicationKeyRequestBody'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RotateApplicationKeyResponseBody'
      summary: Rotate Application Secret
components:
  schemas:
    RotateApplicationKeyRequestBody:
      type: object
    CreateApplicationRequestBody:
      type: object
      properties:
        displayName:
          type: string
        contactEmailId:
          type: string
        scopes:
          type: array
          items:
            type: string
        redirectUris:
          type: array
          items:
            type: string
        grantTypes:
          type: array
          items:
            type: string
    CreateApplicationResponseBody:
      type: object
      properties:
        applicationId:
          type: string
        displayName:
          type: string
        credentials:
          type: array
          items:
            $ref: '#/components/schemas/ApplicationCredential'
    ApplicationCredential:
      type: object
      properties:
        ordinal:
          type: string
          enum:
          - PRIMARY
          - SECONDARY
        applicationSecret:
          type: string
    RotateApplicationKeyResponseBody:
      type: object
      properties:
        applicationId:
          type: string
        credential:
          $ref: '#/components/schemas/ApplicationCredential'
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
x-readme:
  explorer-enabled: true
  proxy-enabled: true