Skip to content

Quick Start

Get your first SERP response in less than 5 minutes. Follow these simple steps to integrate Just Serp API into your application.

1. Register an Account

Visit our Official Site and sign up for a new account. Upon registration, your account will be automatically credited with free Credits so you can start testing immediately.

2. Get Your API Key

Once logged in, navigate to the API Keys section in your dashboard. You can use the default key or create a new one. Remember to keep your API key secure.

3. Make Your First Request

Use your favorite tool (curl, Postman, or any programming language) to make a request. All requests must include your API key in the X-API-Key header.

Example Request (curl)

bash
curl -X GET "https://api.justserpapi.com/v1/google/search?q=coffee" \
     -H "X-API-Key: YOUR_API_KEY"

Example Response

json
{
  "search_parameters": {
    "q": "coffee",
    "engine": "google"
  },
  "organic_results": [
    {
      "position": 1,
      "title": "Coffee - Wikipedia",
      "link": "https://en.wikipedia.org/wiki/Coffee",
      "snippet": "Coffee is a brewed drink prepared from roasted coffee beans..."
    }
  ]
}

Next Steps