Информация о сотруднике
👤 GET /people/{person_id} — Информация о сотруднике
GET /people/{person_id} — Информация о сотрудникеВозвращает подробную информацию о человеке, связанном с криптовалютной индустрией: описание, социальные сети, команды, в которых он участвует, и занимаемые роли.
🕒 Обновление данных: каждый час
🔗 Endpoint
https://api.cryptoskop.ru/v1/people/{person_id}📍 Path-параметры
person_id
string
✅ Да
Уникальный идентификатор личности в системе
Пример: vitalik-buterin
📄 Пример ответа
{
"id": "vitalik-buterin",
"name": "Vitalik Buterin",
"description": "Vitalik is the creator of Ethereum. He first discovered blockchain and cryptocurrency technologies through Bitcoin in 2011, and was immediately excited by the technology and its potential. He cofounded Bitcoin Magazine in September 2011, and after two and a half years looking at what the existing blockchain technology and applications had to offer, wrote the Ethereum white paper in November 2013. He now leads Ethereum's research team, working on future versions of the Ethereum protocol.",
"teams_count": 5,
"links": {
"github": [
{
"url": "http://example.com",
"followers": 6448
}
],
"linkedin": [
{
"url": "http://example.com",
"followers": 6448
}
],
"medium": [
{
"url": "http://example.com",
"followers": 6448
}
],
"twitter": [
{
"url": "http://example.com",
"followers": 6448
}
],
"additional": [
{
"url": "http://example.com",
"followers": 6448
}
]
},
"positions": [
{
"coin_id": "eth-ethereum",
"coin_name": "Ethereum",
"position": "Author"
}
]
}🧾 Описание полей
id
string
Уникальный ID человека
name
string
Полное имя
description
string
Биография/описание
teams_count
integer
Количество команд, в которых участвует человек
links
object
Ссылки на соцсети и платформы (GitHub, Twitter и др.)
positions
array of objects
Список монет и ролей в командах
Структура links:
Структура positions:
📌 Примечания
Поля
followersмогут отсутствовать или бытьnullна некоторых платформах.Данный запрос позволяет получить информацию о человеке, связанного с одной или несколькими криптовалютами.
Все поля локализованы на английском языке.
Last updated