Skip to content

Search

Description

Search is a main endpoint and allows you searching data of InfoTrackPeople.

POST /public-api/data/search
Warning

Header x-api-key should be added with your API key.(1)

  1. 🙋‍♂️ API key can be received by contacting ITP Support.

Request body

Available search types:

Type Description Examples
full_text Any type of text can be used и.о. директора Суворов
51343452
ООО 'РосГаз'
phone Phone numbers +79225551234
7922421214
name Names (Name/Surname/Father's name).
It can be combined with birth date
Аникин Андрей Иванович
Аникин Андрей Иванович 1996-05-02
Светлакова Светлана
address Adress улица Космонавтов, 12
г. Ростов, просп. Ленина, 1
Москва
email Email [email protected]
[email protected]
plate_number Plate numbers С202ВК977
A111ТВ732
С020РМ177
vin Vin codes RUMKE8978DV154064
JMZMA18P200411817
passport Passports 0805 542852
542852
snils SNILS 11581339245
11952462764
inn INN 250306888694
781075550363
username Telegram usernames. Should be sent without @ oleg_andreev
mashka202
password Passwords mynewpassword2022
123456
qwerty333
telegram_id Telegram IDs 5165691225
5027932016
tg_msg Telegram messages Питер
Продам билеты на концерт
Жесть Белгород

Body is application/json

{
  "searchOptions":[
    {
    "type":"name",
    "query":"Андрей"
    }
  ]
}

Tip

Search options also can be combined

{
  "searchOptions":[
    {
    "type":"name",
    "query":"Андрей"
    },
    {
    "type":"phone",
    "query":"7922421214"
    }
  ]
}

Response body

Response is application/json:

Info

Detailed information on fields that are returned from API can be found here

{
    "data": {
        "База клиентов '2Gis'": { 
            "data": [ 
                {
                    "data_provider": "v1",
                    "db_name": "База клиентов '2Gis'", 
                    "name": "Андрей, магазин мужской одежды",
                    "phone": "+79148364945",
                    "address": "Улан-Удэ, 670000 Балтахинова, 15",
                    "business_type": "Мужская одежда"
                },
                {
                    "data_provider": "v1",
                    "db_name": "База клиентов '2Gis'",
                    "name": "Андрей, салон мужской одежды",
                    "address": "Горно-Алтайск, 649000 Григория Чорос-Гуркина, 39/14",
                    "business_type": "Мужская одежда"
                },
            ]
        },
        "ФССП": {  
            "data": [
                {
                    "data_provider": "v2",
                    "db_name": "ФССП", 
                    "name": "Ип Качанов Андрей Николаевич",
                    "address": "Россия,301089,Тульская Обл,Чернский Р-Н, Кресты Д,Центральная Ул,32",
                    "date_prootocol_end": "2019-12-16",
                    "doc_number": "А68-6914/2019",
                    "osp": "6834181",
                    "claimant": "Публичное Акционерное Общество \"Ростелеком\"",
                    "ie_number": "87625/19/71022-ИП"
                },
                {
                    "data_provider": "v2", 
                    "db_name": "ФССП", 
                    "name": "Ип Деменков Андрей Анатольевич",
                    "address": "Россия,156013,Костромская Обл, Кострома Г, Катушечная Ул,96, 1",
                    "debt_total": "15000.00",
                    "debt_balance": "0.00",
                    "doc_number": "32244033200000081010",
                    "osp": "9421293",
                    "claimant": "Управление Федеральной Службы Судебных Приставов По Костромской Области",
                    "ie_number": "16081/20/44033-ИП"
                },
            ]
        },
        "База Российского Союза Автостраховщиков 'Спектр' [2024]": { 
            "data": [
                {
                    "is_vip": true,
                    "data_provider": "Premium",
                    "db_name": "База Российского Союза Автостраховщиков 'Спектр' [2024]"  
                }
            ]
        }
    },
    "records": 5,
    "searchId": 1701
}

Errors handling

Possible error statuses: 400, 403, 429, 500. Examples are given below:

Tip

Please check if search types you're passing, are correct

{
    "error": {
        "key": "searchOptions[0].type must be one of the following values: full_text, phone, name, address, email, plate_number, vin, passport, snils, inn, username, password, telegram_id, tg_msg",
        "param": "searchOptions[0].type",
        "message": "searchOptions[0].type must be one of the following values: full_text, phone, name, address, email, plate_number, vin, passport, snils, inn, username, password, telegram_id, tg_msg"
    }
}
Tip

🙋‍♂️ Please contact ITP Support to renew your payment plan.

{
    "error": {
        "key": "general.error.forbidden",
        "param": null,
        "message": "You API key is deactivated. Please contact support."
    }
}
Tip

🙋‍♂️ Please contact ITP Support to increase your API limits.

{
    "error": {
        "key": "general.error.limitExceeded",
        "param": null,
        "message": "You exceeded the limit of requests for this API key. Please contact support."
    }
}
Failure

Most probably we're already working on it. Please contact ITP Support to get status on the issue.

{
    "error": {
        "key": "general.error.serverError",
        "message": "Something went wrong, please contact our support.",
    }
}