The Screenshot API You Can Depend On. Since 2012, Urlbox has replaced unreliable, inaccurate and inconsistent screenshot APIs for developers like you.
Emit new event when a new batch is completed in OpenAI. See the documentation
Emit new event when a new file is created in OpenAI. See the documentation
Emit new event when a new fine-tuning job is created in OpenAI. See the documentation
Emit new event every time a run changes its status. See the documentation
Generate a screenshot of a website provided by a html. See the docs here
The Chat API, using the gpt-3.5-turbo
or gpt-4
model. See the documentation
Generate a screenshot of a website provided by a url. See the docs here
Summarizes text using the Chat API. See the documentation
Classify items into specific categories using the Chat API. See the documentation
The Urlbox.io API lets you capture live, high-quality screenshots of web pages programmatically, offering a range of customization options such as setting the viewport size, format, and full-page capture. On Pipedream, this powerful tool can be integrated into workflows to automate screenshot capture for archiving, monitoring, and reporting tasks, or as part of a larger data collection and analysis pipeline.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
urlbox_io: {
type: "app",
app: "urlbox_io",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.urlbox.io/v1/${this.urlbox_io.$auth.publishable_key}/png`,
params: {
url: `pipedream.com`,
},
})
},
})
OpenAI provides a suite of powerful AI models through its API, enabling developers to integrate advanced natural language processing and generative capabilities into their applications. Here’s an overview of the services offered by OpenAI's API:
Use Python or Node.js code to make fully authenticated API requests with your OpenAI account:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
openai: {
type: "app",
app: "openai",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.openai.com/v1/models`,
headers: {
Authorization: `Bearer ${this.openai.$auth.api_key}`,
},
})
},
})