with ContactOut and Data.Police.UK?
Get company profiles matching the search criteria. See the documentation
Get a list of police forces and contact information within a particular area. See the docs here
Get profiles of key decision makers within a specified company. See the documentation
Find LinkedIn profile from email address. See the documentation
Get profile details for a LinkedIn profile using either a LinkedIn URL or email address. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
contactout: {
type: "app",
app: "contactout",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.contactout.com/v1/stats`,
headers: {
"token": `${this.contactout.$auth.api_key}`,
},
params: {
period: `2025-06`,
},
})
},
})
The Data.Police.UK API provides access to a wide array of UK crime data, allowing users to query information about street-level crimes, outcomes, and the location of police stations. You can leverage this data within Pipedream to build automated workflows that react to new data, analyze crime trends, or integrate with other services to enhance public awareness and safety. With Pipedream, you can create serverless workflows that connect Data.Police.UK API with other apps to streamline tasks, generate reports, or trigger alerts based on crime data.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
data_police_uk: {
type: "app",
app: "data_police_uk",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://data.police.uk/api/forces`,
})
},
})