Skip to main content
GET
/
management
/
companies
/
{companyId}
/
information
curl -X GET "https://api.cryptomate.me/management/companies/comp_6f1e2a30-4a3c-4b2e-9a1d-5e8c9b7a1f23/information" \
  -H "X-API-KEY: $CRYPTOMATE_API_KEY"
{
  "business_name": "Acme Corporation Inc.",
  "business_email": "business@acme.com",
  "address": "123 Main Street",
  "address2": "Suite 200",
  "city": "San Francisco",
  "state": "California",
  "zip": "94102",
  "country": "United States",
  "country_code": "US",
  "phone_country_code": 1,
  "phone": "4155551234",
  "card_design_id": "design_abc123",
  "card_design_url": "https://cdn.example.com/designs/card123.png"
}
Retrieves comprehensive business information about a specific company including registered address and contact details. Requires an API key with access level 3 or higher.

Path parameters

companyId
string
required
Unique identifier of the company.

Response

business_name
string
Legal business name.
business_email
string
Business email address.
address
string
Primary business address.
address2
string
Secondary address line.
city
string
City name.
state
string
State or province.
zip
string
Postal code.
country
string
Country name.
country_code
string
ISO country code.
phone_country_code
integer
Phone country code.
phone
string
Phone number.
card_design_id
string
Card design identifier.
card_design_url
string
URL to the card design image.
curl -X GET "https://api.cryptomate.me/management/companies/comp_6f1e2a30-4a3c-4b2e-9a1d-5e8c9b7a1f23/information" \
  -H "X-API-KEY: $CRYPTOMATE_API_KEY"
{
  "business_name": "Acme Corporation Inc.",
  "business_email": "business@acme.com",
  "address": "123 Main Street",
  "address2": "Suite 200",
  "city": "San Francisco",
  "state": "California",
  "zip": "94102",
  "country": "United States",
  "country_code": "US",
  "phone_country_code": 1,
  "phone": "4155551234",
  "card_design_id": "design_abc123",
  "card_design_url": "https://cdn.example.com/designs/card123.png"
}