Typeface Provisioning Service API

The Provisioning Service API from Typeface — 1 operation(s) for provisioning service.

Operations 1

GET /provisioning-service/accounts/{accountId}/users Get team users #

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

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

OpenAPI Specification

typeface-provisioning-service-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Typeface Audiences Provisioning Service API
  version: v0
servers:
- url: https://api-us.typeface.ai
  description: Generated server url
security:
- BearerAuth: []
tags:
- name: Provisioning Service
paths:
  /provisioning-service/accounts/{accountId}/users:
    get:
      summary: Get team users
      description: This endpoint retrieves a list of users associated with a specified account.
      operationId: getUsers
      parameters:
      - name: accountId
        in: path
        description: The unique ID of the account.
        required: true
        schema:
          type: string
      security:
      - BearerAuth: []
      responses:
        '200':
          description: Successfully retrieved the list of users in the account.
          content:
            application/json:
              schema:
                type: object
                properties:
                  users:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          description: The unique ID of the user.
                          example: 2f16xxyy-4cf5-cdfgh-12345-2fd33c0
                        name:
                          type: string
                          description: The full name of the user.
                          example: John Smith
                        picture:
                          type: string
                          format: uri
                          description: The URL to the user's profile picture.
                          example: https://lh3.googleusercontent.com/a/ACg8ocI13iPx88lEsHuJvs6ByjxylztNn5RaLyHZciONsdsTsg7YcA=s96-c
                        email:
                          type: string
                          description: The email address of the user.
                          example: john@smith.io
                        userRole:
                          type: string
                          description: The role of the user within the account.
                          enum:
                          - OWNER
                          - MEMBER
                          example: OWNER
                    example:
                    - id: 2f16xxyy-4cf5-cdfgh-12345-2fd33c0
                      name: John Smith
                      picture: https://lh3.googleusercontent.com/a/ACg8ocI13iPx88lEsHuJvs6ByjxylztNn5RaLyHZciONsdsTsg7YcA=s96-c
                      email: john@smith.io
                      userRole: OWNER
        '400':
          description: Bad request due to invalid parameters or malformed request.
        '500':
          description: Internal server error.
      tags:
      - Provisioning Service
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
x-readme:
  explorer-enabled: true
  proxy-enabled: true