Python
import requests url = "https://api.opper.ai/v3/functions" headers = {"Authorization": "Bearer <token>"} response = requests.get(url, headers=headers) print(response.text)
{ "functions": [ { "generated_at": "2023-11-07T05:31:56Z", "has_script": true, "hit_count": 123, "name": "<string>", "schema_hash": "<string>" } ] }
List all cached functions for the authenticated project.
API key authentication. Pass your API key as a Bearer token.
Successful response
Show child attributes