1. Leads
LeadsyGroup
  • API V1
    • Users
      • Remove a user avatar
      • Upload a user avatar
      • Create a user
      • Validate JWT
      • Find a user by email
      • Show all users
      • Login into the application
      • Reset user password
      • Show a user
      • Update a user
    • Stages
      • List stages
    • Companies
      • Remove a company avatar
      • Upload a company avatar
      • Create company
      • List companies
      • Get an specific company
    • User Onboarding
      • Mark as completed the onboarding
      • Approve T&C
    • User Company Relation
      • Create user_accesses for a user
      • Show user_accesses for a user
      • Remove an specific user_access
      • Update user_accesses for a user
    • Accesses
      • List all available accesses
      • List access by id
    • Memberships
      • List available memberships
      • Info of a membership
    • Legal Terms
      • Current available for signature
      • Get legal terms per id
    • Invitations
      • Get all pending invitations for a company
      • Get invitation by code (no auth required)
      • Creates user invitation
      • Delete an invitation
      • Get pending invitations by email
    • Import
      • Import leads for a company
      • Download leads import template for a company
      • List of ImportFiles
      • Check status of an import
    • Campaigns
      • List campaigns for a company
      • Get campaign by id
    • Questions
      • Bulk update question options for a campaign
      • List questions for a campaign
      • Get question for ID
      • Create a question for company
      • List questions for a company
      • Delete a question for company
      • Modify questions priority order for a company
    • Cycles
      • Modify cycles flag in company
      • Create a cycle for company
    • Membership
      • Attach membership to company
      • Cancel current subscription
    • Company Users
      • Get users from an specific company
    • Leads
      • Create a lead for a company
        POST
      • List company leads
        GET
      • List duplicate company leads
        GET
      • List unassigned company leads
        GET
      • List lead metrics by stage
        GET
      • Get lead by id
        GET
      • Update a lead
        PUT
    • Lead Notes
      • Create a note for a lead
      • Delete a note from a lead
    • User Providers
      • Show providers for a user
    • Sources
      • Create a source for a company
      • List sources for a company
      • Delete a source for company
      • Modify sources priority order for a company
      • Assign a user access to a source
      • Remove a user access from a source
    • Appointments
      • List appointments for the current user
      • Get appointment by id
    • Territories
      • Create territories for a company
      • List territories for a company
  1. Leads

List company leads

GET
/api/v1/companies/{company_id}/leads

Request

Path Params

Query Params

Header Params

Responses

🟢200
application/json
Leads list
Bodyapplication/json

🟠401
🟠403
🟠404
🔴500
Request Request Example
Shell
JavaScript
Java
Swift
curl --location '/api/v1/companies//leads?page=undefined&limit=undefined&full_name_cont=John&full_name_eq=John%20Doe&zip_code_cont=90&zip_code_eq=90210&campaign_name_cont=Summer&campaign_name_eq=Summer%20Campaign%202026&ad_name_cont=Retargeting&ad_name_eq=Retargeting%20Ad%2001&platform_eq=facebook&stage_id_eq=246&lead_date_gteq=2026-01-01T00%3A00%3A00Z&lead_date_lteq=2026-12-31T23%3A59%3A59Z&participant_email_cont=%40mail.com&participant_email_eq=john%40mail.com&participant_phone_number_cont=(516)&participant_phone_number_eq=+15550001111&participant_token_eq=abc123token&participant_first_application_at_gteq=2026-01-01T00%3A00%3A00Z&participant_last_application_at_lteq=2026-12-31T23%3A59%3A59Z&user_leads_status_eq=new_lead&user_leads_ranked_lead_eq=' \
--header 'Authorization;'
Response Response Example
200 - Example 1
{
    "leads": [
        {
            "id": 0,
            "full_name": "string",
            "zip_code": "string",
            "platform": "string",
            "city": "string",
            "zone": "string",
            "confidential_number": "(516) 789-xxxx",
            "lead_date": "08/21/2025",
            "stage": {
                "id": 0,
                "label": "string",
                "hex_color": "string",
                "stage_type": "string",
                "label_translate": {},
                "priority": 0,
                "icon_type": "string",
                "icon_color": "string",
                "sub_stages": [
                    {}
                ]
            },
            "assigned_to": {
                "id": 0,
                "status": "string",
                "assigned_at": "string",
                "user": {
                    "id": 0,
                    "name": "string",
                    "avatar_url": "string"
                }
            }
        }
    ],
    "meta": {
        "current_page": 0,
        "next_page": 0,
        "prev_page": 0,
        "total_pages": 0,
        "total_records": 0
    }
}
Modified at 2026-03-23 15:30:28
Previous
Create a lead for a company
Next
List duplicate company leads
Built with