NexTag.com Keyword Suggest Scraper
In writing the short script for this post I learned that NexTag.com is the holy grail of keyword suggest results. Most sites limit there suggestions to about 10, where as NexTag.com returns 100! That's truly amazing and great for us.
Let's cut to the chase. Here's the script:
#/bin/bash # This script will scrape NexTag.com's keyword suggestion tools. query=$1 f_query=$(echo "$query" | sed 's/ /%20/g') curl -s "http://www.nextag.com/buyer/opensearch.jsp?suggest=complete&perpage=100&search=$f_query" | sed 's/\[//g;s/\]//g;s/","/\n/g;s/"//g' echo
You run it like this:
bash nextag.com.sh "shoes"
Then enjoy the results!
If you have any questions or feedback please leave a comment. Otherwise, happy automation.












