superglue is a self-healing integration agent. You can deploy it as a proxy between you and any complex / legacy APIs and always get the data that you want in the format you expect.
Here's how it works: You prompt superglue in natural language (like "get all issues from jira"), provide an API URL, and superglue transforms the prompt into corresponding API calls. What superglue does under the hood:
- Automatically generates the API configuration by analyzing API docs.
- Handles pagination, authentication, and error retries.
- Creates deterministic transformations (using JSONata for creating transformation rules), into the exact schema you need.
- Validates that all data coming through follows that schema, and automatically fixes transformations when they break.
superglue uses LLMs only during configuration setup and transformation rule creation, making the glueing process deterministic and extremely efficient in terms of latency and cost.
If youβre spending a lot of time writing code connecting to weird APIs, fumbling with custom fields in foreign language ERPs, mapping JSONs, extracting data from compressed CSVs sitting on FTP servers, and making sure your integrations donβt break when something unexpected comes through, superglue might be for you.
-
Sign up for early access to the hosted version of superglue at superglue.ai
-
Install the superglue js/ts client:
npm install @superglue/client
- Configure your first api call:
import { SuperglueClient } from "@superglue/client";
const superglue = new SuperglueClient({
apiKey: "************"
});
const config = {
urlHost: "https://futuramaapi.com",
urlPath: "/graphql",
instruction: "get all characters from the show",
responseSchema: {
type: "object",
properties: {
characters: {
type: "array",
items: {
type: "object",
properties: {
name: { type: "string" },
species: { type: "string", description: "lowercased" }
}
}
}
}
}
};
const result = await superglue.call({endpoint: config});
console.log(JSON.stringify(result.data, null, 2));
/*
output:
{
"characters": [
{
"name": "Phillip J. Fry",
"species": "human"
},
...
]
}
*/
Run your own instance of superglue using Docker:
- Pull the Docker image:
docker pull superglueai/superglue
-
Create a
.env
by copying the.env.example
file at the root -
Start the server:
docker run -d \
--name superglue \
--env-file .env \
-p 3000:3000 \
-p 3001:3001 \
superglueai/superglue
- Verify the installation:
curl http://localhost:3000/health
> OK
# or open http://localhost:3000/?token=your-auth-token
- Open the dashboard to create your first configuration:
http://localhost:3001/
- run your first call:
npm install @superglue/client
import { SuperglueClient } from "@superglue/client";
const superglue = new SuperglueClient({
endpoint: "http://localhost:3000",
apiKey: "your-auth-token"
});
// either via config object
const config = {
urlHost: "https://futuramaapi.com",
urlPath: "/graphql",
instruction: "get all characters from the show",
};
const result = await superglue.call({endpoint: config});
// or via the api id if you have already created the endpoint
const result2 = await superglue.call({id: "futurama-api"});
console.log(JSON.stringify(result.data, null, 2));
- API Proxy: Configure APIs and intercept responses in real-time with minimal added latency
- LLM-Powered Data Mapping: Automatically generate data transformations using large language models
- Schema Validation: Ensure data compliance with your specified schemas
- File Processing: Handle various file formats (CSV, JSON, XML) with automatic decompression
- Flexible Authentication: Support for various auth methods including header auth, api keys, oauth, and more
- Smart Pagination: Handle different pagination styles automatically
- Caching & Retry Logic: Built-in caching and configurable retry strategies
For detailed documentation, visit docs.superglue.cloud.
We love contributions! Feel free to open issues for bugs or feature requests.
superglue is GPL licensed. The superglue client SDKs are MIT licensed. See LICENSE for details.
- π¬ Discord: Join our community
- π Issues: GitHub Issues