Function Calling with the Gemini API
POST
https://generativelanguage.googleapis.com/v1beta/models/gemini-2.0-flash:generateContent
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request POST 'https://generativelanguage.googleapis.com/v1beta/models/gemini-2.0-flash:generateContent?key=' \
--header 'Content-Type: application/json' \
--data-raw '{
"contents": [
{
"role": "user",
"parts": [
{
"text": "What'\''s the temperature in London?"
}
]
}
],
"tools": [
{
"functionDeclarations": [
{
"name": "get_current_temperature",
"description": "Gets the current temperature for a given location.",
"parameters": {
"type": "object",
"properties": {
"location": {
"type": "string",
"description": "The city name, e.g. San Francisco"
}
},
"required": ["location"]
}
}
]
}
]
}'
Response Response Example
{}
Request
Query Params
key
string
required
Example:
{{GEMINI_API_KEY}}
Header Params
Content-Type
string
required
Example:
application/json
Body Params application/json