Skip to main content
GET
/
v3
/
functions
List functions
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>"
    }
  ]
}

Authorizations

Authorization
string
header
required

API key authentication. Pass your API key as a Bearer token.

Response

Successful response

functions
object[]