Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
/auth/signout
curl --location --request POST 'https://my-project.fastgenapp.com/auth/signout'
import requests url = "https://my-project.fastgenapp.com/auth/signout" payload={} headers = {} response = requests.request("POST", url, headers=headers, data=payload) print(response.text)