# Find by UUID
curl 'https://api.legitmark.com/api/sr/find/8e61c991-553a-4a58-9eb6-561b64c11908' \
-H 'Authorization: Bearer leo_your_api_key'
# Find by micro_id
curl 'https://api.legitmark.com/api/sr/find/997869' \
-H 'Authorization: Bearer leo_your_api_key'const options = {method: 'GET'};
fetch('https://api.legitmark.com/api/sr/find/{identifier}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.legitmark.com/api/sr/find/{identifier}"
response = requests.get(url)
print(response.text)package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.legitmark.com/api/sr/find/{identifier}"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"success": true,
"rc_hit": true,
"rc_key": "srs:74a4dd7b9d6d1dab9690606f18015964",
"message": "A sr was successfully fetched.",
"details": {
"id": "8e61c991-553a-4a58-9eb6-561b64c11908",
"micro_id": "178168",
"legacy_id": null,
"state": {
"primary": "COMPLETE",
"supplement": "APPROVED"
},
"url": "app.legitmark.com/view?sr=8e61c991-553a-4a58-9eb6-561b64c11908",
"document_url": "https://media.legitmark.com/document/certificate/178168_legitmark_certificate_20251122060559.pdf"
}
}Get SR Summary
Look up a service request by any of its identifiers: UUID, micro_id, legacy_id, or external_id. This is a public endpoint that does not require authentication.
# Find by UUID
curl 'https://api.legitmark.com/api/sr/find/8e61c991-553a-4a58-9eb6-561b64c11908' \
-H 'Authorization: Bearer leo_your_api_key'
# Find by micro_id
curl 'https://api.legitmark.com/api/sr/find/997869' \
-H 'Authorization: Bearer leo_your_api_key'const options = {method: 'GET'};
fetch('https://api.legitmark.com/api/sr/find/{identifier}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.legitmark.com/api/sr/find/{identifier}"
response = requests.get(url)
print(response.text)package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.legitmark.com/api/sr/find/{identifier}"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"success": true,
"rc_hit": true,
"rc_key": "srs:74a4dd7b9d6d1dab9690606f18015964",
"message": "A sr was successfully fetched.",
"details": {
"id": "8e61c991-553a-4a58-9eb6-561b64c11908",
"micro_id": "178168",
"legacy_id": null,
"state": {
"primary": "COMPLETE",
"supplement": "APPROVED"
},
"url": "app.legitmark.com/view?sr=8e61c991-553a-4a58-9eb6-561b64c11908",
"document_url": "https://media.legitmark.com/document/certificate/178168_legitmark_certificate_20251122060559.pdf"
}
}Path Parameters
Service request identifier - can be UUID, micro_id, legacy_id, or external_id
Response
Service request found successfully
true
Indicates if the response was served from cache
false
"A sr was successfully fetched."
Hide child attributes
Hide child attributes
Service request UUID
"3acd54ab-1cff-4641-ae93-d9b4941f5a9c"
Short numeric identifier for the service request
"562280"
Legacy system identifier (if migrated from older system)
null
Current state of the service request
Hide child attributes
Hide child attributes
Primary workflow state
DRAFT, QC, UNDERWAY, COMPLETE, CANCELLED "COMPLETE"
Secondary state indicating authentication status or assignment
PENDING, REJECTED, ASSIGNED, APPROVED, COMPLETE "APPROVED"
Direct URL to view the service request
"https://app.legitmark.com/view?sr=3acd54ab-1cff-4641-ae93-d9b4941f5a9c"
Returns a URL to the generated document PDF. If primary_state is complete and supplement_state is approved, the URL points to the Certificate of Authenticity (COA). If primary_state is complete and supplement_state is rejected, the URL points to the Attestation Certificate. Returns null if no certificate has been generated (e.g., cancelled or incomplete requests).
"https://cdn.legitmark.com/document/certificate/562280_legitmark_certificate_20260203144612.pdf"
Cache key used for this response