For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
GuidesWhite-labelAPI Reference
GuidesWhite-labelAPI Reference
  • Panic API Reference
      • POSTCreate a lead
      • GETGet a lead
    • Errors & status codes
LogoLogo
Panic API ReferenceLeads

Create a lead

POST
/panic-api/v2/leads
POST
/panic-api/v2/leads
$curl -X POST https://staging-panic.aura.services/panic-api/v2/leads \
> -H "Authorization: Bearer <token>" \
> -H "Content-Type: application/json" \
> -d '{
> "mobileNumber": "+14155552671"
>}'
1{
2 "id": "lead_9f8b7c6d5a4e3f2b1c0d",
3 "status": "created"
4}

Creates a lead from the personal-safety public documentation surface.

Was this page helpful?
Previous

Get a lead

Next
Built with

Authentication

AuthorizationBearer

Bearer authentication of the form Bearer <token>, where token is your auth token.

Request

This endpoint expects an object.
mobileNumberstringRequired
firstNamestringOptional
lastNamestringOptional
emailstringOptionalformat: "email"

Response

Lead created.
idstring
statusstring

Errors

400
Bad Request Error
401
Unauthorized Error