Skip to main content
POST
/
api
/
linkedin
/
user
/
patents
/linkedin/user/patents
curl --request POST \
  --url https://api.anysite.io/api/linkedin/user/patents \
  --header 'Content-Type: application/json' \
  --header 'access-token: <access-token>' \
  --data '{
  "timeout": 300,
  "urn": "urn:li:fsd_profile:ACoAACmguogBIdbijM6YpcIganWLJ67yKyV5kd4",
  "count": 123
}'
[
  {
    "@type": "LinkedinUserPatent",
    "name": "<string>",
    "id": "<string>",
    "issued_at": "<string>",
    "text": "<string>",
    "url": "<string>",
    "inventors": [
      {
        "@type": "LinkedinUserPatentInventorUser",
        "urn": {
          "type": "fsd_company",
          "value": "<string>"
        }
      }
    ],
    "inventor_count": 123
  }
]

Headers

access-token
string
required

Body

application/json
urn
object
required

User URN, only fsd_profile urn type is allowed

count
integer
required

Max result count

Required range: x > 0
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

name
string
required
@type
string
default:LinkedinUserPatent
id
string | null
issued_at
string | null
text
string | null
url
string | null
inventors
LinkedinUserPatentInventorUser · object[] | null
inventor_count
integer | null
I