Skip to main content

Documentation Index

Fetch the complete documentation index at: https://apidoc.cufinder.io/llms.txt

Use this file to discover all available pages before exploring further.

Credit usage is 2 per record found.

Attributes

x-api-key
string
required
Your API key.
query
string
required
Company name / Company domain / Company linkedin url
page
number
Result page e.g 1,2,3,…
Request
curl --location 'https://api.cufinder.io/v2/cef' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'x-api-key: api_key' \
--data-urlencode 'query=linkedin.com/company/google' \
--data-urlencode 'page=1'
{
    "status": 1,
    "data": {
        "confidence_level": 94,
        "query": "linkedin.com/company/google",
        "employees": [
            {
                "first_name": "abhilasha",
                "last_name": "seam",
                "full_name": "abhilasha seam",
                "overview": null,
                "current_job": {
                    "title": "principal account manager",
                    "categories": [
                        {
                            "super_category": "Education",
                            "category": "Principal"
                        },
                        {
                            "super_category": "Sales",
                            "category": "Account Management"
                        }
                    ]
                },
                "avatar": "https://media.cufinder.io/person_profile/abhilasha-seam-b2821170",
                "location": {
                    "country": "united states",
                    "state": "california",
                    "city": "mountain view"
                },
                "social": {
                    "linkedin": "linkedin.com/in/abhilasha-seam-b2821170",
                    "linkedin_connections": null,
                    "facebook": null,
                    "twitter": null
                },
                "company": {
                    "name": "google",
                    "website": "https://google.com",
                    "industry": "software development",
                    "size": "10001+",
                    "location": {
                        "country": "united states",
                        "state": "california",
                        "city": "mountain view"
                    },
                    "social": {
                        "linkedin": "linkedin.com/company/google",
                        "facebook": "facebook.com/google",
                        "twitter": "twitter.com/google"
                    }
                }
            },
            {
                "first_name": "joly",
                "last_name": "lucas",
                "full_name": "joly lucas",
                "overview": null,
                "current_job": {
                    "title": "directeur adjoint chez google",
                    "categories": [
                        {
                            "super_category": "Other",
                            "category": "Other"
                        }
                    ]
                },
                "avatar": "https://media.cufinder.io/person_profile/joly-lucas-1682bb3a",
                "location": {
                    "country": "france",
                    "state": "île-de-france",
                    "city": "paris"
                },
                "social": {
                    "linkedin": "linkedin.com/in/joly-lucas-1682bb3a",
                    "linkedin_connections": null,
                    "facebook": null,
                    "twitter": null
                },
                "company": {
                    "name": "google",
                    "website": "https://google.com",
                    "industry": "software development",
                    "size": "10001+",
                    "location": {
                        "country": "united states",
                        "state": "california",
                        "city": "mountain view"
                    },
                    "social": {
                        "linkedin": "linkedin.com/company/google",
                        "facebook": "facebook.com/google",
                        "twitter": "twitter.com/google"
                    }
                }
            },
        ],
        "credit_count": 958
    }
}

Company Employee 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.cef('linkedin.com/company/google', 1);
console.log(result)

Company Employee 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.cef('linkedin.com/company/google', 1)
print(result)

Company Employee 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.CEF("linkedin.com/company/google", 1)
if err != nil {
    log.Fatal(err)
}
fmt.Println(result)

Company Employee 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.cef(query: 'linkedin.com/company/google', page: 1)
puts result

Company Employee 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.cef("linkedin.com/company/google", 1).await?;
println!("{:?}", result);