> ## Documentation Index
> Fetch the complete documentation index at: https://docs.gu1.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Get a person by ID

> Retrieve detailed information about a person — for person entities in the gu1 KYC and risk analysis platform, with examples for get use cases.

## Overview

Retrieves complete details for a specific person, including current evaluation status and risk assessment. You can fetch a person in three ways:

| Method             | Endpoint                                    | Use when                                                               |
| ------------------ | ------------------------------------------- | ---------------------------------------------------------------------- |
| **By ID**          | `GET /entities/{id}`                        | You have gu1's internal entity UUID                                    |
| **By external ID** | `GET /entities/by-external-id/{externalId}` | You use your own identifier (e.g. `customer_12345`)                    |
| **By tax ID**      | `GET /entities/by-tax-id/{taxId}`           | You have the person's tax ID (e.g. CUIT, CPF) and want to look them up |

All three return the same person object. The organization scope is enforced by your API key.

## Endpoints

### Get by ID

```
GET http://api.gu1.ai/entities/{id}
```

<ParamField path="id" type="string" required>
  The unique gu1 ID (UUID) of the person to retrieve
</ParamField>

### Get by external ID

```
GET http://api.gu1.ai/entities/by-external-id/{externalId}
```

<ParamField path="externalId" type="string" required>
  Your external identifier for this person (e.g. the value you sent when creating the entity)
</ParamField>

### Get by tax ID

```
GET http://api.gu1.ai/entities/by-tax-id/{taxId}
```

<ParamField path="taxId" type="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.
</ParamField>

## Authentication

Requires a valid API key in the Authorization header:

```bash theme={null}
Authorization: Bearer YOUR_API_KEY
```

## Response

Returns the complete person object with the following fields:

<ResponseField name="id" type="string">
  gu1's internal entity ID
</ResponseField>

<ResponseField name="externalId" type="string">
  Your external identifier for this person
</ResponseField>

<ResponseField name="organizationId" type="string">
  Your organization ID
</ResponseField>

<ResponseField name="type" type="string">
  Always "person"
</ResponseField>

<ResponseField name="name" type="string">
  Person display name
</ResponseField>

<ResponseField name="taxId" type="string">
  Tax identification number
</ResponseField>

<ResponseField name="countryCode" type="string">
  ISO 3166-1 alpha-2 country code
</ResponseField>

<ResponseField name="riskScore" type="number">
  Calculated risk score from 0 (low risk) to 100 (high risk)
</ResponseField>

<ResponseField name="riskFactors" type="array">
  Array of identified risk factors contributing to the risk score
</ResponseField>

<ResponseField name="status" type="string">
  Person status: `active`, `inactive`, `under_review`, `approved`, `rejected`, `suspended`
</ResponseField>

<ResponseField name="kycVerified" type="boolean">
  Whether KYC verification has been completed
</ResponseField>

<ResponseField name="kycProvider" type="string">
  Name of the KYC provider used (if applicable)
</ResponseField>

<ResponseField name="kycData" type="object">
  KYC verification data from the provider
</ResponseField>

<ResponseField name="entityData" type="object">
  Person-specific data structure
</ResponseField>

<ResponseField name="attributes" type="object">
  Custom attributes as key-value pairs
</ResponseField>

<ResponseField name="currentEvaluation" type="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
</ResponseField>

<ResponseField name="createdAt" type="string">
  ISO 8601 timestamp of person creation
</ResponseField>

<ResponseField name="updatedAt" type="string">
  ISO 8601 timestamp of last update
</ResponseField>

<ResponseField name="deletedAt" type="string">
  ISO 8601 timestamp of soft deletion (null if not deleted)
</ResponseField>

## Examples

### Get by ID (UUID)

<CodeGroup>
  ```bash cURL theme={null}
  curl -X GET http://api.gu1.ai/entities/550e8400-e29b-41d4-a716-446655440000 \
    -H "Authorization: Bearer YOUR_API_KEY"
  ```

  ```javascript JavaScript theme={null}
  const response = await fetch(
    'http://api.gu1.ai/entities/550e8400-e29b-41d4-a716-446655440000',
    {
      headers: {
        'Authorization': 'Bearer YOUR_API_KEY'
      }
    }
  );

  const person = await response.json();
  console.log(person);
  ```

  ```python Python theme={null}
  import requests

  response = requests.get(
      'http://api.gu1.ai/entities/550e8400-e29b-41d4-a716-446655440000',
      headers={
          'Authorization': 'Bearer YOUR_API_KEY'
      }
  )

  person = response.json()
  print(person)
  ```
</CodeGroup>

### Get by external ID

