Get an audit log by ID
curl --request GET \
--url https://api-sandbox.circle.com/v1/auditLogs/{id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api-sandbox.circle.com/v1/auditLogs/{id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api-sandbox.circle.com/v1/auditLogs/{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://api-sandbox.circle.com/v1/auditLogs/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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://api-sandbox.circle.com/v1/auditLogs/{id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api-sandbox.circle.com/v1/auditLogs/{id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api-sandbox.circle.com/v1/auditLogs/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": {
"id": "b3d9d2d5-4c12-4946-a09d-953e82fae2b0",
"type": "user.signed_in",
"occurredAt": "2026-05-05T14:02:11.842Z",
"actorId": "0189a4f2-1c3b-7c8e-9d2a-2f6b1e4c8a10",
"actorType": "USER",
"clientIp": "203.0.113.42",
"outcomeResult": "SUCCESS",
"entityId": "1b9d6bcd-bbfd-4b2d-9b5d-ab8dfbbd4bed",
"requestId": "a1f2e3d4-5678-49ab-90cd-1234567890ab",
"payload": {
"email": "a@b.co"
}
}
}{
"code": 400,
"message": "Bad request."
}{
"code": 401,
"message": "Malformed authorization."
}{
"code": 403,
"message": "Forbidden"
}{
"code": 404,
"message": "Not found."
}{
"code": 429,
"message": "Too many requests."
}{
"code": 500,
"message": "Internal server error."
}Get an audit log by ID
Returns a single audit log entry by its unique identifier.
GET
/
v1
/
auditLogs
/
{id}
Get an audit log by ID
curl --request GET \
--url https://api-sandbox.circle.com/v1/auditLogs/{id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api-sandbox.circle.com/v1/auditLogs/{id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api-sandbox.circle.com/v1/auditLogs/{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://api-sandbox.circle.com/v1/auditLogs/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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://api-sandbox.circle.com/v1/auditLogs/{id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api-sandbox.circle.com/v1/auditLogs/{id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api-sandbox.circle.com/v1/auditLogs/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": {
"id": "b3d9d2d5-4c12-4946-a09d-953e82fae2b0",
"type": "user.signed_in",
"occurredAt": "2026-05-05T14:02:11.842Z",
"actorId": "0189a4f2-1c3b-7c8e-9d2a-2f6b1e4c8a10",
"actorType": "USER",
"clientIp": "203.0.113.42",
"outcomeResult": "SUCCESS",
"entityId": "1b9d6bcd-bbfd-4b2d-9b5d-ab8dfbbd4bed",
"requestId": "a1f2e3d4-5678-49ab-90cd-1234567890ab",
"payload": {
"email": "a@b.co"
}
}
}{
"code": 400,
"message": "Bad request."
}{
"code": 401,
"message": "Malformed authorization."
}{
"code": 403,
"message": "Forbidden"
}{
"code": 404,
"message": "Not found."
}{
"code": 429,
"message": "Too many requests."
}{
"code": 500,
"message": "Internal server error."
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Unique identifier of the audit log entry.
Example:
"b3d9d2d5-4c12-4946-a09d-953e82fae2b0"
Response
Successfully retrieved an audit log.
A single audit log entry capturing an action taken within your Circle account, including who performed it, when it occurred, and the outcome.
Show child attributes
Show child attributes
Was this page helpful?
⌘I