DEV Community

Bret
Bret

Posted on

Can I access Airtable data from Firebase in my react app?

I have my data being created in Airtable, and I have my user login using firebase.

I want users to be able to “save” data to their profiles of products that’s from Airtable.

To save products they use or want to buy again.

But, how can I access those products to display?

Top comments (1)

Collapse
 
gr3g profile image
Greg Motyl

Hi,

I never used Airtable but quick look at their website shows they provide API for your data (airtable.com/api). This should be pretty straight forward to consume it in your React app. Just make a GET request from useEffect hook.
If you need detailed answer please share some code snippets. What have you tried so far?
BR
Greg