<CodeGroup>
  ```bash cURL theme={null}
  curl -X GET "http://api.gu1.ai/entities/by-external-id/customer_12345" \
    -H "Authorization: Bearer YOUR_API_KEY"
  ```

  ```javascript JavaScript theme={null}
  const externalId = 'customer_12345';
  const response = await fetch(
    `http://api.gu1.ai/entities/by-external-id/${encodeURIComponent(externalId)}`,
    { headers: { 'Authorization': 'Bearer YOUR_API_KEY' } }
  );
  const person = await response.json();
  ```

  ```python Python theme={null}
  import requests
  external_id = "customer_12345"
  response = requests.get(
      f"http://api.gu1.ai/entities/by-external-id/{external_id}",
      headers={"Authorization": "Bearer YOUR_API_KEY"}
  )
  person = response.json()
  ```
</CodeGroup>

### Get by tax ID

<CodeGroup>
  ```bash cURL theme={null}
  curl -X GET "http://api.gu1.ai/entities/by-tax-id/20-12345678-9" \
    -H "Authorization: Bearer YOUR_API_KEY"
  ```

  ```javascript JavaScript theme={null}
  const taxId = '20-12345678-9'; // e.g. CUIT (AR)
  const response = await fetch(
    `http://api.gu1.ai/entities/by-tax-id/${encodeURIComponent(taxId)}`,
    { headers: { 'Authorization': 'Bearer YOUR_API_KEY' } }
  );
  const person = await response.json();
  ```

  ```python Python theme={null}
  import requests
  tax_id = "20-12345678-9"  # e.g. CUIT (AR)
  response = requests.get(
      f"http://api.gu1.ai/entities/by-tax-id/{tax_id}",
      headers={"Authorization": "Bearer YOUR_API_KEY"}
  )
  person = response.json()
  ```
</CodeGroup>

### Response Example

```json theme={null}
{
  "id": "550e8400-e29b-41d4-a716-446655440000",
  "externalId": "customer_12345",
  "organizationId": "8e2f89ab-c216-4eb4-90eb-ca5d44499aaa",
  "type": "person",
  "name": "María González",
  "taxId": "20-12345678-9",
  "countryCode": "AR",
  "riskScore": 25,
  "riskFactors": [
    {
      "factor": "new_customer",
      "impact": 15,
      "description": "Customer registered within last 30 days"
    },
    {
      "factor": "high_income_occupation",
      "impact": -10,
      "description": "Professional occupation with verified income"
    }
  ],
  "status": "active",
  "kycVerified": true,
  "kycProvider": "gueno_ai",
  "kycData": {
    "verificationDate": "2024-10-03T14:30:00Z",
    "documentsVerified": ["national_id", "proof_of_address"],
    "livenessCheck": "passed",
    "overallStatus": "approved"
  },
  "entityData": {
    "person": {
      "firstName": "María",
      "lastName": "González",
      "dateOfBirth": "1985-03-15",
      "nationality": "AR",
      "occupation": "Software Engineer",
      "income": 85000
    }
  },
  "attributes": {
    "email": "maria.gonzalez@example.com",
    "phone": "+54 11 1234-5678",
    "customerSince": "2024-01-15",
    "accountTier": "premium"
  },
  "currentEvaluation": {
    "id": "eval_abc123",
    "entityId": "550e8400-e29b-41d4-a716-446655440000",
    "evaluationType": "risk_assessment",
    "result": {
      "overallRisk": "low",
      "amlRisk": "low",
      "fraudRisk": "low",
      "complianceScore": 95,
      "recommendation": "approve"
    },
    "confidence": 0.92,
    "evaluatedAt": "2024-10-03T14:35:00Z"
  },
  "createdAt": "2024-10-03T14:30:00.000Z",
  "updatedAt": "2024-10-03T14:35:00.000Z",
  "deletedAt": null
}
```

## Error Responses

### 404 Not Found

```json theme={null}
{
  "error": "Entity not found"
}
```

### 401 Unauthorized

```json theme={null}
{
  "error": "Invalid or missing API key"
}
```

### 500 Internal Server Error

```json theme={null}
{
  "error": "Failed to fetch entity"
}
```

## Use Cases

### KYC Verification Check

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

```javascript theme={null}
const person = await fetch(`http://api.gu1.ai/entities/${customerId}`, {
  headers: { 'Authorization': 'Bearer YOUR_API_KEY' }
}).then(res => res.json());

if (person.kycVerified && person.status === 'active') {
  // Proceed with transaction
  console.log('Customer verified, risk score:', person.riskScore);
} else {
  // Request additional verification
  console.log('KYC verification required');
}
```

### Risk Score Monitoring

Check the current risk score and factors for ongoing monitoring:

```python theme={null}
person = requests.get(
    f'http://api.gu1.ai/entities/{person_id}',
    headers={'Authorization': 'Bearer YOUR_API_KEY'}
).json()

if person['riskScore'] > 70:
    # High risk - trigger enhanced due diligence
    print(f"High risk person detected: {person['riskScore']}")
    print("Risk factors:", person['riskFactors'])
elif person['riskScore'] > 40:
    # Medium risk - apply additional monitoring
    print(f"Medium risk person: {person['riskScore']}")
```

## Next Steps

* [Update Person](/en/api-reference/person/update) - Modify person attributes
* [List Persons](/en/api-reference/person/list) - Query multiple persons
* [Create KYC Validation](/en/use-cases/kyc/create-validation) - Start identity verification
