get https://api.web3shards.io/v1/projects/search
Returns a list of projects with detailed market statistics for matching queries.
"use strict";
const Shards = require("web3-shards");
const shards = Shards.API.Ethereum.V1;
shards.configure({
apiKey: "YOUR_API_KEY", // Join the discord to get your api key. https://discord.com/invite/kJd8W7Nh7e
maxRequestsPerSecond:5, // client-side limiter to prevent accidental burning
logger: 1 // 0=none,1=errors,2=verbose
});
const getResults = async function() {
const query = "gem";
const resp = await shards.projects.searchProject(query);
console.log(resp)
}
getResults();