Skip to main content
POST
/
v1
/
all-attributes
Fetch all company attributes
curl --request POST \
  --url https://api.example.com/v1/all-attributes \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "url": "company.com",
  "phone": "123-456-7890",
  "company_id": "123456789",
  "exclude": [
    "contacts",
    "google_reviews"
  ]
}
'
{
  "success": true,
  "records": {
    "companies": {
      "found": 1,
      "hits": [
        {
          "about_link": "https://exampleco.io/about",
          "address": "456 Liberty Avenue",
          "address_full": "456 Liberty Avenue, Pittsburgh, PA, 15222, United States",
          "addresses_all": [
            {
              "address": "456 Liberty Avenue",
              "city": "Pittsburgh",
              "county": "Allegheny County",
              "region": "Northeast",
              "state": "PA",
              "zip_code": "15222",
              "zip_lat": 40.4425,
              "zip_long": -79.9959
            }
          ],
          "city": "Pittsburgh",
          "city_state_country": "Pittsburgh, PA, United States",
          "classification": "End User",
          "company_id": "987654321",
          "company_name": "ExampleCo Solutions",
          "company_type": "Privately Held",
          "contact_link": "https://exampleco.io/contact",
          "country": "United States",
          "county": "Allegheny County",
          "do_you_offer_financing": false,
          "eight_digit_sic_code": "12345678",
          "eight_digit_sic_description": "Custom software development",
          "employees_six_month_growth_rate": 4.1,
          "estimated_number_employees": 42,
          "estimated_number_employees_bin": "11-50",
          "facebook_url": "facebook.com/exampleco",
          "financing_partners": [],
          "followers_six_month_growth_rate": 2.4,
          "four_digit_sic_code": "7371",
          "four_digit_sic_description": "Computer programming services",
          "generic_emails": [],
          "industry": "Software",
          "invalid_website": false,
          "keywords": [
            "software development",
            "cloud services",
            "SaaS",
            "API integrations"
          ],
          "linkedin_description": "ExampleCo Solutions provides cloud software and API services for small businesses.",
          "linkedin_follower_count": 1289,
          "linkedin_hashtags": "#cloudcomputing: 12000, #api: 8000",
          "linkedin_locations_other": "Philadelphia, PA, United States | Harrisburg, PA, United States",
          "linkedin_tagline": "Simplifying business software since 2010.",
          "linkedin_url": "linkedin.com/company/exampleco",
          "logo_url": "https://placehold.co/200x200.png",
          "manufacturer": false,
          "menu_navigation": "About, Services, Contact",
          "naics_code": "541511",
          "naics_description": "Custom Computer Programming Services",
          "name_based_emails": [
            "info@exampleco.io"
          ],
          "number_of_locations": 2,
          "phone": [
            "4125550199"
          ],
          "prediction_probability": 0.8421,
          "region": "Northeast",
          "state": "PA",
          "state_name": "Pennsylvania",
          "technology_names": "AWS, Google Analytics, Stripe, WordPress",
          "timezone": "Eastern",
          "two_digit_sic_code": "73",
          "two_digit_sic_description": "Business Services",
          "url": "exampleco.io",
          "yelp_url": "yelp.com/biz/exampleco-solutions-pittsburgh",
          "zip_code": "15222",
          "zip_lat": 40.4425,
          "zip_lat_long": [
            40.4425,
            -79.9959
          ],
          "zip_long": -79.9959,
          "contacts": [
            {
              "city": "Pittsburgh",
              "company": "ExampleCo Solutions",
              "company_id": "987654321",
              "contact_id": "CONTACT001",
              "country": "United States",
              "department": "Executive",
              "first_name": "Michael",
              "gender": "Male",
              "last_name": "Johnson",
              "linkedin": "linkedin.com/in/michaeljohnson123",
              "linkedin_description": "CEO",
              "location": "Pittsburgh, PA, United States",
              "name": "Michael Johnson",
              "seniority": "C Level Executive",
              "start_date": "2015-01-01T00:00:00.000000",
              "state": "PA",
              "state_name": "Pennsylvania",
              "title": "Chief Executive Officer",
              "title_priority": 1,
              "url": "exampleco.io",
              "years_in_role": 10.5,
              "zip_code": "15222"
            }
          ],
          "ucc_records": [
            {
              "amendments": [],
              "base_url": "exampleco.io",
              "city": "Pittsburgh",
              "company_id": "987654321",
              "company_name": "EXAMPLECO SOLUTIONS",
              "continuation_count": 0,
              "date_expired": "2026-06-30 00:00:00.000000",
              "date_expired_unix": 1782768000000,
              "date_filed": "2021-06-30 00:00:00.000000",
              "date_filed_unix": 1625011200000,
              "has_amendments": false,
              "has_continuation": false,
              "naics_code": "541511",
              "naics_description": "Custom Computer Programming Services",
              "phones": [
                "4125550199"
              ],
              "record_id": "UCC123456",
              "secured_party_class": "Other",
              "state": "PA",
              "state_db": "PA",
              "ucc_id": "PA-987654321",
              "ucc_number": "987654321",
              "ucc_type": "UCC1"
            }
          ],
          "google_reviews": []
        }
      ]
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.leadx.com/llms.txt

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

Authorizations

X-API-Key
string
header
required

Body

application/json
url
string | null

Company URL (with or without http)

Example:

"company.com"

phone
string | null

Company phone

Example:

"123-456-7890"

company_id
string | null

LeadX Company ID

Example:

"123456789"

exclude
string[] | null

List of collections to exclude. Options: ['contacts', 'ucc_records', 'google_reviews']

Example:
["contacts", "google_reviews"]

Response

Successful Response

Last modified on March 23, 2026