Instantly logo

List Leads (Instantly)

InstantlyList Leads (Instantly)

POST/v1/instantly-list-leads
texau__instantly-list-leadsintegration
cURL · api.texau.app
84ms
POST/v1/instantly-list-leads
{
  "limit": 1,
  "starting_after": "sample-value",
  "search": "sample-value",
  "filter": "sample-value",
  "campaign": "sample-value",
  "list_id": "sample-value",
  "in_campaign": true,
  "in_list": true,
  "is_website_visitor": "https://acme.com",
  "distinct_contact": true,
  "enrichment_status": 1,
  "esg_code": "sample-value",
  "smart_view_id": "sample-value",
  "id": "sample-value",
  "excluded_id": "sample-value",
  "contact": "sample-value",
  "organization_user_id": "Acme, Inc.",
  "query": "sample-value"
}
200 Accepted
{
  "ok": true,
  "data": {
    "lead_id": "rec_4f3a91",
    "lead_email": "[email protected]",
    "lead_first_name": "sample",
    "lead_last_name": "sample",
    "company_name": "sample",
    "company_domain": "https://acme.com",
    "mobile_number": "sample",
    "website": "https://acme.com",
    "email_click_count": "[email protected]",
    "email_open_count": "[email protected]",
    "email_reply_count": "[email protected]",
    "esp_code": 1,
    "lt_interest_status": "valid",
    "status": "valid",
    "organization_id": "rec_4f3a91",
    "personalization": "sample",
    "payload_company_name": "sample",
    "payload_email": "[email protected]",
    "payload_first_name": "sample",
    "payload_last_name": "sample",
    "payload_mobile_number": "sample",
    "payload_website": "https://acme.com",
    "payload_personalization": "sample",
    "payload_has_tried_competitor": true,
    "payload_past_customer": true,
    "timestamp_created": "sample",
    "timestamp_updated": "sample",
    "timestamp_last_interest_change": "sample",
    "upload_method": "sample",
    "status_summary": "valid",
    "next_starting_after": "sample"
  }
}

Retrieve a paginated list of leads from Instantly.ai using advanced filters, search, and campaign parameters.

Install

Add list leads (instantly) to your MCP client.

