Open data about crime and policing in England, Wales and Northern Ireland.
Emit new event when a new crime is reported in a specific area.
Emit new event when a specific street level crime is updated.
Emit new event when a ticket is added to the specified view
Emit new event when a ticket has changed to closed status
Get a list of police forces and contact information within a particular area. See the docs here
Access the specific outcomes of reported crimes within a given location and date range. See the docs here
Obtain crime data for a specific location and date range. See the docs here
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`,
})
},
})
The Zendesk API enables seamless integration of Zendesk's customer service platform with your existing business processes and third-party applications. By leveraging this API with Pipedream, you can automate ticket tracking, sync customer data, escalate issues, and streamline communication across multiple channels. This can significantly increase efficiency, accelerate response times, and enhance the overall customer experience. Automations can range from simple notifications to complex workflows involving data transformation and multi-step actions across various services.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
zendesk: {
type: "app",
app: "zendesk",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.zendesk.$auth.subdomain}.zendesk.com/api/v2/users/me/`,
headers: {
Authorization: `Bearer ${this.zendesk.$auth.oauth_access_token}`,
},
})
},
})