Search Companies

This will return a list of companies matching the query and in case queried props are visible to the querier, it will be possible to query by:

  • Legal name (with name field)

  • Brand name (with name field)

  • Profile name (with name field)

  • TaxID

  • Telephone number

  • Email

  • Webpage (social media or other)

Each result will return a list of companies. It is possible to pass a combination of queryable props.

 query (
	$name: String
	$taxId: String
	$email: String
	$telephoneNumber: String
	$webpage: String
	$limit: Int
  ) {
	companies (
  	name: $name
  	taxId: $taxId
  	email: $email
  	telephoneNumber: $telephoneNumber
  	webpage: $webpage
  	limit: $limit
	) {
  	id
  	legalName
  	brandName
  	profileName
  	taxId
  	yearFounded
  	aboutUs
  	metadata
  	verified
  	logoUrl
  	verticalType {
    	id
    	displayName
    	description
  	}
  	organizationType {
    	id
    	displayName
  	}
  	addresses {
    	city
    	country
    	state
    	street
    	types
    	zipCode
  	}
  	emails {
    	email
  	}
  	telephoneNumbers {
    	number
  	}
  	socialNetworks {
    	type
    	url
  	}
  	webpages {
    	type
    	url
  	}
  	specialties {
    	description
    	title
  	}
  	subscriptionTopics
	}
  }

Last updated

Was this helpful?