Enrich API Documentation
  • Introduction
    • Authentication
    • Rate Limit
    • Credit Usage
  • Reference
    • Check Credit Usage
    • Email to Profile data
    • Email to IP
    • Email Finder
    • Profile URL to Work Email V2
    • Profile URL to Personal Email
    • Verify Emails—Even Behind Catch-Alls
    • Company Lookup
    • Company Funding and Traffic
    • Linkedin Public Profile Enrichment
    • Phone Number Finder
    • Find post details by URL
    • Search Posts
    • Bulk enrichment
    • Email to Phone Number
    • Email to Person Lite
    • Reverse email append
    • Disposable/Spam Email Check
    • IP to Company
    • Logo API
    • Search People Activities
    • Search Company Activities
    • Search Post Reactions
    • Search Post Reactions by URL
    • Search Post Comments
    • Search Post Comments by URL
    • Search Company
    • Search Similar Companies
    • Search People
    • Sales Pointer - People
    • Sales Pointer - People by URL
    • Sales Pointer - Company
    • Sales Pointer - Company by URL
    • Search Company Employees
    • Search Jobs
    • Web search
    • Serp Search
    • News Search
    • Maps Search
    • Places Search
    • Videos Search
    • Shopping Search
    • Image Search
  • Changelog
Powered by GitBook
On this page
  1. Reference

Sales Pointer - Company by URL

This endpoint allows you to fetch filtered company data using a LinkedIn Sales Navigator search URL. It parses the URL and applies the embedded filters to return a list of matching companies.

cURL 'https://api.enrich.so/v1/api/sales-pointer/company-by-url' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "account_number": 1,
    "page": 1,
    "url": "https://www.linkedin.com/sales/search/company?query=(spellCorrectionEnabled%3Atrue%2Cfilters%3AList((type%3ACOMPANY_HEADCOUNT%2Cvalues%3AList((id%3AB%2Ctext%3A1-10%2CselectionType%3AINCLUDED))))%2Ckeywords%3Agoo)&sessionId=V%2BfhmkmqTlSofc8%2F1FmgJw%3D%3D&viewAllFilters=true"
}'
const axios = require('axios');

const payload = {
    account_number: 1,
    page: 1,
    url: "https://www.linkedin.com/sales/search/company?query=(spellCorrectionEnabled%3Atrue%2Cfilters%3AList((type%3ACOMPANY_HEADCOUNT%2Cvalues%3AList((id%3AB%2Ctext%3A1-10%2CselectionType%3AINCLUDED))))%2Ckeywords%3Agoo)&sessionId=V%2BfhmkmqTlSofc8%2F1FmgJw%3D%3D&viewAllFilters=true"
};

axios.post('https://api.enrich.so/v1/api/sales-pointer/company-by-url', payload, {
    headers: {
        accept: 'application/json',
        Authorization: 'Bearer <token>',
        'Content-Type': 'application/json'
    }
})
  .then(response => {
    console.log(response.data);
  })
  .catch(error => {
    console.log(error.response ? error.response.data : error.message);
  });
import requests

url = 'https://api.enrich.so/v1/api/sales-pointer/company-by-url'

payload = {
    "account_number": 1,
    "page": 1,
    "url": "https://www.linkedin.com/sales/search/company?query=(spellCorrectionEnabled%3Atrue%2Cfilters%3AList((type%3ACOMPANY_HEADCOUNT%2Cvalues%3AList((id%3AB%2Ctext%3A1-10%2CselectionType%3AINCLUDED))))%2Ckeywords%3Agoo)&sessionId=V%2BfhmkmqTlSofc8%2F1FmgJw%3D%3D&viewAllFilters=true"
}

headers = {
    'accept': 'application/json',
    'authorization': 'Bearer <token>',
    'Content-Type': 'application/json'
}

response = requests.post(url, json=payload, headers=headers)

if response.status_code == 200:
    print(response.json())
else:
    print(f"Error: {response.status_code}, {response.text}")
OkHttpClient client = new OkHttpClient();

        MediaType mediaType = MediaType.parse("application/json");
        String payload = "{\n" +
"  \"account_number\": 1,\n" +
"  \"page\": 1,\n" +
"  \"url\": \"https://www.linkedin.com/sales/search/company?query=(spellCorrectionEnabled%3Atrue%2Cfilters%3AList((type%3ACOMPANY_HEADCOUNT%2Cvalues%3AList((id%3AB%2Ctext%3A1-10%2CselectionType%3AINCLUDED))))%2Ckeywords%3Agoo)&sessionId=V%2BfhmkmqTlSofc8%2F1FmgJw%3D%3D&viewAllFilters=true\"" +
"}"
;

        RequestBody body = RequestBody.create(mediaType, payload);

        Request request = new Request.Builder()
                .url("https://api.enrich.so/v1/api/sales-pointer/company-by-url")
                .post(body)
                .addHeader("accept", "application/json")
                .addHeader("authorization", "Bearer <token>")
                .addHeader("Content-Type", "application/json")
                .build();

        Response response = client.newCall(request).execute();
require 'uri'
require 'net/http'
require 'json'

url = URI("https://api.enrich.so/v1/api/sales-pointer/company-by-url")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Post.new(url)
request["accept"] = 'application/json'
request["authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'

payload = {
    account_number: 1,
    page: 1,
    url: "https://www.linkedin.com/sales/search/company?query=(spellCorrectionEnabled%3Atrue%2Cfilters%3AList((type%3ACOMPANY_HEADCOUNT%2Cvalues%3AList((id%3AB%2Ctext%3A1-10%2CselectionType%3AINCLUDED))))%2Ckeywords%3Agoo)&sessionId=V%2BfhmkmqTlSofc8%2F1FmgJw%3D%3D&viewAllFilters=true"
}

request.body = payload.to_json

response = http.request(request)
if response.code == '200'
  puts response.body
else
  puts "Error: #{response.code}, #{response.body}"
end
<?php

$curl = curl_init();

$data = [
    "account_number"=> 1,
    "page": 1,
    "url"=> "https://www.linkedin.com/sales/search/company?query=(spellCorrectionEnabled%3Atrue%2Cfilters%3AList((type%3ACOMPANY_HEADCOUNT%2Cvalues%3AList((id%3AB%2Ctext%3A1-10%2CselectionType%3AINCLUDED))))%2Ckeywords%3Agoo)&sessionId=V%2BfhmkmqTlSofc8%2F1FmgJw%3D%3D&viewAllFilters=true"
];

curl_setopt_array($curl, [
    CURLOPT_URL => "https://api.enrich.so/v1/api/sales-pointer/company-by-url",
    CURLOPT_RETURNTRANSFER => true,
    CURLOPT_ENCODING => "",
    CURLOPT_MAXREDIRS => 10,
    CURLOPT_TIMEOUT => 30,
    CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
    CURLOPT_CUSTOMREQUEST => "POST",
    CURLOPT_POSTFIELDS => json_encode($data),
    CURLOPT_HTTPHEADER => [
        "accept: application/json",
        "authorization: Bearer <token>",
        "Content-Type: application/json"
    ],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
    echo "cURL Error #:" . $err;
} else {
    echo $response;
}

Example response

Status Code: 200 OK

{
    "success": true,
    "message": "Company record found.",
    "data": {
         "data": [
            {
                "description": "Get full insight of your marketing data, integrate all marketing data sources in one single platform, create unlimited automated reports.",
                "industry": "IT Services and IT Consulting"
            },
            {
                "description": "THE GOO \n\nFrom ideas to inspiration, THE GOO combines the power of its family of award-winning companies to deliver superior media content. The result is original, intelligent and compelling. We listen to our clients and exceed expectations. \n\nVisit Us: \nhttp://www.thegoo.com",
                "industry": "Broadcast Media Production and Distribution"
            },
            {
                "description": "S & L Consultancy Ltd are a specialist recruitment business based in the West Midlands. Formed in 2018 by succsessful consultants who have seen the good, bad and the ugly side of recruitment. We're honest enough to say that we're not going to fill every role or have the best candidate for every role. What we can say is what you'll get from us is our best efforts and the promise that your business will be represented in the best possible way. \n\nWe'll take time to learn your business - We know that a job title differs so much within different companies, We're not here to make a fee and then never hear from ourselves again. We want to create sustainable relationships with companies where we can both grow. \n\nIf we cannot fill your role , we'll say if you're expectations are too high, we'll say if you're paying below market average, we'll also say if we're not the best business for you. \n\nCEO Samanatha L Mason \"​ Lets be honest recruitment has a bad name today within the market nowadays, everybody dreads the common call from a recruiter reading off a script or from a one day training course, We're confident we know our sectors well enough to set ourselves apart from the rest. Honesty and integrity is key within recruitment however it's the main things that is leaving industry day by day. We're not here to change the industry, we're here to show you how the industry should work\"​\n\n\nWebsite: www.sandlconsultancy.co.uk\n\nFollow us on Instagram - Sandlconsultancy\n\nFacebook: \n\nTwitter: @slconsultinglt1",
                "industry": "Staffing and Recruiting"
            },
            {
                "description": "Welcome to Goo Business, where innovation meets growth! 🚀 We are dedicated to elevating the success of our clients through a comprehensive suite of services. From cutting-edge web and Android development to insightful business analytics, robust desktop and software solutions, we've got your business needs covered.\n\nOur expertise extends beyond the digital realm, encompassing B2B lead generation, specialized LinkedIn lead generation, impactful email marketing, SEO strategies, and meticulous data entry services. At Goo Business, we don't just offer services; we provide tailored solutions that propel your business forward.\n\nJoin us on the journey to success, where your vision becomes our mission. Let's shape the future of your business together\n#GooBusiness #Innovation #BusinessGrowth",
                "industry": "IT Services and IT Consulting"
            },
            {
                "description": "Go Digital è il servizio di comunicazione creato appositamente per la trasformazione digitale del tuo studio professionale.\n\nIn pratica, aiutiamo gli studi professionali a:\n\nCreare una presenza online efficace: sviluppando siti web moderni, gestendo i canali social e ottimizzando la loro presenza sui motori di ricerca.\n\nAttrarre nuovi clienti: attraverso strategie di marketing mirate e contenuti di valore.\n\nComunicare in modo più efficiente: con i clienti esistenti e con i potenziali clienti.\n\nDigitalizzare i processi interni: per risparmiare tempo e risorse.\n\nGooDigital offre due pacchetti di servizi:\n\nPacchetto 0 \"Fondamenta per l'Identità Digitale\": per creare una solida base per la presenza online, con logo, sito web, canali social e Google My Business (ora Business Profile).\n\nPacchetto 1 \"Avanzato con AI per Ottimizzare e Potenziare\": per una gestione completa della presenza digitale, con creazione di contenuti, social media marketing, SEO avanzata e automazione del marketing.\n\nCi distinguiamo per:\n\nCompetenza e specializzazione nel settore professionale: conosciamo le esigenze specifiche dei commercialisti e dei consulenti del lavoro.\n\nApproccio basato su AI per l'ottimizzazione: utilizziamo l'intelligenza artificiale per massimizzare l'efficacia delle nostre strategie.\n\nTeam di esperti dedicato: un team di professionisti qualificati è al tuo servizio.\n\nFlessibilità e personalizzazione: adattiamo le nostre soluzioni alle tue esigenze specifiche.",
                "industry": "Advertising Services"
            },
            {
                "description": "Our strength has always been steamed from our moto \"Discover the difference\". We aim to provide a unique marketing solutions to small and medium businesses to help them compete in a highly competitive market such as the advertising market in both Egypt and MENA region.\nIn \"Goo Media\" agency, our thinking is different. We always focus our efforts on achieving a perfect balance between marketing strategies and execution to achieve our clients ambition and their needs.\nOur services :\n- Social Media Marketing\n- Search Engine Marketing\n- Branding\n- Influencer Marketing\n- printing and packaging solutions\n- Website Design & Development See less",
                "industry": "Advertising Services"
            },
            {
                "description": "Goo Formation vous propose des formations certifiantes en ligne et accompagné d'un expert métier sur de nombreux domaines.\nNos formations sont éligibles au CPF et autres financements publics.\n\nNotre mission : Vous accompagner dans la réalisation de votre projet de formation, du montage de votre dossier jusqu'à la remise de votre certificat ou votre diplôme.\n\nNotre équipe pédagogique assure au quotidien la qualité du contenu de vos formations et la fluidité de votre montée en compétence. Tous nos formateurs sont des professionnels reconnus et expert dans leur domaine (expert métier).\n\nNous mettons ainsi à votre disposition toutes les clés de la réussite pour le bon déroulement de votre projet de formation. ",
                "industry": "Professional Training and Coaching"
            },
            {
                "description": "Goo Central Pte Ltd, based in Singapore, is Screen GOO’s Customer Service Centre and stocking hub for South East Asia. Besides Singapore, we manage and ship to Thailand, Brunei, Indonesia, Malaysia, Myanmar and Vietnam. Screen GOO is the world’s leading paint-on projection screen solution and is a highly reflective acrylic paint. Supplying GOO from our showroom situated in Singapore Shopping Centre, we are stocked all year round to respond to walk ins, self collection and overseas shipments. Screen Goo is now available through us in South East Asia.  All inquiries, direct orders and project procurement are welcome.",
                "industry": "Retail Office Equipment"
            },
            {
                "description": "Goo is a licensed company headquartered in Riyadh. It provides valet parking, parking management, car washing services in public and commercial facilities such as hotels, shopping centers, airports, shops and stores from business establishments according to need and in cities within them.\n",
                "industry": "Events Services"
            },
            {
                "description": "Cuidamos do que você tem de mais valioso: a sua saúde e da sua família. \nTudo que é importante para você, a Goo Life tem uma solução perfeita para dar assistência.\n\n- Atendimento em todo o Brasil\n- Ampla rede credenciada e altamente habilitada\n- Clube de benefícios incluso\n- Coparticipação de consulta a preço fixo\n\nEntre em contato conosco e conheça nossas soluções!",
                "industry": "Public Health"
            },
            {
                "description": "GOO-LOWE Tours is a small and vibrant ECO-TOUR OPERATOR, born out of a combination of a LOVE of AFRICA and Eco travel, and a desire to work with and support local communities in the Sub Saharan Africa. we offer a varied portfolio of overland tours, treks, walks and expedition voyages to the world's astonishing places.",
                "industry": "Hospitality"
            },
            {
                "description": "Ofrecemos servicios orientados al crecimiento organizacional, nos especializamos en consultoría estratégica, asesoría y auditorias en normatividad, ingeniería, implementación y mejora continua de sistemas de gestión. ",
                "industry": "Office Administration"
            },
            {
                "description": "On a mission to revolutionize how businesses operate and scale with technology as their leveraging tool",
                "industry": "Technology, Information and Internet"
            },
            {
                "description": "Goo Goo Eyes is Dallas' go-to source for sublimely chic sunglasses and luxury prescription eyewear. Our merchandise is constantly evolving in an effort to keep up-to-the-millisecond with fashion trends.\r\n\r\nYour eyewear speaks volumes about you – even when you're silent. Goo Goo Eyes understands that. We showcase truly unique and original eyewear designs, using cutting-edge lens technology. We offer these in an atmosphere of uncompromised, very personal service. When you purchase your glasses at Goo Goo Eyes, you are reflecting how much you value quality and your appreciation of superior design, materials and craftsmanship.",
                "industry": "Retail"
            },
            {},
            {
                "description": "Who said advertising had to cost a fortune? Let me show you some cost effective yet proven ways of advertising. Let Goo-Gal help your customers find you, no matter where you are! ",
                "industry": "Advertising Services"
            },
            {
                "industry": "Technology, Information and Internet"
            },
            {
                "description": "Goo Monster Studio is a small game development studio focused on story-rich games.",
                "industry": "Computer Games"
            },
            {
                "description": "Goo Media is a full-service podcast production company. We provide assistance with audio/video editing, podcast SEO, cover art, music licensing, and more. Our goal is to make audiences' experience enjoyable and help them discover new content. With years of experience in the media and music business, we are dedicated to providing high-quality service and support for our clients.",
                "industry": "Media Production"
            },
            {
                "description": "Goo Goo Gaa Gaa Children's Boutique specializes in clothing and gifts for babies, toddlers, and children.",
                "industry": "Retail Apparel and Fashion"
            },
            {
                "description": "Goo Design e-commerce",
                "industry": "Import & Export"
            },
            {
                "industry": "Chemical Manufacturing"
            },
            {
                "industry": "Retail Office Equipment"
            },
            {},
            {
                "description": "Goo Group is a digital, cloud, and security services powerhouse that operates on a global scale.\n\nOur bright and inventive team exceeds so many people all across the world. Our extensive network of associated resources positions us among the world's most advanced facilitators of change through technological innovation. Our technological superiority is matched by our unmatched subject expertise, functional acumen, and potential for international deployment.\n\nStrategy & Consulting, Technology, Operations, Industry X, and the Goo Group Team all provide a wide range of services, solutions, and assets that together enable us to achieve remarkable success. What makes a company successful is the value it provides to its customers, employees, shareholders, partners in business, and local communities.",
                "industry": "Business Consulting and Services"
            }
        ],
        "pagination": {
            "total": 1952,
            "count": 25
        }
    },
    "total_credits": 59025,
    "credits_used": 36951.799999999654,
    "credits_remaining": 22073.200000000346
}

Status code: 404 NOT FOUND

{
    "error": true,
    "message": "No company found for the given query"
}

PreviousSales Pointer - CompanyNextSearch Company Employees

Last updated 3 days ago