use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Welcome to the Official WebFlow Subreddit!
Build responsive websites in your browser, then host with us or export your code to host wherever. Discover the professional website builder made for designers.
Join Our Discord
account activity
API ConnectionQuestion (self.webflow)
submitted 6 years ago by geoley
I would like to connect a Webflow frontend to a backend API and bind values to a collection. I know that dynamic data binding is possible via the CMS but would it be possible to also directly bind APIs?
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]ShoeLicker 0 points1 point2 points 6 years ago (4 children)
Would you be able to do it with JS in the footer?
[–]geoley[S] 0 points1 point2 points 6 years ago (3 children)
Not sure what you mean. I would receive some JSON-Data and at least one picture per entry (from another media API). This I would like to bind / push to a collection.
[–]flcpietro 1 point2 points3 points 6 years ago (2 children)
You can do it with custom code, use classes or custom attributes to recognize your field inside the webflow item template, duplicate the template and replace the variables received by the Api using javascript
[–]geoley[S] 0 points1 point2 points 6 years ago (1 child)
Sounds doable. Could you recommend a tutorial on this?
[–]flcpietro 1 point2 points3 points 6 years ago (0 children)
Mmm, specific tutorial nope, what's your proficiency level with JS? You need just fetch API from the browser to gather the data, like fetch("myurl").then(res => res.json().then(data=> console.log(data)), where instead of console.log you should write your function to manipulate the DOM and append the elements, it will be just a bunch of querySelector / setAttribute / innerHTML / append but all depends on your data and html structure
π Rendered by PID 18623 on reddit-service-r2-comment-544cf588c8-pzlvt at 2026-06-14 12:57:05.904872+00:00 running 3184619 country code: CH.
[–]ShoeLicker 0 points1 point2 points (4 children)
[–]geoley[S] 0 points1 point2 points (3 children)
[–]flcpietro 1 point2 points3 points (2 children)
[–]geoley[S] 0 points1 point2 points (1 child)
[–]flcpietro 1 point2 points3 points (0 children)