YouTube Transcript Ninja ⚑️πŸ₯·βš‘ avatar
YouTube Transcript Ninja ⚑️πŸ₯·βš‘

Pricing

$10.00 / 1,000 results

Go to Store
YouTube Transcript Ninja ⚑️πŸ₯·βš‘

YouTube Transcript Ninja ⚑️πŸ₯·βš‘

Developed by

Moses Bilal

Moses Bilal

Maintained by Community

Extract transcripts from YouTube videos with ease! This actor takes a YouTube video URL as input and returns the transcript of the video in the specified format.

5.0 (4)

Pricing

$10.00 / 1,000 results

345

Total users

3.4K

Monthly users

812

Runs succeeded

>99%

Issues response

21 hours

Last modified

3 months ago

KR

NO OUTPUT GENERATED

Closed

karanjatevin5 opened this issue
7 days ago

I have been trying to scrap a youtube video using n8n but when running am getting the error "Is not a valid URL(s) or JSON input. You must provide a valid URL(s) or you can reach out to me for technical support"

topaz_sharingan avatar

You provided an invalid JSON input options. Please remove the empty spaces in the first value of the β€˜startUrls’ array.

So, instead of:

{
"includeTimestamps": "No",
"language": "Default",
"startUrls": [
" https://www.youtube.com/watch?v=SDW7J_vFpDM "
]
}

the input should be

{
"includeTimestamps": "No",
"language": "Default",
"startUrls": [
"https://www.youtube.com/watch?v=SDW7J_vFpDM"
]
}
KR

karanjatevin5

6 days ago

Thanks its working