Leadfeeder API
    • Leadfeeder API
    • Authentication
    • Getting Started
    • Rate Limits
    • Relationships
    • Company ID Lifecycle
    • OpenAPI Specification Access
    • List of NACE / WZ codes
    • List of Industries
    • AI & MCP (Beta)
      • Overview of the Leadfeeder MCP Server
      • Quickstart
      • Connect your AI tool
      • Authentication and permissions
    • Account
      • List Accounts
    • Companies
      • Get Company Details
      • Create Company Enrichment Job
      • Estimate Company Enrichment Job
      • Retrieve Companies
      • Company Financial Reports
      • Get Company Enrichment Job Status
      • Retrieve Company IPs
      • Match Companies
      • Search Companies
      • Search Company Signals
      • Update a Company
      • Remove Company from Lists
      • Add Company to Lists
      • Unassign Tags from Company
      • Assign Tags to Company
    • Contacts
      • Get Contact Details
      • Create Find Contact Data Job
      • Estimate Find Contact Data Job
      • Retrieve Contacts
      • Get Find Contact Data Job Status
      • Search Contacts
      • Update a Contact
      • Remove Contact from Lists
      • Add Contact to Lists
    • Web Visits
      • How to Create Custom Feed
      • Custom Feed - Filter Reference
      • Search Web Visits
      • Retrieve Custom Feeds
      • Retrieve Visitor Companies
      • Create a Custom Feed
      • Get Custom Feed Details
      • Update Custom Feed
      • Delete a Custom Feed
      • Retrieve Custom Feeds Folders
      • Retrieve Web Visits Tracker Script
    • Campaigns
      • Retrieve Campaigns
      • Get Campaign Details
      • Update Campaign
      • Retrieve Campaign Stats
    • IP
      • Enrich Company IP Address
    • Buyer Personas
      • Retrieve Buyer Personas
      • Create a Buyer Persona
      • Get Buyer Persona Details
      • Delete a Buyer Persona
      • Update a Buyer Persona
    • Ideal Customer Profiles
      • Retrieve Ideal Customer Profiles
      • Create an Ideal Customer Profile
      • Retrieve Company ICP Matches
      • Get Ideal Customer Profile Details
      • Delete an Ideal Customer Profile
      • Update an Ideal Customer Profile
    • Tags
      • Retrieve Tags
      • Create Tag
      • Create Batch Add Tags Job
      • Get Batch Add Tags Job
      • Delete Tag
      • Create Batch Remove Tags Job
      • Get Batch Remove Tags Job
      • Get Tag Details
      • Update Tag
    • Lists
      • Retrieve Lists
      • Create a List
      • Create Batch Add to List Job
      • Get List Details
      • Get Batch Add to List Job
      • Create Batch Remove from List Job
      • Delete List
      • Get Batch Remove from List Job
      • Retrieve Company List Memberships
      • Retrieve Contact List Memberships
      • Update List
      • Retrieve List Items
    • Custom Fields
      • Retrieve Custom Fields
      • Create Custom Field
      • Get Custom Field Details
      • Delete Custom Field
      • Update Custom Field
    • Users
      • Get Current User
    • Settings
      • Update Cookie Consent Settings
      • Get Data Processing Settings
      • Update Data Processing Settings
      • Get Cookie Consent Settings
    • Usage
      • Get Endpoints Usage
    • Reference Data
      • Get Geo Suggestions
      • Get Countries with Regions
      • Get Industries
    • Schemas
      • AccountCompanyV1
      • AccountSummaryV1
      • AccountV1
      • ApiUsageV1
      • BatchAddTagsJobV1
      • BatchAddToListJobV1
      • BatchRemoveFromListJobV1
      • BatchRemoveTagsJobV1
      • BuyerPersonaRequestV1
      • BuyerPersonaV1
      • CampaignLocationV1
      • CampaignSettingsV1
      • CampaignStatsV1
      • CampaignSummaryV1
      • CampaignV1
      • CompaniesAdvancedSearchFilterItem
      • CompanyFinancialsV1
      • CompanyIndustryV1
      • CompanyLocationV1
      • CompanyIpV1
      • CompanyMatchV1
      • CompanySummaryV1
      • CompanyV1
      • ContactFilterGroupsV1
      • ContactSummaryV1
      • ContactV1
      • CookieConsentSettingsV1
      • CountryV1
      • CustomFeedFolderV1
      • CustomFeedRequestV1
      • CustomFeedV1
      • CustomFieldV1
      • DataProcessingSettingsV1
      • EnrichedIpV1
      • CRMUserV1
      • ErrorObjectV1
      • CRMOrganizationV1
      • EnrichmentJobV1
      • CRMContactV1
      • GeoSuggestionV1
      • FindContactDataJobV1
      • CRMLeadV1
      • ICPV1
      • CRMConnectionV1
      • IpAddressExtendedV1
      • IcpRequestV1
      • CRMSuggestionV1
      • IpLocationV1
      • CRMGroupConnectionV1
      • LocationV1
      • ListV1
      • MaskedCompanySummaryV1
      • MaskedContactSummaryV1
      • NetworkV1
      • SignalV1
      • UserV1
      • TagV1
      • VisitLocationV1
      • WebVisitV1
      • WebVisitsTrackerScriptV1

    OpenAPI Specification Access

    The Leadfeeder API provides publicly accessible endpoints that expose the OpenAPI specification and metadata used to generate the API documentation.
    These endpoints allow developers and tools to programmatically retrieve the API schema, enabling use cases such as:
    Powering LLM-based tools and AI agents that require structured API schemas for function calling or tool usage
    Generating client SDKs
    Importing the API into API tools (e.g., Postman, ApiDog, Insomnia)
    Validating requests against the official schema
    Building automated integrations

    Available Endpoints#

    OpenAPI Schema#

    GET https://api.leadfeeder.com/openapi.yaml
    Returns the OpenAPI specification used to power the public API documentation in YAML format.
    This endpoint provides the full machine-readable API schema including:
    Available endpoints
    Request parameters
    Response schemas
    Authentication requirements
    Error formats
    This endpoint is useful when importing the Leadfeeder API into API development tools, or generating SDKs.

    OpenAPI Schema Alias#

    GET https://api.leadfeeder.com/.well-known/openapi.yaml
    This endpoint is an alias of the primary OpenAPI schema endpoint.
    It exists to support tooling and integrations that expect the OpenAPI specification to be available under the .well-known path.
    The response content is identical to:
    https://api.leadfeeder.com/openapi.yaml

    API Metadata#

    GET https://api.leadfeeder.com/
    Returns basic API metadata describing the API service.
    This endpoint can be used by tools or developers to verify that the API service is reachable and to retrieve general information about the API environment.
    The metadata includes information such as:
    Version
    Link to .yaml
    Description

    Common Use Cases#

    Using with LLMs and AI Agents#

    The OpenAPI specification can be used to enable LLM-powered integrations, where models interact with the Dealfront API via structured tool definitions.
    Common patterns include:
    Converting the OpenAPI schema into tool/function definitions for LLMs
    Enabling AI agents to query Dealfront data autonomously
    Supporting natural language interfaces on top of the API
    This is particularly useful for:
    Internal AI copilots
    Workflow automation agents
    Conversational data access tools

    Importing the API specification into API Tools#

    Many API tools allow you to import an API specification directly from a URL.
    To do this, you can use the following schema endpoint:
    https://api.leadfeeder.com/openapi.yaml
    Examples of tools supporting this workflow include:
    ApiDog
    Postman
    Insomnia
    Swagger UI

    Generating Client SDKs#

    The OpenAPI specification can also be used to generate API clients automatically using tools such as:
    OpenAPI Generator
    Swagger Codegen
    This enables faster integration with the Dealfront API in most major programming languages.
    Modified at 2026-03-25 10:06:10
    Previous
    Company ID Lifecycle
    Next
    List of NACE / WZ codes
    Built with