Find LinkedIn contacts.
LinkedIn/Sales manager search URL
Request
POST https://api.lindata.ai/api/v1/orders/search-urlHeaders
json
{
"x-api-key": "api-key"
}Body
json
{
"link": "...",
"limit": 10
}| Property | Type | Description |
|---|---|---|
| link | sting | Required, must to be valid |
| limit | number | Required, min: 1, max: 500 |
Sales links examples
https://www.linkedin.com/sales/search/people?query=https://www.linkedin.com/search/results/people/Response
json
{
"data": {
"id": "...",
"status": "..."
}
}| Property | Type | Description |
|---|---|---|
| id | string | Id of this search |
| status | string | Status of this search |
INFO
You can check the Orders for more details.
LinkedIn profile URL
Request
POST https://api.lindata.ai/api/v1/orders/profileHeaders
json
{
"x-api-key": "api-key"
}Body
json
{
"links": [
"string"
]
}| Property | Type | Description |
|---|---|---|
| links | array | Required, must to be valid |
Profile links examples
https://www.linkedin.com/in/...Response
json
{
"data": {
"id": "...",
"status": "..."
}
}| Property | Type | Description |
|---|---|---|
| id | string | Id of this search |
| status | string | Status of this search |
INFO
You can check the Orders for more details.
Search by domain
Request
POST https://api.lindata.ai/api/v1/orders/domainHeaders
json
{
"x-api-key": "api-key"
}Body
json
{
"positions": [
"string"
],
"domains": [
"string"
],
"limit": 10
}| Property | Type | Description |
|---|---|---|
| positions | array | Required |
| domains | array | Required, must to be valid |
| limit | number | Required, min: 1, max: 500 |
Response
json
{
"data": {
"id": "...",
"status": "..."
}
}| Property | Type | Description |
|---|---|---|
| id | string | Id of this search |
| status | string | Status of this search |
INFO
You can check the Orders for more details.
Get User balance
Request
GET https://api.lindata.ai/api/v1/wallets/balanceHeaders
json
{
"x-api-key": "api-key"
}Response
json
{
"value": 0
}| Property | Type | Description |
|---|---|---|
| value | number | User points |
Stop active search task
Request
POST https://api.lindata.ai/api/v1/orders/{orderUuid}/stop| Parameter | Type | Description |
|---|---|---|
| orderUuid | string | Order id |
Headers
json
{
"x-api-key": "api-key"
}