Last updated: 2024-08-31
POST https://rednotetoolsonline.com/api/rednote/parse
Content-Type: application/json
{
"url": "https://www.xiaohongshu.com/explore/..."
}curl -X POST -H 'Content-Type: application/json' -d '{"url":"https://www.xiaohongshu.com/explore/..."}' https://rednotetoolsonline.com/api/rednote/parseconst res = await fetch('/api/rednote/parse', {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({ url })
});
const data = await res.json();POST https://rednotetoolsonline.com/api/rednote/download
Content-Type: application/json
{
"url": "https://..."
}