Skip to main content
2026-01-09
v1.2.5 – Reliability, Richer Data

πŸš€ What’s New

This release focuses on improved LinkedIn reliability, richer profile data, and new automation features.

πŸ”’ LinkedIn Connection Reliability

  • Fixed: LinkedIn accounts now reconnect smoothly without false authentication errors
  • Fixed: Sales Navigator β€œupgrade required” errors no longer appear when visiting profiles within your daily limits
  • Users should experience far fewer connection interruptions when running LinkedIn workflows

πŸ“¬ LinkedIn Invitation Management

New actions for managing your LinkedIn invitations with precision:
ActionDescription
Accept InvitationAccept a single invitation provided as input
Withdraw InvitationWithdraw a single invitation provided as input
Accept InvitationsAccept all pending invitations (now supports async execution)
Withdraw InvitationsWithdraw all pending invitations (now supports async execution)
These actions enable selective invitation workflows, giving you precise control over which invitations to accept or decline.

πŸ’° Richer LinkedIn Profile Data

When searching LinkedIn Sales Navigator, you now get enhanced profile information:
  • Dynamic headlines shown by LinkedIn
  • Job summaries and descriptions
  • Work experience details previously unavailable
This richer data enables better targeting and more personalized outreach.

⚑ One-Shot Callbacks for Automation Tools

New callback option for customers using automation platforms like n8n, Make, or Zapier:
  • Receive one notification when a job finishes instead of multiple callbacks during execution
  • Dramatically reduces costs for webhook-based integrations
  • Set callback.on to final instead of all to enable this mode

πŸ“Š Better Run Visibility

  • Output counts are now visible directly in run details
  • Know exactly how many results each run produced
  • Clearer ROI tracking and performance monitoring

πŸ” Clearer Error Messages

When LinkedIn credentials are invalid, you now receive clear, actionable error messages instead of confusing codes. This makes troubleshooting faster and reduces frustration.

πŸ“ What This Means for You

  • More Reliable: LinkedIn authentication and Sales Navigator access issues are resolved
  • Better Targeting: Richer profile data enables more personalized outreach
  • Lower Integration Costs: One-shot callbacks can reduce automation platform costs significantly
  • Clearer Insights: See exactly what each run produces with output counts
2025-12-24
v1.2.4 – Sales Navigator Actions & Error Handling

πŸš€ What’s New

This release enhances Sales Navigator and LinkedIn actions with improved error handling, new callback fields, and standardized error responses.

πŸ”” Scheduled Run Tracking in Callbacks

Callback payloads now include a new field for scheduled runs:
{
  "scheduled_run_uid": "<uuid>"
}
This UUID field is included when the callback originates from a scheduled run, making it easier to correlate callbacks with their scheduled execution context.

✨ Enhanced Error Responses

We’ve significantly improved error response documentation across Sales Navigator and LinkedIn actions with detailed examples and new status codes:
Status CodeDescriptionChange
400 Bad RequestInvalid parameters or inputNow includes detailed examples
402 Payment RequiredAccess denied due to plan limitationsNew
422 Unprocessable EntityAction abortedNew
424 Failed DependencyIntegration or external service errorsExpanded with multiple examples
429 Too Many RequestsRate limit exceededNew (replaces 500)

Rate Limit Response Details

429 responses now include detailed rate limit information:
{
  "error": {
    "code": 429,
    "status": "Too Many Requests",
    "details": {
      "Retry-After": "60",
      "X-RateLimit-Limit": "2",
      "X-RateLimit-Reset": "1754402101",
      "X-RateLimit-Type": "/v1/actions"
    },
    "message": "Rate limit exceeded (/v1/actions)"
  }
}

πŸ”§ Bug Fixes & Improvements

LinkedIn Post Extraction

  • πŸ› Sanitize LinkedIn post URLs by stripping query parameters to avoid duplicate/mismatched post references and improve cache/canonicalization correctness

Identity and Authentication

  • ✨ If a SN_ACCOUNT_UPGRADE error occurs, the related identity will be ignored for 60 seconds, reducing repeated failures and improving overall action reliability (later, this will apply only to managed identities)

Cross-Action Error Messaging

  • ✨ Standardized error messages across actions for consistency, aligning error codes/messages and improving client-side parsing

