跳转到主要内容
POST
/
technologies
/
lookup
cURL
curl --request POST \
  --url https://api.pubrio.com/technologies/lookup \
  --header 'Content-Type: application/json' \
  --header 'pubrio-api-key: <api-key>' \
  --data '{
  "domain_search_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "domain": "pubrio.com",
  "linkedin_url": "https://www.linkedin.com/company/pubrio",
  "domain_id": 123,
  "profile_id": 123
}'
{
  "data": [
    {
      "category_id": 1,
      "technologies": [
        {
          "icon": "Google Ads.svg",
          "name": "Google Ads",
          "tag_id": 4580,
          "version": null,
          "website": "https://ads.google.com/",
          "location": "pubrio.com",
          "logo_url": "https://buckets.pubrio.com/technology-logo/NDU4MGIyOXNtYjhheGdvb2dsZS1hZHM=.jpg",
          "last_detected": null,
          "first_detected": "2023-01-07T06:40:56.597287"
        }
      ],
      "category_name": "Advertising"
    },
    "..."
  ]
}

Authorizations

pubrio-api-key
string
header
required

一个唯一的 API 令牌,用于标识您通过 API 执行的操作以及相应的权限和操作。您可以在 设置 部分创建该令牌。

Body

application/json
  • Domain Search ID
  • Domain
  • LinkedIn URL
  • Domain ID
domain_search_id
string<uuid>
required

用于公司检索操作的唯一标识符。

profile_id
integer
required

发起请求的团队标识符。该ID有助于将查找与特定团队(工作区)关联,实现数据检索和额度追踪。

更多信息请参见团队标签下的 user details 端点。

domain
string

用于公司检索操作的公司域名。如果收到的地址为 www.pubrio.comhttps://docs.pubrio.com/,系统会自动转换为 pubrio.com 进行处理。

Example:

"pubrio.com"

linkedin_url
string

LinkedIn 公司主页的完整 URL。URL 需以 http 开头且包含 linkedin.com/company/

Example:

"https://www.linkedin.com/company/pubrio"

domain_id
integer

用于域名检索操作的唯一标识符。

Response

包含相关详细信息的成功响应。

data
object | null

响应信息取决于具体接口。