Skip to content

Find LinkedIn contacts.

LinkedIn/Sales manager search URL

Request

 POST https://api.lindata.ai/api/v1/orders/search-url

Headers

json
{
  "x-api-key": "api-key"
}

Body

json
{
  "link": "...",
  "limit": 10
}
PropertyTypeDescription
linkstingRequired, must to be valid
limitnumberRequired, min: 1, max: 500
https://www.linkedin.com/sales/search/people?query=
https://www.linkedin.com/search/results/people/

Response

json
{
  "data": {
    "id": "...",
    "status": "..."
  }
}
PropertyTypeDescription
idstringId of this search
statusstringStatus of this search

INFO

You can check the Orders for more details.

LinkedIn profile URL

Request

 POST https://api.lindata.ai/api/v1/orders/profile

Headers

json
{
  "x-api-key": "api-key"
}

Body

json
{
  "links": [
    "string"
  ]
}
PropertyTypeDescription
linksarrayRequired, must to be valid
https://www.linkedin.com/in/...

Response

json
{
  "data": {
    "id": "...",
    "status": "..."
  }
}
PropertyTypeDescription
idstringId of this search
statusstringStatus of this search

INFO

You can check the Orders for more details.

Search by domain

Request

 POST https://api.lindata.ai/api/v1/orders/domain

Headers

json
{
  "x-api-key": "api-key"
}

Body

json
{
  "positions": [
    "string"
  ],
  "domains": [
    "string"
  ],
  "limit": 10
}
PropertyTypeDescription
positionsarrayRequired
domainsarrayRequired, must to be valid
limitnumberRequired, min: 1, max: 500

Response

json
{
  "data": {
    "id": "...",
    "status": "..."
  }
}
PropertyTypeDescription
idstringId of this search
statusstringStatus of this search

INFO

You can check the Orders for more details.

Get User balance

Request

 GET https://api.lindata.ai/api/v1/wallets/balance

Headers

json
{
  "x-api-key": "api-key"
}

Response

json
{
  "value": 0
}
PropertyTypeDescription
valuenumberUser points

Stop active search task

Request

 POST https://api.lindata.ai/api/v1/orders/{orderUuid}/stop
ParameterTypeDescription
orderUuidstringOrder id

Headers

json
{
  "x-api-key": "api-key"
}