Skip to main content
GET
Get

Overview

Retrieves complete details for a specific person, including current evaluation status and risk assessment. You can fetch a person in three ways: All three return the same person object. The organization scope is enforced by your API key.

Endpoints

Get by ID

string
required
The unique gu1 ID (UUID) of the person to retrieve

Get by external ID

string
required
Your external identifier for this person (e.g. the value you sent when creating the entity)

Get by tax ID

string
required
The person’s tax identification number (format depends on country: CUIT for Argentina, CPF for Brazil, etc.). Must match the entity’s stored tax ID within your organization.

Authentication

Requires a valid API key in the Authorization header:

Response

Returns the complete person object with the following fields:
string
gu1’s internal entity ID
string
Your external identifier for this person
string
Your organization ID
string
Always “person”
string
Person display name
string
Tax identification number
string
ISO 3166-1 alpha-2 country code
number
Calculated risk score from 0 (low risk) to 100 (high risk)
array
Array of identified risk factors contributing to the risk score
string
Person status: active, inactive, under_review, approved, rejected, suspended
boolean
Whether KYC verification has been completed
string
Name of the KYC provider used (if applicable)
object
KYC verification data from the provider
object
Person-specific data structure
object
Custom attributes as key-value pairs
object
Latest AI evaluation results (null if no evaluation exists)
  • id - Evaluation ID
  • entityId - Entity ID
  • evaluationType - Type of evaluation performed
  • result - Evaluation result
  • confidence - Confidence score (0-1)
  • evaluatedAt - Timestamp of evaluation
string
ISO 8601 timestamp of person creation
string
ISO 8601 timestamp of last update
string
ISO 8601 timestamp of soft deletion (null if not deleted)

Examples

Get by ID (UUID)

Get by external ID

Get by tax ID

Response Example

Error Responses

404 Not Found

401 Unauthorized

500 Internal Server Error

Use Cases

KYC Verification Check

Retrieve a customer to check their KYC status before approving a transaction:

Risk Score Monitoring

Check the current risk score and factors for ongoing monitoring:

Next Steps