Advertisement
dereksir

Untitled

Jul 21st, 2023
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const axios = require('axios');
  2.  
  3. const url = 'https://www.opensea.io/';
  4. const apikey = 'Your_API_Key';
  5. axios({
  6.     url: 'https://api.zenrows.com/v1/',
  7.     method: 'GET',
  8.     params: {
  9.         'url': url,
  10.         'apikey': apikey,
  11.         'js_render': 'true',
  12.         'antibot': 'true',
  13.         'premium_proxy': 'true',
  14.     },
  15. })
  16.     .then(response => console.log(response.data))
  17.     .catch(error => console.log(error));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement