OceanFrogs

Opportunities and Lead Enrichment API

Let your sales reps focus on closing and leave the qualifying leads to us.

Endpoint

				
					https://data.oceanfrogs.com/api/v1/companies/enrich
				
			

Method

				
					GET
				
			

Authentication

Header

				
					X-Api-Key
				
			

Parameters

				
					domain (required)

				
			

Response Sample

				
					{
  "guid": "ee6a7af7-650d-499b-8e32-58a52ffdb7bc",
  "name": "string",
  "website": "string",
  "description": "string",
  "foundation_year": 0,
  "employee_count": {
    "range": "string",
    "value": 0
  },
  "revenue": {
    "range": "string",
    "value": 0
  },
  "domain": "string",
  "primary_domain": "string",
  "headquarters": {
    "address": "string",
    "city": "string",
    "state": "string",
    "country": "string",
    "country_code": "string",
    "zip_code": "string",
    "latitude": 0,
    "longitude": 0
  },
  "social_urls": {
    "linkedin": "string",
    "facebook": "string",
    "instagram": "string",
    "twitter": "string",
    "github": "string",
    "youtube": "string"
  },
  "industry": {
    "gics": "string",
    "linkedin": "string",
    "oceanfrogs": "string"
  },
  "tags": [
    {
      "type": "string",
      "tag": "string"
    }
  ],
  "technologies": [
    {
      "category": "string",
      "sub_category": "string",
      "name": "string",
      "earliest_trace_date": "2019-08-24",
      "latest_trace_date": "2019-08-24"
    }
  ],
  "teams": [
    {
      "category": "string",
      "sub_category": "string",
      "name": "string"
    }
  ]
}
				
			

Response Codes

				
					200: Success
404: Not Found
400: Client Error
422: Validation Error
500: Server Error
				
			

Quick Start

CURL

				
					curl -X 'GET' \
  'https://data.oceanfrogs.com/api/v1/companies/enrich?domain=oceanfrogs.com' \
  -H 'accept: application/json' \
  -H 'X-Api-Key: XXX'
				
			

Python

				
					import requests

url = 'https://data.oceanfrogs.com/api/v1/companies/enrich?domain=oceanfrogs.com'
headers = {
    'accept': 'application/json',
    'X-Api-Key': 'XXX'
}

response = requests.get(url, headers=headers)

if response.status_code == 200:
    data = response.json()
    print(data)
else:
    print(response.status_code)