Certainly! Below is a basic README for the provided code snippet:
This Node.js application provides a simple wrapper for the Google Image Search API, allowing users to perform image searches and retrieve results.
- Clone the repository:
git clone https://github.com/caliph91/google-image-api.git
- Navigate into the project directory:
cd google-image-api
- Install dependencies:
npm install
- Image Search:
- Performs a Google Image Search based on the query parameters.
- /search Endpoint:
- Query Parameters:
q
: The search query (required).nsfw
: Whether to include NSFW content (true
orfalse
). Defaults tofalse
.
- Query Parameters:
-
Successful Response:
- Returns a JSON response with status
200
and an array of image results.
{ "status": 200, "count": 10, "result": [ { "url": "https://example.com/image.jpg", "width": 800, "height": 600 }, { "url": "https://example.com/image2.jpg", "width": 1200, "height": 900 }, ... ] }
- Returns a JSON response with status
-
Error Response:
- Returns a JSON response with status
400
and an error message if theq
parameter is missing.
{ "status": 400, "message": "Missing param 'q'" }
- Returns a JSON response with status
This project is licensed under the MIT License - see the LICENSE file for details.
Feel free to adjust and expand this README based on additional features, setup instructions, or any other relevant information specific to your project!