Yelp's API enables developers to access Yelp's vast collection of business data, including descriptions, user reviews, and more. With the help of the Yelp API, you can leverage the wealth of information within the Yelp network to create powerful applications and services.
There are countless possibilities for what you can create with the Yelp API, a few notable examples include:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
yelp: {
type: "app",
app: "yelp",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.yelp.com/v3/businesses/search`,
headers: {
Authorization: `Bearer ${this.yelp.$auth.api_key}`,
},
params: {
location: `san francisco, ca`,
},
})
},
})
Yelp uses API keys for authentication. When you connect your Yelp account, Pipedream securely stores the keys so you can easily authenticate to Yelp APIs in both code and no-code steps.
To retrieve your API key for Yelp,