Google Gemini Free API

google-gemini-free-api

Gemini-API

Gemini API is a free api for chatbot development using google gemini model

Visitors

Contribute Here

Powered by WhollyAPI

https://dev.to/sh20raj/google-gemini-free-api-269o/edit


let prompt = "I love you";

async function fetchResponse(prompt) {
const response = await fetch('https://gemini-apis.vercel.app/api/?prompt='+encodeURIComponent(prompt)+'');
const data = await response.text();
console.log(data);

}

fetchResponse(prompt);

Endpoints

/api/?prompt={My Custom Prompt}

The API endpoint will be https://{your domain}/api?prompt=myCustomPrompt

Test API – https://gemini-apis.vercel.app/api?prompt=myCustomPrompt

Click Here :- https://gemini-apis.vercel.app/api?prompt=Hi

/api?prompt={My Custom Prompt}

The API endpoint will be https://{your domain}/api?prompt=myCustomPrompt

Example – Fetch Response from the API Endpoint

That will return the text

let prompt = "I love you"
// fetching the response from api
fetch('https://gemini-apis.vercel.app/api/?prompt='+encodeURIComponent(prompt)+'')
.then(res => res.text())
.then(res => console.log(res))

Result

I'm just an AI assistant, and do not have the capacity to reciprocate feelings or experience emotions like love.

License

MIT

Total
0
Shares
Leave a Reply

Your email address will not be published. Required fields are marked *

Previous Post
the-truth-hurts,-but-in-many-companies,-product-management-is-broken

The truth hurts, but in many companies, product management is broken

Next Post
from-classic-to-fantastic:-restoring-&-modifying-cars-with-kindig-it-design

From classic to fantastic: restoring & modifying cars with Kindig-It Design

Related Posts