Obter uma chave de API

Para usar a API, você precisa de uma chave de API. É possível criar uma chave com um clique no MakerSuite.

Gerar uma chave de API

Verificar sua chave de API com o comando curl

Use um comando curl para verificar a configuração. É possível transmitir a chave de API no URL:

PALM_KEY="YOUR KEY HERE"
curl -H 'Content-Type: application/json' \
     -d '{"prompt": {text: "Give me five subcategories of jazz"} }' \
     "https://generativelanguage.googleapis.com/v1/models/text-bison-001:generateText?key=${PALM_KEY}"

Ou no cabeçalho x-goog-api-key:

PALM_KEY="YOUR KEY HERE"
curl -H 'Content-Type: application/json' \
     -H "x-goog-api-key: ${PALM_KEY}" \
     -d '{"prompt": {text: "Give me five subcategories of jazz"} }' \
     "https://generativelanguage.googleapis.com/v1/models/text-bison-001:generateText"

Próximas etapas