Integry Functions API

The Functions API from Integry — 4 operation(s) for functions.

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/integry-functions-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

integry-functions-api-openapi.yml Raw ↑
openapi: 3.0.3
info:
  title: Integry Apps Functions API
  description: Integry is an embedded integration platform that lets SaaS companies offer native integrations to their users. The API exposes apps, functions, and flows used to predict, list, retrieve, and call integration functions on behalf of end users.
  version: '1.0'
  contact:
    name: Integry
    url: https://docs.integry.ai
servers:
- url: https://api.integry.io
  description: Integry production API
security:
- AppKey: []
  UserID: []
  Hash: []
tags:
- name: Functions
paths:
  /functions/list:
    post:
      summary: List functions
      description: List functions available for the authenticated user.
      operationId: listFunctions
      responses:
        '200':
          description: A list of functions.
      tags:
      - Functions
  /functions/predict:
    post:
      summary: Predict functions
      description: Predict the most relevant functions for a user prompt or query.
      operationId: predictFunctions
      responses:
        '200':
          description: Predicted functions.
      tags:
      - Functions
  /functions/{function_name}/get:
    post:
      summary: Get function
      description: Retrieve a single function by name.
      operationId: getFunction
      parameters:
      - name: function_name
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Function definition.
      tags:
      - Functions
  /functions/{function_name}/call:
    post:
      summary: Call function
      description: Execute the named function for the authenticated user.
      operationId: callFunction
      parameters:
      - name: function_name
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Function execution result.
      tags:
      - Functions
components:
  securitySchemes:
    AppKey:
      type: apiKey
      in: header
      name: App-Key
      description: Integry application key.
    UserID:
      type: apiKey
      in: header
      name: User-ID
      description: End user identifier within the Integry workspace.
    Hash:
      type: apiKey
      in: header
      name: Hash
      description: HMAC SHA256 hash of the User-ID using the App-Secret.