Public keys for verifying access tokens
curl --request GET \
--url https://platform.trylath.com/auth/jwks/{environmentId}const options = {method: 'GET'};
fetch('https://platform.trylath.com/auth/jwks/{environmentId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://platform.trylath.com/auth/jwks/{environmentId}"
response = requests.get(url)
print(response.text)package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://platform.trylath.com/auth/jwks/{environmentId}"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}Public keys for verifying access tokens
The JSON Web Key Set an environment’s ES256 access tokens are verified against, so a customer’s server verifies locally with no round trip.
GET
/
auth
/
jwks
/
{environmentId}
Public keys for verifying access tokens
curl --request GET \
--url https://platform.trylath.com/auth/jwks/{environmentId}const options = {method: 'GET'};
fetch('https://platform.trylath.com/auth/jwks/{environmentId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://platform.trylath.com/auth/jwks/{environmentId}"
response = requests.get(url)
print(response.text)package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://platform.trylath.com/auth/jwks/{environmentId}"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}Path Parameters
The environment this is read for.
Response
200
ok
Last modified on September 13, 2026
Was this page helpful?

