IRBIS API Reference
  • IRBIS API Reference
  • Disclaimer for IRBIS Search Portal and Services
  • Introduction
  • Authenticate
  • Requests Endpoints
  • LookupId-List API Endpoint
  • Retrieve the API Results for all requests.
    • GET Multiple Results
    • Search Response Schema
  • Delete Record API
    • Headers and Body Request for Delete Record
  • Retrieve Credits Status API
    • Search Response Schema
  • BreachScan
    • Headers and Body Request by deepweb values
    • GET Get lookup data for a request by deepweb values
    • Search Response Schema
  • Phone Lookup
    • Headers and Body Request by Phone
    • GET Get lookup data for a request by Phone
    • Search Response Schema
  • Phone Verification (Real Phone)
    • Headers and Body Request by Phone
    • GET Get lookup data for a request by Phone
    • Search Response Schema
  • Phone Validation Request (Optional)
    • Headers and Body
    • Request Response Data
    • Search Response Schema
  • Phone Vs Name Validator
    • Headers and Body
    • Request Response Data
    • Search Response Schema
  • E-mail Lookup
    • Headers and Body Request by E-mail Lookup
    • GET Get lookup data for a request by E-mail Lookup
    • Search Response Schema
  • Name SocialScan
    • Headers and Body Request by Name Lookup
    • GET Get lookup data for a request by Name Lookup
    • Search Response Schema
  • Name WebScan
    • Headers and Body Request by Telescope
    • GET Get lookup data for a request by Name Lookup
    • Search Response Schema
  • Leads Search
    • Headers and Body Request by Topick
    • GET Get lookup data for a request by Post
    • Search Response Schema
  • Face WebScan
    • Headers and Body Request by Face WebScan
    • GET Get lookup data for a request by Face WebScan
    • Search Response Schema
  • AI Sentiment Analysis
    • Headers and Body Request by Text body
    • GET Get lookup data for a request by Text body
    • Search Response Schema
  • KYC Validator
    • Headers and Body Request by KYC Validator
    • Request KYC Validator results
    • Search Response Schema
  • WEB Scraper
    • Headers and Body Request
    • Request Response Data
    • Search Response Schema
  • IP Geolocation
    • Headers and Body
    • Request Response Data
    • Search Response Schema
  • Phone Vs IP Validator
    • Headers and Body
    • Request Response Data
    • Search Response Schema
  • Psychological Portrait
    • Headers and Body
    • Request Response Data
    • Search Response Schema
  • Psycho Profile and Summary by Text & Name (Optional)
    • Headers and Body
    • Request Response Data
    • Search Response Schema
  • Compliance Screening
    • SSN Trace (US only)
    • National Criminal Screening (US only)
    • Watchlists and Politically Exposed Persons (International)
    • Court Records (US only)
Powered by GitBook
On this page
  1. Psycho Profile and Summary by Text & Name (Optional)

Search Response Schema

PYSCH

{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "criteria": {
      "type": "string"
    },
    "type": {
      "type": "string"
    },
    "status": {
      "type": "string"
    },
    "sources": {
      "type": "array",
      "items": [
        {
          "type": "object",
          "properties": {
            "name": {
              "type": "string"
            }
          },
          "required": [
            "name"
          ]
        }
      ]
    },
    "data": {
      "type": "array",
      "items": [
        {
          "type": "object",
          "properties": {
            "status": {
              "type": "string"
            },
            "psychAnalyst": {
              "type": "object",
              "properties": {
                "profiles": {
                  "type": "array",
                  "items": [
                    {
                      "type": "object",
                      "properties": {
                        "personName": {
                          "type": "string"
                        },
                        "psychologicalPortrait": {
                          "type": "string"
                        },
                        "levelOfDanger": {
                          "type": "string"
                        },
                        "predictedCharacteristics": {
                          "type": "array",
                          "items": [
                            {
                              "type": "string"
                            },
                            {
                              "type": "string"
                            }
                          ]
                        }
                      },
                      "required": [
                        "personName",
                        "psychologicalPortrait",
                        "levelOfDanger",
                        "predictedCharacteristics"
                      ]
                    }
                  ]
                }
              },
              "required": [
                "profiles"
              ]
            }
          },
          "required": [
            "status",
            "psychAnalyst"
          ]
        }
      ]
    }
  },
  "required": [
    "criteria",
    "type",
    "status",
    "sources",
    "data"
  ]
}

SUMMARY

{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "criteria": {
      "type": "string"
    },
    "type": {
      "type": "string"
    },
    "status": {
      "type": "string"
    },
    "sources": {
      "type": "array",
      "items": [
        {
          "type": "object",
          "properties": {
            "name": {
              "type": "string"
            }
          },
          "required": [
            "name"
          ]
        }
      ]
    },
    "data": {
      "type": "array",
      "items": [
        {
          "type": "object",
          "properties": {
            "status": {
              "type": "string"
            },
            "psychAnalyst": {
              "type": "object",
              "properties": {
                "peopleCounter": {
                  "type": "integer"
                },
                "summaries": {
                  "type": "array",
                  "items": [
                    {
                      "type": "object",
                      "properties": {
                        "summary": {
                          "type": "string"
                        },
                        "country": {
                          "type": "string"
                        },
                        "age": {
                          "type": "string"
                        },
                        "occupation": {
                          "type": "string"
                        },
                        "gender": {
                          "type": "string"
                        }
                      },
                      "required": [
                        "summary",
                        "country",
                        "age",
                        "occupation",
                        "gender"
                      ]
                    }
                  ]
                },
                "image": {
                  "type": "string"
                }
              },
              "required": [
                "peopleCounter",
                "summaries",
                "image"
              ]
            }
          },
          "required": [
            "status",
            "psychAnalyst"
          ]
        }
      ]
    }
  },
  "required": [
    "criteria",
    "type",
    "status",
    "sources",
    "data"
  ]
}
PreviousRequest Response DataNextSSN Trace (US only)

Last updated 1 year ago