Requires a user auth token. See the API Auth section.
Searching Data
Requires 1 parameter: search
Mindplug offers a smart endpoint which will be expanded in the future. For now it provides basic google search from select sources.
import mindplug from "@/src/mindplugAPI"; // base instance
mindplug.post("/smart/web", {
search: "What are the best use cases of blockchain?"
});
Returns 3 matching results for the search query, including an image, url, title and description for the returned sources.
Sample Response
[
{
"image": "https://miro.medium.com/v2/resize:fit:1200/1*kT6_ISaSXPAHQErpA1nf4w.png",
"title": "Learn about alternative use cases for crypto | @blockchain",
"url": "https://medium.com/blockchain/6-crypto-use-cases-we-love-9c032755d4a6",
"description": "Nov 24, 2022 <b>...</b> 1. Charity ... As the popularity of <b>crypto</b> has grown, so has the desire to donate it. With charitable organizations starting to accept ...",
"isVideo": false
},
{
"image": "https://miro.medium.com/v2/resize:fit:960/1*s4mjd-QOqAmN7V8lXgI4hA.jpeg",
"title": "Building it Better: A Simple Guide to Blockchain Use Cases | by ...",
"url": "https://medium.com/blockchain-at-berkeley/building-it-better-a-simple-guide-to-blockchain-use-cases-de494a8f5b60",
"description": "Feb 5, 2018 <b>...</b> Criteria to Consider When Deciding on a <b>Blockchain Use Case</b> · 1. Database · 2. Transactors · 3. Trust · 4. Disintermediation · 5. Transaction ...",
"isVideo": false
},
{
"image": "https://miro.medium.com/v2/resize:fill:1200:632/g:fp:0.53:0.88/1*v53tXgDlzbteJjjY6fllxQ.jpeg",
"title": "Security Token Offerings (STOs) — The first great use case for ...",
"url": "https://medium.com/hv-capital/security-token-offerings-stos-the-first-great-use-case-for-blockchain-technology-1b9701acb070",
"description": "Apr 11, 2019 <b>...</b> Is <b>crypto</b> dead? likely. But STOs could prove to be the first real <b>use case</b> for <b>blockchain</b> technology.",
"isVideo": false
}
]