Skip to main content
POST
/
v1
/
site-topics
Match a website to intent topics
curl --request POST \
  --url https://api.aws53.cloud/v1/site-topics \
  --header 'Content-Type: application/json' \
  --data '
{
  "url": "https://snowflake.com"
}
'
{
  "data": {
    "company": "<string>",
    "summary": "<string>",
    "keywords": [
      "<string>"
    ],
    "topics": [
      {
        "topicId": 123,
        "topicName": "<string>",
        "type": "<string>",
        "industry": "<string>",
        "category": "<string>",
        "similarity": 123,
        "matchedKeyword": "<string>"
      }
    ]
  }
}

Body

application/json
url
string<uri>
required
Minimum string length: 10
Example:

"https://snowflake.com"

Response

Matched topics

data
object
required