Skip to main content
GET
/
api
/
v1
/
crm
/
leads
/
notes
/
{id}
curl "https://server.smartlead.ai/api/v1/crm/leads/notes/123?api_key=YOUR_KEY"
{
  "ok": true,
  "data": [
    {
      "id": 456,
      "lead_id": 123,
      "note_message": "Spoke with lead, interested in enterprise plan",
      "created_by": "John Doe",
      "created_at": "2025-12-01T10:30:00.000Z"
    }
  ]
}

Path Parameters

id
number
required
The lead ID to retrieve notes for
curl "https://server.smartlead.ai/api/v1/crm/leads/notes/123?api_key=YOUR_KEY"

Response Codes

200
Success
Request successful
400
Bad Request
Invalid request parameters or malformed request body
401
Unauthorized
Invalid or missing API key
422
Validation Error
Request validation failed. Check parameter types and constraints.
{
  "ok": true,
  "data": [
    {
      "id": 456,
      "lead_id": 123,
      "note_message": "Spoke with lead, interested in enterprise plan",
      "created_by": "John Doe",
      "created_at": "2025-12-01T10:30:00.000Z"
    }
  ]
}