Get WorkOS client id
curl --request GET \
--url https://your-instance.example.com/api/auth/workos/client-idimport requests
url = "https://your-instance.example.com/api/auth/workos/client-id"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://your-instance.example.com/api/auth/workos/client-id', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://your-instance.example.com/api/auth/workos/client-id",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://your-instance.example.com/api/auth/workos/client-id"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://your-instance.example.com/api/auth/workos/client-id")
.asString();require 'uri'
require 'net/http'
url = URI("https://your-instance.example.com/api/auth/workos/client-id")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"clientId": "client_01HX9R3K4N6P8QZBVTYM2D5A7C"
}{
"error": "Invalid or expired token",
"code": "TOKEN_EXPIRED"
}Auth
Get WorkOS client id
Public endpoint that returns the WorkOS client id the SPA needs to bootstrap AuthKit. Returns 500 when WORKOS_CLIENT_ID is not configured on the server.
GET
/
api
/
auth
/
workos
/
client-id
Get WorkOS client id
curl --request GET \
--url https://your-instance.example.com/api/auth/workos/client-idimport requests
url = "https://your-instance.example.com/api/auth/workos/client-id"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://your-instance.example.com/api/auth/workos/client-id', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://your-instance.example.com/api/auth/workos/client-id",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://your-instance.example.com/api/auth/workos/client-id"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://your-instance.example.com/api/auth/workos/client-id")
.asString();require 'uri'
require 'net/http'
url = URI("https://your-instance.example.com/api/auth/workos/client-id")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"clientId": "client_01HX9R3K4N6P8QZBVTYM2D5A7C"
}{
"error": "Invalid or expired token",
"code": "TOKEN_EXPIRED"
}Response
Client id returned
⌘I