automatically add images from DeviantArt Twitter Tumblr ect?

OK, so this will take some explaining. I’m making a fan site for Jacksepticeye and i want it to automatically update with fan art. the four main sites fans are on are Twitter, Tumblr, deviant art and Instagram, and on all sites fans use the hashtag #septicart.
what i want to know is if its possible to use Wix’s features or code to

  1. take all images,videos and gifs from all these sites with this hashtag
  2. cross-reference them and remove doubles (in the case that it was uploaded on multiple sites)
  3. present them in a gallery or similar with links to all original sites.

The second one isn’t necessary but i would prefer it if i could.
If it is possible could someone walk me through it or write the code and explain how I use it.
Thank you.

Hi Charlie,

Most if not all the sites you have mentioned provide a public API for fetching data.
For example Deviantart’s API can be found here Developers | DeviantArt

Typically, accessing API’s is done by calling fetch()
See more information regarding fetching data from 3rd party services in the link below

Once you retrieve the data, you will have to create a function to eliminate duplicates before adding it to your main data collection.

A word of caution: The system you are describing is quite complex and will be a challenge for beginner coders.
Feel free to post any questions here.

Good luck!
Ido