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.
Call it yourself
curl for this page
This API
curl "https://apis.io/api/v1/apis/hotglue-jobs-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 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.
A second provider on the same verified email joins the account you already have.
OpenAPI Specification
openapi: 3.2.0
info:
title: Hotglue API V2 Connector Metadata Jobs API
description: The Hotglue API v2 enables programmatic management of embedded integrations including linked connectors, flow configurations, job execution, tenant management, and connector state for SaaS product integrations.
version: '2.0'
contact:
name: Hotglue Support
url: https://docs.hotglue.com
servers:
- url: https://api.hotglue.com
description: Hotglue Production API
security:
- ApiKeyAuth: []
tags:
- name: Jobs
description: Run jobs for linked connectors.
paths:
/v2/{env_id}/{flow_id}/{tenant}/jobs:
parameters:
- $ref: '#/components/parameters/EnvId'
- $ref: '#/components/parameters/FlowId'
- $ref: '#/components/parameters/Tenant'
post:
tags:
- Jobs
summary: Run a job
operationId: runJob
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/RunJobRequest'
responses:
'200':
description: Job created.
content:
application/json:
schema:
$ref: '#/components/schemas/Job'
'400':
$ref: '#/components/responses/BadRequest'
components:
parameters:
Tenant:
name: tenant
in: path
required: true
schema:
type: string
description: Tenant identifier.
FlowId:
name: flow_id
in: path
required: true
schema:
type: string
description: Flow identifier.
EnvId:
name: env_id
in: path
required: true
schema:
type: string
description: Environment identifier.
schemas:
Job:
type: object
properties:
job_id:
type: string
env_id:
type: string
flow_id:
type: string
job_name:
type: string
tenant:
type: string
started_by:
type: string
s3_root:
type: string
start_time:
type: string
state:
type: object
tap:
type: string
status:
type: string
enum:
- JOB_CREATED
- DISCOVER_STARTED
- DISCOVER_FAILED
- SYNC_STARTED
- SYNC_FAILED
- SYNC_SUCCESS
- ETL_STARTED
- ETL_FAILED
- ETL_SUCCESS
- EXPORT_STARTED
- EXPORT_FAILED
- JOB_COMPLETED
scheduled_job:
type: boolean
message:
type: string
last_updated:
type: string
processed_rows:
type: integer
RunJobRequest:
type: object
required:
- connector_id
- job_type
properties:
connector_id:
type: string
job_type:
type: string
enum:
- read
- write
job_name:
type: string
override_start_date:
type: string
override_end_date:
type: string
reset_source_state:
type: boolean
override_selected_tables:
type: array
items:
type: string
override_source_config:
type: object
override_target_config:
type: object
override_connector_config:
type: object
override_field_map:
type: object
environment_variables:
type: object
state:
type: object
streaming_job:
type: boolean
ignore_parallel_jobs:
type: boolean
responses:
BadRequest:
description: Bad request.
content:
application/json:
schema:
type: object
securitySchemes:
ApiKeyAuth:
type: apiKey
in: header
name: x-api-key
externalDocs:
description: Hotglue API Reference v2
url: https://docs.hotglue.com/api-reference/v2