A self-hosted Search Engine Results Page (SERP) API for retrieving search results from Google.
- Search Google and get results in JSON format
- Free to use with no API key required
- Configurable number of results, language, and country
- Easy deployment on AWS Lightsail Ubuntu VM (running on port 7777)
- Automatic SSL setup with Let's Encrypt
- AWS Lightsail Ubuntu VM
- Domain name (serp.sdad.pro) with DNS pointing to your VM's IP address
- Basic knowledge of Linux commands
- Connect to your AWS Lightsail Ubuntu VM via SSH:
ssh ubuntu@your-lightsail-ip
- Clone or copy the project files to your VM:
mkdir -p ~/serp-api-setup
cd ~/serp-api-setup
# Copy all files to this directory
- Make the setup script executable:
chmod +x setup.sh
- Update the paths in the setup script:
nano setup.sh
# Update the paths to point to your actual file locations
- Run the setup script:
./setup.sh
- Follow the prompts to complete the installation.
If the automated script fails, you can follow these manual steps:
- Update system packages:
sudo apt update
sudo apt upgrade -y
- Install required packages:
sudo apt install -y python3-pip python3-venv nginx certbot python3-certbot-nginx
- Create project directory:
mkdir -p ~/serp-api
cd ~/serp-api
- Copy project files:
# Copy the files to the project directory
- Create and activate virtual environment:
python3 -m venv venv
source venv/bin/activate
- Install dependencies:
pip install --upgrade pip
pip install -r requirements.txt
- Set up systemd service:
sudo cp serp-api.service /etc/systemd/system/
sudo systemctl daemon-reload
sudo systemctl enable serp-api
sudo systemctl start serp-api
- Set up Nginx:
sudo cp serp.sdad.pro /etc/nginx/sites-available/
sudo ln -sf /etc/nginx/sites-available/serp.sdad.pro /etc/nginx/sites-enabled/
sudo nginx -t
sudo systemctl restart nginx
- Set up SSL with Let's Encrypt:
sudo certbot --nginx -d serp.sdad.pro
GET /search?query=example&num_results=10&language=en&country=us
Parameters:
query
: Search query (required)num_results
: Number of results to return (default: 10)language
: Language code (default: en)country
: Country code (default: us)
POST /search
Content-Type: application/json
{
"query": "example",
"num_results": 10,
"language": "en",
"country": "us"
}
{
"query": "example",
"results_count": 10,
"results": [
{
"title": "Example Title",
"link": "https://example.com",
"snippet": "This is an example snippet from the search results..."
},
...
]
}
sudo systemctl status serp-api
sudo journalctl -u serp-api
sudo tail -f /var/log/nginx/access.log
sudo tail -f /var/log/nginx/error.log
tail -f ~/serp/serp_api.log
- Consider implementing rate limiting for production use
- Regularly update dependencies for security patches
- Use HTTPS for all API requests in production
This project is licensed under the MIT License - see the LICENSE file for details.