πŸ“ What This Means for You

  • Better Debugging: Detailed error examples help identify issues faster
  • Improved Rate Limit Handling: 429 responses with headers enable smarter retry logic
  • Scheduled Run Correlation: New scheduled_run_uid field links callbacks to their schedule
  • More Reliable Actions: Automatic identity cooldown on SN upgrade errors prevents cascading failures
  • Cleaner Post URLs: Post extraction now handles URLs with query parameters correctly
2025-12-17
v1.2.3 – LinkedIn Actions & API Improvements

πŸš€ What’s New

This release improves LinkedIn invitation handling, adds new output fields for post activity, and standardizes API error responses.

πŸ”” LinkedIn Invitations β€” Schema Improvements

We’ve refactored LinkedIn invitation actions for better consistency and reliability:

Standardized Invitation Identifiers

All invitation-related actions now use consistent identifiers:
  • linkedin_invitation_id β€” String identifier for the invitation
  • linkedin_invitation_urn β€” LinkedIn URN for stable reference
ActionChanges
Accept InvitationsSimplified input β€” now requires only linkedin_invitation_urn
Extract Received InvitationsRenamed sent_time β†’ sent_date for consistency
Extract Sent InvitationsNow returns linkedin_invitation_id + linkedin_invitation_urn
Withdraw InvitationsOutput now returns invitation IDs instead of profile URL
⚠️ Migration Note: If you’re using invitation actions, update your integrations to use the new field names.

✨ LinkedIn Post Activity β€” Author Information

The People Post Activity action now includes detailed author information:
  • author β€” The person who shared/posted the content
  • original_author β€” The original content creator (for reshares)
Both objects include profile identifiers, details (firstname, lastname, headline), URLs, and images.

πŸ”§ Bug Fixes & Improvements

LinkedIn Post Commenters

  • πŸ› Fixed missing first_name and last_name fields β€” these were returning empty strings even when full_name was populated

LinkedIn Post Likers

  • πŸ› Removed linkedin_company_id from output (field only applied to company likes)

LinkedIn Search Content

  • ✨ Added linkedin_company_url to output

InMail & Message File Attachments

  • πŸ› Fixed file validation for Base64-encoded attachments
  • πŸ› Fixed filename extension validation regex

API Error Responses

  • ✨ Added standardized error schemas: PaymentRequired (402), Forbidden (403), NotFound (404), UnprocessableEntity (422), TooManyRequests (429)

Pagination

  • ✨ Updated default page size to 100 for improved throughput on applicable actions

πŸ“š Documentation

2025-12-10
v1.2.2 – Webhook Improvements & Bug Fixes

πŸš€ What’s New

Major refactors landed around account rotation and integration limits, introducing caching layers that reduce load and standardize identity handling. HTTP service robustness improved (compressed responses, stricter content-length checks), and several LinkedIn actions received targeted fixes. Run callbacks now include additional identifiers/headers and OpenAPI updates, and error labels were standardized across the stack for clearer diagnostics.

πŸ”” Improved Webhook Delivery Identification & Deduplication

We’re introducing two important enhancements to our webhook callback system to make delivery tracking and deduplication more reliable for all integrators.

πŸ“Œ New Stable Callback Reference (callback_ref_uid)

Webhook payloads now include a new field:
{
  "callback_ref_uid": "<uuid>"
}
This identifier is:
  • Stable across retries
  • Unique per callback event
  • Designed specifically to allow safe deduplication on the client side
This ensures that even if your endpoint receives multiple retries, you can always identify which callbacks correspond to the same logical event.

πŸ“Œ New Delivery Attempt Headers

Webhook requests now include two additional HTTP headers:
HeaderDescription
X-Callback-RefStable callback identifier, identical across retries (same as callback_ref_uid in the payload).
X-Run-CallbackUnique identifier for each delivery attempt. Changes on every retry.
These headers allow you to:
  • Track each individual delivery attempt
  • Log retries more easily
  • Distinguish between event identity (stable) and delivery attempt identity (per retry)

πŸ“˜ Why this matters

These changes bring our webhook behavior in line with industry best practices and make it easier to:
  • Detect and safely ignore duplicate callbacks
  • Correlate retries with the same logical event
  • Debug delivery attempts via unique identifiers
  • Keep payloads stable and idempotent

βœ… Summary

  • callback_ref_uid is now included in the payload β†’ stable event identifier
  • X-Callback-Ref β†’ stable ID in headers
  • X-Run-Callback β†’ unique per delivery attempt
  • Retries always resend the same payload, preserving the original run status and data
πŸ“˜ Managing Callbacks Documentation

πŸ”§ Action Fixes

  • πŸ› Handled missing job data by throwing a descriptive action error, preventing silent failures.

LinkedIn Post Likers Extraction

  • πŸ› Removed linkedin_profile_handle from the output schema because the source does not provide it.

Company Enrichment

  • πŸ› Fixed company domain resolution during company enrichment to return the correct domain.
2025-11-26
v1.2.1 – Stability & Reliability Improvements

πŸš€ Edges New Release

This release focuses on improving platform stability, reliability, and user experience across LinkedIn automations, engagement identities, and core API functionality.

πŸ”’ Improved LinkedIn Session Stability

  • Enhanced IP Management: Implemented a new progressive IP rotation system that significantly improves LinkedIn session reliability
  • Fewer Connection Errors: Reduced intermittent failures and reconnection issues during LinkedIn operations
  • Better Error Handling: More reliable login, refresh, and checkpoint flows with improved retry logic
  • Smoother Workflows: Users should experience fewer session-related interruptions and more stable automation runs

πŸ’° Engagement Identities Billing Enhancements

  • Improved Billing Accuracy: New buffer mechanism ensures more accurate usage tracking and billing for engagement identities
  • Multiple Plan Tiers: Support for tiered pricing plans based on usage volume, providing better flexibility and cost optimization
  • Better Timeframe Validation: Enhanced validation ensures billing stays within subscription timeframes for accurate charges
  • Clearer Error Messages: Improved error messages when creating identities to distinguish between β€œNo plan available” and β€œNo more room in plan” scenarios

πŸ“Š Sales Navigator & LinkedIn Actions Improvements

  • Increased Limits: Sales Navigator company employee search now supports up to 2,500 results (previously 1,000) per request
  • Enhanced Profile Data: Company logo URLs are now included in profile experiences when extracting people data
  • Fixed Post-Likers Actions: Resolved issues with post-likers actions when using β€œshare” URLs as input
  • Better Pagination: Fixed error 424 issues on multiple-output actions by preventing unnecessary pagination when no results are available
  • Improved Post Commenters: Enhanced validation for post commenters extraction to handle edge cases more reliably

πŸ”§ API & Automation Improvements

  • Output Retrieval by Run UUID: You can now retrieve outputs directly by Run UUID, making it easier to access run results
  • Better Workflow Support: Enhanced workflow schemas with improved support for optional steps and output anchoring
  • Real Dates from IDs: Actions now return accurate dates when retrieving data by ID

πŸ› οΈ Platform Reliability

  • Automated Data Retention: Implemented automated cleanup of old runs and usage data to maintain optimal platform performance
    • Runs older than 90 days are automatically archived
    • Usage records older than 5 days are cleaned up
    • This ensures faster queries and better overall system performance

πŸ“ What This Means for You

  • More Reliable Automations: LinkedIn actions should run more smoothly with fewer session interruptions
  • Better Billing Accuracy: Engagement identities billing is now more precise and transparent
  • Increased Capacity: Sales Navigator searches can now handle larger result sets
  • Improved Developer Experience: Better error messages and API capabilities make integration easier
  • Faster Performance: Automated data retention keeps the platform running smoothly over time
2025-11-05
v1.2.0 – Latest Release

πŸš€ Edges New Release

New release adds several new features and improvements to the Edges platform.
  • New Engagement Identities mode for running LinkedIn outreach actions without consuming credits
  • Improved UI overall with updated components for better fluidity and user experience

πŸ’° Engagement Identities Pricing & Billing

  • New billing model: Engagement Identities are billed monthly based on peak usage
  • Starting at $7.99/identity/month with dynamic pricing that decreases with volume
  • Credit-free outreach: Run a comprehensive set of outreach actions (connect, message, follow, engage) without consuming credits
  • Flexible usage: Convert existing identities to engagement mode or create new ones via API
  • Live monitoring: Track current billing status and peak usage
πŸ“˜ Learn more about Engagement Identities

πŸš€ Update on Extract LinkedIn People

