What do you want to automate

with Firefish and Addressfinder?

Prompt, edit and deploy AI agents that connect to Firefish, Addressfinder and 2,500+ other apps in seconds.

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Verify Australian Address with Addressfinder API on New Candidate Created from Firefish API
Firefish + Addressfinder
 
Try it
Verify Australian Address with Addressfinder API on New Contact Created from Firefish API
Firefish + Addressfinder
 
Try it
Verify Email with Addressfinder API on New Candidate Created from Firefish API
Firefish + Addressfinder
 
Try it
Verify Email with Addressfinder API on New Contact Created from Firefish API
Firefish + Addressfinder
 
Try it
Verify New Zealand Address with Addressfinder API on New Candidate Created from Firefish API
Firefish + Addressfinder
 
Try it
New Candidate Created from the Firefish API

Emit new event when a new candidate is created. See the documentation

 
Try it
New Contact Created from the Firefish API

Emit new event when a new contact is created. See the documentation

 
Try it
Verify Australian Address with the Addressfinder API

Validates an Australian address. See the documentation

 
Try it
Verify Email with the Addressfinder API

Validates the input email. See the documentation

 
Try it
Unsubscribe Email with the Firefish API

Removes a particular contact or candidate from all existing firefish email subscriptions. See the documentatio

 
Try it
Verify New Zealand Address with the Addressfinder API

Validates a New Zealand address. See the documentation

 
Try it
Integrate the Firefish API with the Addressfinder API
Setup the Firefish API trigger to run a workflow which integrates with the Addressfinder API. Pipedream's integration platform allows you to integrate Firefish and Addressfinder remarkably fast. Free for developers.

Connect Firefish

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: {
    firefish: {
      type: "app",
      app: "firefish",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.firefishsoftware.com/api/v1.0/contacts/search/`,
      headers: {
        Authorization: `Bearer ${this.firefish.$auth.oauth_access_token}`,
      },
    })
  },
})

Connect Addressfinder

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    addressfinder: {
      type: "app",
      app: "addressfinder",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.addressfinder.io/api/email/v1/verification/`,
      headers: {
        "Authorization": `${this.addressfinder.$auth.secret}`,
      },
      params: {
        key: `${this.addressfinder.$auth.key}`,
        email: `hello@addressfinder.com`,
        format: `json`,
      },
    })
  },
})

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo