Skip to main content
POST
/
api
/
linkedin
/
google
/
company
/linkedin/google/company
curl --request POST \
  --url https://api.anysite.io/api/linkedin/google/company \
  --header 'Content-Type: application/json' \
  --header 'access-token: <access-token>' \
  --data '{
  "timeout": 300,
  "keywords": {
    "by name": [
      "Software as a Service (SaaS)"
    ],
    "by website": [
      "google.com"
    ]
  },
  "with_urn": false,
  "count": 100
}'
[
  {
    "@type": "LinkedinGoogleCompany",
    "url": "<string>",
    "urn": {
      "type": "<string>",
      "value": "<string>"
    },
    "alias": "<string>",
    "title": "<string>",
    "description": "<string>"
  }
]

Headers

access-token
string
required

Body

application/json
keywords
string[]
required

Company keywords. For example, company name or company website

Maximum length: 15
Examples:
{
"by name": ["Software as a Service (SaaS)"],
"by website": ["google.com"]
}
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
with_urn
boolean
default:false

If you need to include urns to the response. It increases execution times.

count
integer
default:100

Max result count

Required range: 0 < x < 1000

Response

Successful Response

url
string
required
urn
object | null
required
alias
string
required
title
string
required
description
string
required
@type
string
default:LinkedinGoogleCompany
I