Here are the main changes:
  • πŸ‘” With the experiences parameter, we now retrieve only the first five companies’ experiences. The total number may vary depending on the profile. If you want more experiences, use the linkedin-extract-people-experiences endpoint.
  • πŸ’‘ With the skills parameter, we now get only a few skills (one or two) β€” again, this can vary by profile. If you want more skills, use the linkedin-extract-people-skills endpoint.
  • πŸ“‹ Both actions use the same input payload as linkedin-extract-people.
  • ⚠️ Note: these two new actions share the same limit. We’ll define the daily and per-minute request limits in a future release.

πŸ”§ Technical Updates

  • Rate limit simplification: Simplified rate limiting system (plans-based rate limits will be introduced in the next release cycle)
2025-10-29
New Action & Fixes

✨ New Action

  • Extract LinkedIn Received Invitations β€” New linkedin-extract-received-invitations action to extract invitations you’ve received on LinkedIn, including sender details, messages, and timestamps.

πŸ”§ Improvements

  • Enhanced LinkedIn Native Login: Improved stability with broader support for LinkedIn challenge handling, ensuring more reliable authentication flows.
  • Better Profile Data Extraction: Enhanced β€œexperiences” field parsing in the linkedin-extract-people action for more accurate profile information.
  • Live Mode Enhancements: custom_data is now included in both responses and errors for live execution mode, improving compatibility with automation tools and making it easier to track and reconcile requests.
2025-10-15
v1.1.0 – New Public Release

πŸš€ Edges New Release

New release adds several new features and improvements to the Edges platform.

πŸ”” Enhanced Integration Webhooks

  • New Event Type: Added AUTH_UPDATED webhook event for monitoring LinkedIn account level changes
  • Enhanced Payload: Webhook data now includes:
    • name: LinkedIn account name
    • level: Account type (Classic, Sales Navigator, Premium, Recruiter Lite)
  • Better Monitoring: Real-time notifications when users upgrade or change their LinkedIn account levels
πŸ“˜ Integration Webhooks Documentation

πŸ“š Documentation Improvements

  • API Consistency: Updated endpoint descriptions from β€œList all” to β€œList” for better clarity
  • LinkedIn Limitations: Added clear documentation about group member extraction limitations
  • Sales Navigator: Enhanced filtering capabilities with updated OpenAPI specifications

πŸ”§ Technical Updates

  • Updated OpenAPI specifications with new Sales Navigator filters
  • Improved API documentation consistency across all listing endpoints
  • Enhanced error handling and limitation documentation
2025-09-24
v1.0.0 – Public Release

πŸš€ Edges v1 – Public Release

Edges is now publicly available β€” an API-first automation platform built to run precise, scalable and fully observable actions on top of platforms like LinkedIn and Sales Navigator.

πŸ“¦ TypeScript SDK

The Edges TypeScript SDK offers a type-safe and minimal way to interact with the Edges API.
It handles authentication and exposes all endpoints for:
  • Action execution (live, async, schedule)
  • Identity & integration management
  • Run tracking & callbacks

βš™οΈ New API Core

Edges exposes a fully documented and production-grade REST API with:
  • Modular actions, identified by scope (e.g. linkedin-extract-people)
  • Modern execution modes: live, async, schedule
  • Strong separation between members (dashboard users) and identities (automated accounts)
  • Robust pagination, rate limits and error tracing
πŸ“š Explore the full API Reference

πŸ‘₯ Identity-Centric Design

  • Identities represent your automation accounts (e.g. a LinkedIn profile)
  • Create and manage identities independently from workspace members
  • Use native login or cookie-based authentication
  • Monitor integration status with webhooks
πŸ“˜ How to connect a LinkedIn Identity

πŸ” Async, Schedule & Callbacks

  • Run bulk actions at scale via the async mode
  • Program runs to start later (schedule_at) or recurrently with cron via the schedule mode
  • Provide a callback_url to get results pushed when ready
  • Enrich callback payloads with your own custom_data to simplify reconciliation
πŸ“˜ Execution Modes Overview & Async Callback Guide
  • LinkedIn Authentication, Extract, Search, Find, Intents, Messaging & Engage
  • Sales Navigator Search, Metrics & Engage
  • Recruiter Lite Search

🧠 Developer Experience First

  • Full OpenAPI-based, comprehensive documentation
  • Instant authentication with API keys
  • Built-in account rotation logic and identity modes
  • Tracking and observability with run UIDs, callbacks and callbacks api
  • Fast iteration cycles
πŸ“˜ Getting Started Guide