Get Session Status
Retrieves an open session. Session creation is synchronous, so provider results are returned by POST /sessions; this endpoint does not need to be polled for processing completion.
Status Codes
- 200: Session is open
- 400: Session token is invalid
- 410: Session is closed
Response Data
data.session_token: The session token onlymeta.session_params: Normalized address valuesmeta.service_address: Formatted service addressmeta.agent_status: Agent status values
Important Notes
- The session token is part of the URL path for all requests after creation
- Sessions remain open until they are closed with DELETE
Example Response
{
"message": "Session agents have successfully matched the service address. Please proceed.",
"request_status": "ok",
"data": {
"session_token": "SESSION_TOKEN_PLACEHOLDER"
},
"meta": {
"session_token": "SESSION_TOKEN_PLACEHOLDER",
"session_status": "open",
"session_params": {
"street1": "29090 Tiffany Dr E",
"street2": "Apt 4B",
"city": "Southfield",
"state": "MI",
"zip": "48034",
"latitude": "42.50189",
"longitude": "-83.29528",
"campaign_id": null
},
"service_address": "29090 Tiffany Dr E Apt 4B, Southfield, MI 48034-4540",
"mdu": true,
"agent_status": {
"geocoding": "matched",
"internet": "matched",
"checkout": "pending"
},
"created_at": "2026-07-13T12:26:15.618-04:00",
"updated_at": "2026-07-13T12:26:15.618-04:00",
"responded_at": "2026-07-13T16:26:16.900Z",
"hum_data_set": "26011015"
}
}
Authorizations
Bearer token authentication using API tokens.
Include the token in the Authorization header as: Authorization: Bearer <token>
Obtain tokens from your Hum representative or contact support@letshum.com. There is no self-serve API key dashboard.
Path Parameters
The session token identifying the specific session The session token provided by the Hum API. Used to connect the response to the session in the client system.
"XqCmeTVgYXrbWrZFZEymkD"
Response
Session data retrieved successfully
A message returned by the API. Includes a human-readable message about the status of the request.
"What happened in the most recent request."
An informational summary returned in API response bodies: ok for successful responses, warning for standard request errors, and error for endpoint-specific failures. Integrations must use the HTTP status code, not request_status, to determine whether a request succeeded.
ok, warning, error "ok"
Session response data. The formatted service address and normalized address components are returned in meta.
Session metadata, including normalized input values, formatted service address, session status, and the Hum data set used for the response.