Drop this into claude_desktop_config.json (or your client's equivalent) and the tool shows up in any chat.

claude_desktop_config.json
{
  "mcpServers": {
    "texau": {
      "command": "npx",
      "args": ["-y", "@texau/mcp-server"],
      "env": { "TEXAU_API_KEY": "..." }
    }
  }
}

Tool name: texau__instantly-list-leads

When to use this.

The "List Leads (Instantly)" action allows users to efficiently retrieve a paginated list of leads from Instantly.ai, utilizing advanced filtering, search capabilities, and campaign parameters. Key input parameters include 'limit' for controlling the number of returned items, 'search' for querying specific lead attributes like first name or email, and various filters such as 'campaign' and 'list_id' to refine results based on user-defined criteria. The action outputs essential lead information, including lead ID, email, first and last names, company details, and engagement metrics like email click and open counts. This functionality is ideal for sales and marketing teams seeking to streamline lead management, enhance targeting strategies, and improve conversion rates through precise data retrieval and analysis. As part of the integration category, this action supports seamless lead generation and management workflows.

Try it

Run a sample request.

The response is a deterministic, cached example. No live call, no credits used.

List Leads (Instantly)

Try it

The number of items to return (1-100).

Forward pagination cursor (Lead ID or Email depending on distinct_contacts setting).

Search string for First Name, Last Name, or Email.

Filter criteria (e.g., FILTER_VAL_CONTACTED, FILTER_LEAD_INTERESTED).

Campaign ID to filter leads.

List ID to filter leads.

Response is cached — no live API call.

Response

Output schema.

Every field returned in `data`. Click rows to expand nested objects.

FieldType
  • lead_id
    Lead Id
    string
  • lead_email
    Lead Email
    string
  • lead_first_name
    Lead First Name
    string
  • lead_last_name
    Lead Last Name
    string
  • company_name
    Company Name
    string
  • company_domain
    Company Domain
    nullablestring
  • mobile_number
    Mobile Number
    nullablestring
  • website
    Website
    string
  • email_click_count
    Email Click Count
    nullablenumber
  • email_open_count
    Email Open Count
    nullablenumber
  • email_reply_count
    Email Reply Count
    nullablenumber
  • esp_code
    Esp Code
    nullablenumber
  • lt_interest_status
    Lt Interest Status
    nullablenumber
  • status
    Status
    number
  • organization_id
    Organization Id
    nullablestring
  • personalization
    Personalization
    nullabletext
  • payload_company_name
    Payload Company Name
    nullablestring
  • payload_email
    Payload Email
    nullablestring
  • payload_first_name
    Payload First Name
    nullablestring
  • payload_last_name
    Payload Last Name
    nullablestring
  • payload_mobile_number
    Payload Mobile Number
    nullablestring
  • payload_website
    Payload Website
    nullablestring
  • payload_personalization
    Payload Personalization
    nullabletext
  • payload_has_tried_competitor
    Payload Has Tried Competitor
    nullableboolean
  • payload_past_customer
    Payload Past Customer
    nullableboolean
  • timestamp_created
    Timestamp Created
    nullablestring
  • timestamp_updated
    Timestamp Updated
    nullablestring
  • timestamp_last_interest_change
    Timestamp Last Interest Change
    nullablestring
  • upload_method
    Upload Method
    nullablestring
  • status_summary
    Status Summary
    nullableobject
  • next_starting_after
    Next Starting After
    nullablestring

Integrate

Copy-pasteable snippets.

Real endpoint: https://v3-api.texau.com/api/v1/instantly-list-leads. Auth: x-api-key.

cURL · api.texau.app
84ms
POST/v1/instantly-list-leads
curl -X POST 'https://v3-api.texau.com/api/v1/instantly-list-leads' \
  -H 'x-api-key: $TEXAU_API_KEY' \
  -H 'content-type: application/json' \
  -d '{"limit":1,"starting_after":"sample-value","search":"sample-value","filter":"sample-value","campaign":"sample-value","list_id":"sample-value","in_campaign":true,"in_list":true,"is_website_visitor":"https://acme.com","distinct_contact":true,"enrichment_status":1,"esg_code":"sample-value","smart_view_id":"sample-value","id":"sample-value","excluded_id":"sample-value","contact":"sample-value","organization_user_id":"Acme, Inc.","query":"sample-value"}'
200 Accepted
{
  "ok": true,
  "data": {
    "lead_id": "rec_4f3a91",
    "lead_email": "[email protected]",
    "lead_first_name": "sample",
    "lead_last_name": "sample",
    "company_name": "sample",
    "company_domain": "https://acme.com",
    "mobile_number": "sample",
    "website": "https://acme.com",
    "email_click_count": "[email protected]",
    "email_open_count": "[email protected]",
    "email_reply_count": "[email protected]",
    "esp_code": 1,
    "lt_interest_status": "valid",
    "status": "valid",
    "organization_id": "rec_4f3a91",
    "personalization": "sample",
    "payload_company_name": "sample",
    "payload_email": "[email protected]",
    "payload_first_name": "sample",
    "payload_last_name": "sample",
    "payload_mobile_number": "sample",
    "payload_website": "https://acme.com",
    "payload_personalization": "sample",
    "payload_has_tried_competitor": true,
    "payload_past_customer": true,
    "timestamp_created": "sample",
    "timestamp_updated": "sample",
    "timestamp_last_interest_change": "sample",
    "upload_method": "sample",
    "status_summary": "valid",
    "next_starting_after": "sample"
  }
}

Output

Results land in a TexAu table.

Sample rows below.

Real result preview coming soon.

InputStatusScore
[email protected]valid96
[email protected]risky54
[email protected]invalid12

Workflow

A real example.

Trigger → list leads (instantly) → enrich → push to your CRM. ~80 ms operator effort, the rest runs in the background.

Step 1TriggerNew row, webhook, or schedule.
Step 2List Leads (Instantly)Instantly action runs.
Step 3EnrichWaterfall fills missing fields.
Step 4Push to CRMHubSpot / Salesforce / Pipedrive.

Built for

Who runs this.

GTM EngineerRevOpsAgency

Reliability

Rate limits & reliability.

  • Per-minute limitNo public cap
  • Per-day limitPlan-defined
  • RetriesAutomatic w/ backoff
  • ModeSync

Errors

HTTP status codes.

What each response means and what to do about it.

CodeCauseFix
200 OKAction ran. Data in `data`.Read response.
400 Bad RequestMissing or malformed input.Validate against the input schema.
401 UnauthorizedMissing or invalid `x-api-key`.Re-issue from /api-platform.
403 ForbiddenWorkspace lacks plan tier.Upgrade or contact sales.
404 Not FoundAction key not recognized.Verify the slug.
429 Rate LimitedPer-minute or per-day cap hit.Backoff; reduce concurrency.
500 Server ErrorUnexpected TexAu issue.Retry with backoff.
502 Bad GatewayUpstream provider 5xx.Retry; we surface root cause.
504 TimeoutUpstream slower than maxLatency.Switch to `isAsync` polling.

Pricing

What it costs to run.

Light tier

Pricing tier on /pricing. Per-action credit cost is private.

FAQ.

  • Is this real-time?

    Yes. Synchronous actions return in ~1–4 s. Long-running work uses async polling (see status 504 → switch to async).

  • Do I get charged on failure?

    No. Verified failures cost zero credits. Provider miss / 5xx / timeout cascade to the next provider in the waterfall when applicable.

  • Does it work with Claude / Cursor via MCP?

    Yes. Add the texau MCP server to your client config, then call `texau__instantly-...` directly.

  • What CRMs can I push results to?

    HubSpot, Salesforce, Pipedrive, Zoho, and GoHighLevel are bidirectional. Smartlead, Instantly, Lemlist, HeyReach, Apollo Sequences, and Reply.io for outbound.

Run List Leads (Instantly) in 60 seconds.

Pull your API key, paste the cURL, ship to your CRM.