Skip to main content
POST
/
inspo
/
{inspoId}
/
videos
/
download
Download scraped videos
curl --request POST \
  --url https://rawugc.com/api/v1/inspo/{inspoId}/videos/download \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "max": 25
}'
{
  "success": true,
  "downloaded": 123,
  "total": 123,
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

Use your API key from the RawUGC dashboard. Include as: Authorization: Bearer YOUR_API_KEY

Path Parameters

inspoId
string
required

Inspo project ID

Body

application/json
max
integer
default:50

Maximum number of videos to download

Required range: 1 <= x <= 100

Response

Videos downloaded successfully

success
boolean
downloaded
number

Number of videos successfully downloaded

total
number

Total number of videos attempted

message
string