API Documentation

Integrate RedNote and Kuaishou video downloading into your applications

Basic Plan

$9.90
  • 600 API calls
  • No expiration
  • HD video quality
  • No watermarks
Get Started

Pro Plan

$19.90
  • 1,000 API calls
  • No expiration
  • HD video quality
  • No watermarks
  • Priority support
Get Started

API Endpoint

Supports both RedNote and Kuaishou video downloads

RedNote:
POST https://rednotetoolsonline.com/api/rednote/parse
Kuaishou:
POST https://rednotetoolsonline.com/api/kuaishou/parse

Request Headers

Content-Type: application/json
Authorization: Bearer YOUR_API_KEY

Request Body

RedNote Example:
{
  "url": "https://www.xiaohongshu.com/explore/..."
}
Kuaishou Example:
{
  "url": "https://www.kuaishou.com/short-video/..."
}

Response

Response format is the same for both RedNote and Kuaishou

{
  "success": true,
  "content": {
    "type": "video",  // or "images" for image posts
    "title": "Video Title",
    "videoUrl": "https://...",  // for video type
    "imageUrls": ["https://..."],  // for images type
    "author": "Author Name",
    "coverUrl": "https://..."
  }
}