Saltar al contenido principal
GET
/
email
/
public
/
v1
/
subscriptions
/
{email_address}
Get email subscription status for an email address
curl --request GET \
  --url https://api.hubapi.com/email/public/v1/subscriptions/{email_address}
{
  "subscribed": false,
  "markedAsSpam": false,
  "portalId": 62515,
  "bounced": false,
  "email": "jerry@example.org",
  "subscriptionStatuses": [],
  "status": "unsubscribed"
}

Documentation Index

Fetch the complete documentation index at: https://developers.hubspot.es/docs/llms.txt

Use this file to discover all available pages before exploring further.

Parámetros de ruta

email_address
string<email>
requerido

The email address for which you are requesting subscription status.

Respuesta

Email subscription status retrieved successfully

subscribed
boolean

Whether the email is subscribed to all emails

markedAsSpam
boolean

Whether the email has been marked as spam

portalId
integer

The portal ID

bounced
boolean

Whether the email has bounced

email
string<email>

The email address

subscriptionStatuses
object[]
status
string

Overall subscription status (e.g., subscribed, unsubscribed)

Last modified on April 13, 2026