https://github.com/yukari0371/monsnode-scraper
Scraper for monsnode
https://github.com/yukari0371/monsnode-scraper
monsnode twitter
Last synced: 7 days ago
JSON representation
Scraper for monsnode
- Host: GitHub
- URL: https://github.com/yukari0371/monsnode-scraper
- Owner: yukari0371
- License: mit
- Created: 2025-02-26T08:15:35.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-14T10:38:47.000Z (over 1 year ago)
- Last Synced: 2025-03-24T04:41:44.606Z (over 1 year ago)
- Topics: monsnode, twitter
- Language: TypeScript
- Homepage:
- Size: 81.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# monsnode-scraper
Scraper for monsnode
### Usage
```ts
import monsnode from "./dist/index.js";
(async() => {
const result = await monsnode.getRandom();
if (result.status === "error") {
console.error("Error:", result.message);
} else {
console.log(result);
}
const _result = await monsnode.search("banana");
if (_result.status === "error") {
console.error("Error":, _result.message);
} else {
console.log(_result)
}
})();
```
### Result
```
{
success: true,
tweetUrl: 'https://x.com/shachikuchan69/status/1871487189118533766',
videoImage: 'https://pbs.twimg.com/amplify_video_thumb/1871487131337842688/img/8PvstdYSNM2VsnpW.jpg',
videoUrl: 'https://video.twimg.com/amplify_video/1871487131337842688/vid/avc1/720x1280/hs7f2cTq1C2DAJTo.mp4?tag=16'
}
{
success: true,
data: [
{ video: [Object] },
{ video: [Object] },
{ video: [Object] }...
]
}
```