SDK
- Setup
- TypeScript
- Checks
Endpoints
Inspect Grapheme GET
Inspects a single grapheme.
GET
/
inspect-grapheme
/
{grapheme}
Copy
Ask AI
curl --request GET \
--url https://api.nameguard.io/inspect-grapheme/{grapheme}
Copy
Ask AI
{
"rating": 3,
"risk_count": 2,
"highest_risk": {
"check": "confusables",
"status": 3,
"message": "<string>",
"check_name": "<string>"
},
"normalization": "normalized",
"grapheme": "v",
"grapheme_name": "Latin Small Letter V",
"grapheme_type": "simple_letter",
"grapheme_script": "Latin",
"grapheme_description": "A-Z letter",
"checks": [
{
"check": "confusables",
"status": 3,
"message": "<string>",
"check_name": "<string>"
}
],
"grapheme_link": "https://unicodeplus.com/U+0076",
"confusables": [
{
"rating": 3,
"risk_count": 2,
"highest_risk": {
"check": "confusables",
"status": 3,
"message": "<string>",
"check_name": "<string>"
},
"normalization": "normalized",
"grapheme": "v",
"grapheme_name": "Latin Small Letter V",
"grapheme_type": "simple_letter",
"grapheme_script": "Latin",
"grapheme_description": "A-Z letter",
"is_canonical": true,
"title": "<string>",
"subtitle": "<string>"
}
],
"canonical_grapheme": "v",
"title": "<string>",
"subtitle": "<string>",
"grapheme_link_name": "<string>",
"codepoints": [
"<string>"
]
}
Copy
Ask AI
curl --request GET \
--url https://api.nameguard.io/inspect-grapheme/{grapheme}
Path Parameters
Grapheme to inspect. Should be url-encoded (except when using the Swagger UI).
Examples:
"v"
"ń"
"%F0%9F%98%B5"
Response
200
application/json
Successful Response
The response is of type object
.
Copy
Ask AI
curl --request GET \
--url https://api.nameguard.io/inspect-grapheme/{grapheme}
Copy
Ask AI
{
"rating": 3,
"risk_count": 2,
"highest_risk": {
"check": "confusables",
"status": 3,
"message": "<string>",
"check_name": "<string>"
},
"normalization": "normalized",
"grapheme": "v",
"grapheme_name": "Latin Small Letter V",
"grapheme_type": "simple_letter",
"grapheme_script": "Latin",
"grapheme_description": "A-Z letter",
"checks": [
{
"check": "confusables",
"status": 3,
"message": "<string>",
"check_name": "<string>"
}
],
"grapheme_link": "https://unicodeplus.com/U+0076",
"confusables": [
{
"rating": 3,
"risk_count": 2,
"highest_risk": {
"check": "confusables",
"status": 3,
"message": "<string>",
"check_name": "<string>"
},
"normalization": "normalized",
"grapheme": "v",
"grapheme_name": "Latin Small Letter V",
"grapheme_type": "simple_letter",
"grapheme_script": "Latin",
"grapheme_description": "A-Z letter",
"is_canonical": true,
"title": "<string>",
"subtitle": "<string>"
}
],
"canonical_grapheme": "v",
"title": "<string>",
"subtitle": "<string>",
"grapheme_link_name": "<string>",
"codepoints": [
"<string>"
]
}
Assistant
Responses are generated using AI and may contain mistakes.