Typeface Profile Service API

The Profile Service API from Typeface — 2 operation(s) for profile service.

Operations 2

GET /profile-service/accounts/{accountId}/workflows Get Workflows #
GET /profile-service/accounts/{accountId}/workflows/{workflowId}/workflow-steps Get Workflow Steps #

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-profile-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-profile-service-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Typeface Audiences Profile Service API
  version: v0
servers:
- url: https://api-us.typeface.ai
  description: Generated server url
security:
- BearerAuth: []
tags:
- name: Profile Service
paths:
  /profile-service/accounts/{accountId}/workflows:
    get:
      summary: Get Workflows
      description: Retrieve the list of workflows associated with a specific account.
      operationId: getWorkflows
      parameters:
      - name: accountId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: A list of workflows associated with the account.
          content:
            application/json:
              schema:
                type: object
                properties:
                  workflows:
                    type: array
                    items:
                      $ref: '#/components/schemas/EntitySchema'
      security:
      - bearerAuth: []
      tags:
      - Profile Service
  /profile-service/accounts/{accountId}/workflows/{workflowId}/workflow-steps:
    get:
      summary: Get Workflow Steps
      description: Retrieve the steps/statuses of a specific workflow.
      operationId: getWorkflowsSteps
      parameters:
      - name: accountId
        in: path
        required: true
        schema:
          type: string
      - name: workflowId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: A list of steps/statuses in the specified workflow.
          content:
            application/json:
              schema:
                type: object
                properties:
                  workflowSteps:
                    type: array
                    items:
                      $ref: '#/components/schemas/EntitySchema'
      security:
      - bearerAuth: []
      tags:
      - Profile Service
components:
  schemas:
    EntitySchema:
      type: object
      properties:
        workspaceId:
          type: object
          properties:
            id:
              type: integer
          required:
          - id
        id:
          type: object
          properties:
            id:
              type: integer
          required:
          - id
        name:
          type: string
        sourcePath:
          type: string
        ingestionSource:
          type: string
        properties:
          type: object
          properties:
            orderedWorkflowStepIds:
              type: array
              items:
                type: integer
        createdAt:
          type: string
          format: date-time
        modifiedAt:
          type: string
          format: date-time
        createdBy:
          type: string
        modifiedBy:
          type: string
        renditionId:
          type: string
        ref:
          type: string
        entitySubType:
          type: string
        sourceId:
          type: string
        sourceType:
          type: string
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
x-readme:
  explorer-enabled: true
  proxy-enabled: true