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
    • Company Revenue and Plus
    • 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
    • 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

Company Revenue and Plus

This API provides a streamlined interface to fetch structured company revenue data, making it easy to power your applications with up-to-date business intelligence.

cURL 'https://api.enrich.so/v1/api/company-revenue-plus?domain=<example.com>' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json'
const axios = require('axios');

axios.get('https://api.enrich.so/v1/api/company-revenue-plus?domain=<example.com>', {
    headers: {accept: 'application/json', Authorization: 'Bearer <token>'}
})
  .then(response => {
    console.log(response.data);
  })
  .catch(error => {
    console.log(error);
  });
import requests
payload = {'domain': 'example.com'}
headers = {'accept': 'application/json', 'authorization': 'Bearer <token>'}
resp = requests.get('https://api.enrich.so/v1/api/company-revenue-plus', params=payload, headers=headers)
print (resp.text)
OkHttpClient client = new OkHttpClient();

Request request = new Request.Builder()
  .url("https://api.enrich.so/v1/api/company-revenue-plus?domain=<example.com>")
  .get()
  .addHeader("accept", "application/json")
  .addHeader("authorization", "Bearer <token>")
  .build();

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

url = URI("https://api.enrich.so/v1/api/company-revenue-plus?domain=<example.com>")

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

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

response = http.request(request)
puts response.read_body
<?php

$curl = curl_init();

curl_setopt_array($curl, [
  CURLOPT_URL => "https://api.enrich.so/v1/api/company-revenue-plus?domain=<example.com>",
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => "",
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 30,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => "GET",
  CURLOPT_HTTPHEADER => [
    "accept: application/json",
    "authorization: Bearer <token>"
  ],
]);

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

curl_close($curl);

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

Example response

{
    "success": true,
    "message": "Company revenue data found.",
    "data": {
        "companyName": "Clay",
        "shortDescription": "Clay.io provides mobile games.",
        "fullSummary": "Clay.io provides mobile games. Clay was founded in 01/2012. \nClay's Co-Founder & CEO, Austin Hallock, currently has an approval rating of 70%. Clay has an estimated 8 employees and an estimated annual revenue of 275.3K.",
        "website": "http://clay.io/",
        "founded": "01/2012",
        "ownership": "Private",
        "status": "Independent Company",
        "revenue": " < 1M",
        "employeeCount": "8",
        "socialLinks": [
            {
                "type": "linkedIn",
                "url": "https://www.linkedin.com/company/clay-io"
            },
            {
                "type": "facebook",
                "url": "https://www.facebook.com/clay.io"
            },
            {
                "type": "twitter",
                "url": "https://twitter.com/claydotio"
            }
        ],
        "ceo": {
            "fullName": "Austin Hallock",
            "designation": "Co-Founder & CEO",
            "rating": 70
        },
        "totalFunding": 550000,
        "fundingRounds": [
            {
                "round": "Seed",
                "date": "Sep 2014",
                "amount": "550K"
            }
        ],
        "revenueDetails": [
            {
                "revenueRange": "$100K-5.0M",
                "rangeBegin": 100000,
                "rangeEnd": 5000000,
                "industry": [
                    "Internet Software"
                ]
            },
            {
                "revenueRange": "$100K-5.0M",
                "rangeBegin": 100000,
                "rangeEnd": 5000000,
                "industry": [
                    "Software, Internet & Computer Services"
                ]
            }
        ],
        "competitors": [
            {
                "name": "Cheer Data",
                "website": "http://cheerdataltd.com",
                "revenue": "",
                "employeeCount": "",
                "headquarters": "N/A"
            },
            {
                "name": "PlayPhone",
                "website": "http://playphone.com/",
                "revenue": "19.7M",
                "employeeCount": "318",
                "headquarters": "San Jose, California, USA"
            },
            {
                "name": "MEGU INC",
                "website": "http://megugames.com/",
                "revenue": "",
                "employeeCount": "",
                "headquarters": "N/A"
            },
            {
                "name": "Tip-tok",
                "website": "http://tip-tok.com",
                "revenue": "",
                "employeeCount": "",
                "headquarters": "fairfax, California, USA"
            },
            {
                "name": "Ender's Fund",
                "website": "www.endersfund.com",
                "revenue": "",
                "employeeCount": "",
                "headquarters": "San Francisco, California, USA"
            },
            {
                "name": "Last Life Games",
                "website": "http://lastlifegames.com/",
                "revenue": " < 1M",
                "employeeCount": "6",
                "headquarters": "N/A"
            },
            {
                "name": "Tiny Bite Games",
                "website": "http://tinybitegames.com",
                "revenue": " < 1M",
                "employeeCount": "9",
                "headquarters": "seattle, Washington, USA"
            },
            {
                "name": "Touchfactor",
                "website": "http://touchfactor.com",
                "revenue": "",
                "employeeCount": "",
                "headquarters": "novato, California, USA"
            },
            {
                "name": "Ardentkid",
                "website": "ardentkid.com",
                "revenue": " < 1M",
                "employeeCount": "4",
                "headquarters": "N/A"
            },
            {
                "name": "Shelen",
                "website": "www.shelen.com",
                "revenue": "",
                "employeeCount": "",
                "headquarters": "N/A"
            },
            {
                "name": "Gammabyte Entertainment",
                "website": "www.gammabyte.net",
                "revenue": "",
                "employeeCount": "",
                "headquarters": "N/A"
            },
            {
                "name": "Cooking Games, By Munchie Games",
                "website": "http://munchiegames.com",
                "revenue": "",
                "employeeCount": "",
                "headquarters": "N/A"
            },
            {
                "name": "Fresvii",
                "website": "www.fresvii.com",
                "revenue": "4.6M",
                "employeeCount": "126",
                "headquarters": "Redwood City, California, USA"
            },
            {
                "name": "Alien Octopus Studio",
                "website": "www.alienoctopusstudio.com",
                "revenue": " < 1M",
                "employeeCount": "4",
                "headquarters": "N/A"
            },
            {
                "name": "ADCNX",
                "website": "http://adcnx.com",
                "revenue": "5.5M",
                "employeeCount": "26",
                "headquarters": "San Mateo, California, USA"
            }
        ]
    },
    "total_credits": 59025,
    "credits_used": 37575.199999999735,
    "credits_remaining": 21449.800000000265
}

Status code: 404 NOT FOUND

{
    "error": true,
    "message": "Failed to fetch company revenue data."
}
PreviousCompany Funding and TrafficNextLinkedin Public Profile Enrichment

Last updated 2 days ago