with MythicText and BuiltWith?
Get the relationships of a domain with other websites. See the documentation
Retrieve the technology information of a website. See the documentation
Get websites associated with a social media URL. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
mythictext: {
type: "app",
app: "mythictext",
}
},
async run({ steps, $ }) {
const body = "# Hello World";
const { data } = await axios($, {
method: "POST",
url: "https://mythictext-api.vercel.app/convert",
headers: {
"Content-Type": "text/plain",
"X-Output-Target": "gmail",
"X-API-Key": this.mythictext.$auth.api_key
},
data: body
});
return data;
},
})
The BuiltWith API on Pipedream lets you tap into the details of the technologies used by websites across the internet. With this API, you can find out what tools and frameworks are powering different sites, uncover technology trends, or enrich your CRM with tech stack data. When you combine this with Pipedream's ability to connect to 3,000+ other apps, you can automate workflows that react to this technology intelligence in real-time.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
builtwith: {
type: "app",
app: "builtwith",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.builtwith.com/v20/api.json`,
params: {
KEY: `${this.builtwith.$auth.api_key}`,
LOOKUP: `https://pipedream.com`,
},
})
},
})