Skip to main content
POST
/
v2
/
lcuf
LinkedIn Company URL Finder API
curl --request POST \
  --url https://api.cufinder.io/v2/lcuf \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "company_name": "<string>"
}
'

Common Use Cases

A company’s LinkedIn page is a hub for research and social selling, so teams like to keep it on the record.
  • CRM Enrichment: Adding a company’s LinkedIn page to its record for the whole team.
  • Social Selling: Giving reps a direct link to engage an account on LinkedIn.
  • Data Enrichment: Connecting a name or domain to richer social data.
  • Lead Research: Jumping from a domain to a company’s LinkedIn for quick context.
  • Recruiting: Finding the official company page to source from.
Credit usage is 3 per record found.

Attributes

company_name
string
required
Company name

Response

{
    "status": 1,
    "data": {
        "confidence_level": 96,
        "query": "cufinder",
        "linkedin_url": "linkedin.com/company/cufinder",
        "credit_count": 9991
    }
}

LinkedIn Company URL Finder API Typescript SDK

import { Cufinder } from '@cufinder/cufinder-ts';

// Initialize the client
const client = new Cufinder('your-api-key-here');

// Initialize with more options
const client = new Cufinder('your-api-key-here', { timeout: 60000 });

const result = await client.lcuf('cufinder');
console.log(result);

LinkedIn Company URL Finder API Python SDK

 from cufinder import Cufinder

# Initialize the client
client = Cufinder('your-api-key-here')

# Initialize with more options
client = Cufinder('your-api-key-here', timeout=60)

result = client.lcuf('cufinder')
print(result)

LinkedIn Company URL Finder API Go SDK

 package main

import (
    "fmt"
    "log"
    
    "github.com/cufinder/cufinder-go"
)

func main() {
    // Initialize the client
    sdk := cufinder.NewSDK("your-api-key-here")
    
    // Initialize with more options
    sdk := cufinder.NewSDKWithConfig(cufinder.ClientConfig{
        APIKey:     "your-api-key-here",
        BaseURL:    "https://api.cufinder.io/v2",
        Timeout:    60 * time.Second,
        MaxRetries: 3,
    })
}

result, err := sdk.LCUF("cufinder")
if err != nil {
    log.Fatal(err)
}
fmt.Println(result)

LinkedIn Company URL Finder API Ruby SDK

require 'cufinder_ruby'

# Initialize the client
client = Cufinder::Client.new(api_key: 'your-api-key-here')

# Initialize with more options
client = Cufinder::Client.new(
    api_key: 'your-api-key-here',
    timeout: 60,
    max_retries: 3
)

result = client.lcuf(company_name: 'cufinder')
puts result

LinkedIn Company URL Finder API Rust SDK

use cufinder_rust::CufinderSDK;

#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
    // Initialize the client
    let sdk = CufinderSDK::new("your-api-key-here".to_string())?;
    
    // Initialize with more options
    let sdk = CufinderSDK::with_config(ClientConfig {
        api_key: "your-api-key-here".to_string(),
        base_url: "https://api.cufinder.io/v2".to_string(),
        timeout: Duration::from_secs(60),
        max_retries: 3,
    })?;
    
    Ok(())
}

let result = sdk.lcuf("cufinder").await?;
println!("{:?}", result);

Company Name to Domain

Resolve a company name to its verified website domain.

Company Enrichment

Enrich a company with full firmographics.

Company Employee Finder

Find employees working at a company.

Domain to Company Name

Get the company name behind a domain.