Company
Business
Company profiles with contact info and details
- Locale
- EN
- Fields
- 11
- Uses
- 0
Schema fields
id
sequence
city
city
name
word
email
email
phone
phone
address
address
website
slug
industry
enum
is_public
boolean
founded_year
integer
employee_count
integer
Schema definition
json
{ "id": { "type": "sequence", "options": { "start": 1 } }, "city": { "type": "city" }, "name": { "type": "word" }, "email": { "type": "email" }, "phone": { "type": "phone" }, "address": { "type": "address" }, "website": { "type": "slug", "options": { "words": 1 } }, "industry": { "type": "enum", "options": { "values": [ "Technology", "Finance", "Healthcare", "Education", "Manufacturing", "Retail" ] } }, "is_public": { "type": "boolean", "options": { "true_rate": 0.3 } }, "founded_year": { "type": "integer", "options": { "max": 2025, "min": 1950 } }, "employee_count": { "type": "integer", "options": { "max": 10000, "min": 10 } } }
Example API call
terminal
curl -H "X-API-Key: YOUR_API_KEY" \ "https://api.apiryner.com/v1/layouts/company?count=5&locale=en"