Skip to main content
GET
/
v1
/
website
/
{team}
/
info
Get website info.
curl --request GET \
  --url https://app.smartsend.io/api/v1/website/{team}/info \
  --header 'Authorization: Bearer <token>'
{
  "url": "smartsend.io",
  "trailing": "true",
  "subscribed": "false",
  "owner": {
    "name": "John Doe",
    "email": "johndoe@example.com"
  }
}

Authorizations

Authorization
string
header
required

Provide API Token as Bearer authentication

api_token
string
query
required

Query API Token

Path Parameters

team
string
required

The domain of the website making the agent lookup request

Response

Successful operation

Website Resource

url
string<url>
required

Url of the website

Example:

"smartsend.io"

trailing
boolean
required

Whether or not the website is currently trialing the system

Example:

"true"

subscribed
boolean
required

Whether or not the website has a valid subscription

Example:

"false"

owner
object
required

Owner of the website

I