HitHorizons US API

HitHorizons U.S. API gives you access to data on 70 million companies over the 52 U.S. states and territories. Get in touch with our team at sales@hithorizons.com to obtain a subscription key. We provide free, time-limited trial access to test the U.S. API and evaluate the data.

Introduction

The HitHorizons US API provides programmatic access to comprehensive company data for businesses in the United States. Use our API to integrate company information into your applications, CRM systems, or data workflows.

Key Features

Authentication

All API requests require authentication using an API key. Include your subscription key in the HTTP header:

Ocp-Apim-Subscription-Key: your-api-key-here

Getting Started

Contact our team at sales@hithorizons.com to obtain your API subscription key for trial or production access.

Base URL

All API endpoints are available at:

https://api.hithorizons.com/us/

Response Format

All responses are returned as JSON objects with a standard envelope structure:

{
  "Success": true,
  "Error": null,
  "Result": {
    // Actual response data
  }
}
Field Type Description
Success boolean Indicates whether the call was successful
Error string Error description (null on success)
Result object The actual data returned from the API

Available Endpoints

Method Endpoint Description
GET /us/Company/Detail Get detailed company information by HitHorizons ID
GET /us/Company/Search Search companies using structured criteria
GET /us/Company/SearchUnstructured Search companies using unstructured query
GET /us/Company/Suggestions Get company name suggestions for autocomplete
GET /us/Company/CodeLists Retrieve code lists for interpreting values
GET /us/Company/CodeListsActivityCodes Retrieve activity code lists (SIC, NACE)

Quick Start

Here's a simple example to get company details:

curl -X GET "https://api.hithorizons.com/us/Company/Detail?HitHorizonsId=H-USSD123456789" \
  -H "Ocp-Apim-Subscription-Key: your-api-key"

Try it out!

Use our Swagger UI to explore and test all available endpoints interactively.