Typeface Provisioning API

The Provisioning API from Typeface — 2 operation(s) for provisioning.

Operations 2

POST /provisioning-service/account Create Team #
DELETE /provisioning-service/account/{accountId} Delete Team #

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-provisioning-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-provisioning-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Typeface Audiences Provisioning API
  version: v0
servers:
- url: https://api-us.typeface.ai
  description: Generated server url
security:
- BearerAuth: []
tags:
- name: Provisioning
paths:
  /provisioning-service/account:
    post:
      tags:
      - Provisioning
      operationId: createAccount
      parameters:
      - name: createSharedWorkspaces
        in: query
        required: false
        schema:
          type: boolean
          default: true
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateAccountRequestBody'
        required: true
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/CreateAccountResponseBody'
      summary: Create Team
      description: '**Note:** Ensure you use the appropriate API endpoint corresponding to the selected cloud provider to avoid errors.


        The available endpoints are listed below:

        - **AZURE**: https://api-us.typeface.ai

        - **GOOGLE**: https://api-us2.typeface.ai'
  /provisioning-service/account/{accountId}:
    delete:
      tags:
      - Provisioning
      operationId: deleteAccountById
      parameters:
      - name: accountId
        in: path
        required: true
        description: Unique identifier for the specific team
        schema:
          type: string
      responses:
        '200':
          description: OK
      summary: Delete Team
components:
  schemas:
    CreateAccountRequestBody:
      type: object
      properties:
        workspaceName:
          type: string
          deprecated: true
        displayName:
          type: string
        cloudProvider:
          type: string
          description: Specifies the cloud provider where the team's data and resources are hosted (either AZURE or GOOGLE).
          enum:
          - AZURE
          - GOOGLE
    CreateAccountResponseBody:
      type: object
      properties:
        accountId:
          type: string
        displayName:
          type: string
        createdAt:
          type: string
          format: date-time
        modifiedAt:
          type: string
          format: date-time
        createdBy:
          type: string
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
x-readme:
  explorer-enabled: true
  proxy-enabled: true