Go-UPC

The World's Largest Barcode Database. Find more products by UPC, EAN, and ISBN than anywhere else on the Web.

Go to site
Explore
/
Apps
/
Go-UPC

Go-UPC API Integrations

Build and run workflows using the Go-UPC API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    go_upc: {
      type: "app",
      app: "go_upc",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://go-upc.com/api/v1/code/{your_upc_code}`,
      headers: {
        Authorization: `Bearer ${this.go_upc.$auth.api_key}`,
      },
    })
  },
})

Authentication

Go-UPC uses API keys for authentication. When you connect your Go-UPC account, Pipedream securely stores the keys so you can easily authenticate to Go-UPC APIs in both code and no-code steps.

Sign in and copy your API key directly from your dashboard.