Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we
store it to create your key and to recognise you if you sign in with another
provider. See our Privacy Policy and
Terms.
openapi: 3.2.0
info:
title: Integry Apps 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: Apps
paths:
/apps/list:
post:
summary: List apps
description: List apps available within the Integry workspace.
operationId: listApps
responses:
'200':
description: A list of apps.
tags:
- Apps
/apps/{app_name}/get:
post:
summary: Get app
description: Retrieve metadata for a single app by name.
operationId: getApp
parameters:
- name: app_name
in: path
required: true
schema:
type: string
responses:
'200':
description: App metadata.
tags:
- Apps
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.