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

# Get All KYC Search Results

> Retrieve all KYC search results associated with your account, including risk levels and sanction findings.

The Get All KYC Search Results endpoint returns a list of every KYC check performed under your account. Each result includes the entity's risk level, PEP status, sanctions matches, and adverse media findings.

## Endpoint

```
GET /api/v1/monitoring/kyc_search/
```

## Request

### Headers

| Header           | Value               | Required |
| ---------------- | ------------------- | -------- |
| `x-access-token` | Your API secret key | Yes      |

### Example

<CodeGroup>
  ```bash cURL theme={null}
  curl -X GET "https://adhere-api.smartcomply.com/api/v1/monitoring/kyc_search/" \
    -H "x-access-token: YOUR_SECRET_KEY"
  ```
</CodeGroup>

## Response

### 200 OK

| Field                                 | Type   | Description                                           |
| ------------------------------------- | ------ | ----------------------------------------------------- |
| `data[].id`                           | number | Unique identifier for the KYC search result           |
| `data[].entity_name`                  | string | Name of the entity that was searched                  |
| `data[].branch_id`                    | number | Branch associated with this KYC search                |
| `data[].status`                       | string | Search status (e.g., `"completed"`)                   |
| `data[].result.risk_level`            | string | Risk level assessed: `"low"`, `"medium"`, or `"high"` |
| `data[].result.total_hits`            | number | Total flagged hits across all categories              |
| `data[].result.pep_results`           | array  | Politically Exposed Person matches                    |
| `data[].result.sanction_results`      | array  | Sanctions list matches                                |
| `data[].result.social_media`          | array  | Social media profiles found                           |
| `data[].result.adverse_media_results` | array  | Adverse media articles                                |
| `data[].result.total_blacklist_hits`  | number | Total blacklist flags                                 |

```json theme={null}
{
  "status": "success",
  "data": [
    {
      "id": 17,
      "entity_name": "ABDUL MANAN MOHAMMAD ISHAK",
      "branch_id": 3,
      "status": "completed",
      "result": {
        "risk_level": "low",
        "total_hits": 1,
        "pep_results": [],
        "search_term": "ABDUL MANAN MOHAMMAD ISHAK",
        "social_media": [],
        "sanction_results": [
          {
            "name": "Abdul Manan Mohammad Ishak",
            "types": ["sanction", "warnings", "fitness-probity"],
            "source": "Smartcomply",
            "country": "Afghanistan",
            "recorded_date": "15 Aug. 2012"
          }
        ],
        "total_blacklist_hits": 0,
        "adverse_media_results": []
      }
    },
    {
      "id": 41,
      "entity_name": "Heritage Bank",
      "branch_id": 3,
      "status": "completed",
      "result": {
        "risk_level": "high",
        "total_hits": 5,
        "pep_results": [
          {
            "name": "Managing Director/CEO, Heritage Bank Plc",
            "gender": null,
            "source": "Smartcomply",
            "country": "Nigeria",
            "pep_types": ["pep"]
          }
        ],
        "search_term": "Heritage Bank",
        "social_media": [],
        "sanction_results": [],
        "total_blacklist_hits": 0,
        "adverse_media_results": [
          {
            "url": "https://thewillnews.com/breaking-cbn-revokes-operational-license-of-heritage-bank-plc/",
            "date": "June 5, 2024",
            "title": "CBN revokes operational license of Heritage Bank Plc",
            "types": ["adverse-media-v2-other-financial"],
            "snippet": "The Central Bank of Nigeria (CBN) has revoked the banking license of Heritage Bank Plc..."
          }
        ]
      }
    }
  ],
  "message": "Success"
}
```

### 400 Bad Request

```json theme={null}
{
  "status": "failed",
  "data": [],
  "message": "Sorry, your check cannot be processed at the moment. Please try again in a few minutes"
}
```

### 401 Unauthorized

```json theme={null}
{
  "status": "failed",
  "message": "Authentication credentials were not provided."
}
```


## OpenAPI

````yaml GET /api/v1/monitoring/kyc_search/
openapi: 3.0.3
info:
  title: Adhere API
  description: >-
    Identity verification, credit checks, transaction monitoring, and loan fraud
    detection across Africa.
  version: 3.0.0
servers:
  - url: https://adhere-api.smartcomply.com
    description: Production
security:
  - ApiKeyAuth: []
tags:
  - name: Nigeria KYC
  - name: Kenya KYC
  - name: Ghana KYC
  - name: Rwanda KYC
  - name: Uganda KYC
  - name: Biometrics
  - name: Individual Credit
  - name: Business Credit
  - name: Transaction Monitoring
  - name: Transaction Screening
  - name: Transaction KYC
  - name: Loan Fraud
  - name: User Journey
paths:
  /api/v1/monitoring/kyc_search/:
    get:
      tags:
        - Transaction KYC
      summary: Get All KYC Search Results
      operationId: getAllKycResults
      responses:
        '200':
          description: All KYC results retrieved
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
components:
  responses:
    BadRequest:
      description: Bad Request
      content:
        application/json:
          schema:
            type: object
            properties:
              status:
                type: string
                example: failed
              data:
                type: array
                items: {}
              message:
                type: string
    Unauthorized:
      description: Unauthorized
      content:
        application/json:
          schema:
            type: object
            properties:
              status:
                type: string
                example: failed
              message:
                type: string
                example: Authentication credentials were not provided.
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-access-token
      description: Your Adhere API secret key

````