Quickstart
Make your first live API request in less than two minutes.
1. Create a key
Open API Keys, choose Create API Key, and copy the secret shown once.
2. Make a request
curl -X GET "https://moltsetz.vercel.app/v2/account/key-info" \
-H "x-api-key: YOUR_API_KEY"3. Search live data
Now search the companies index with a structured filter.
curl -X POST "https://moltsetz.vercel.app/v2/search/companies" \
-H "x-api-key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"company": {
"industry": {
"include": [
"Software"
]
},
"country_code": [
"US"
],
"employee_range": {
"min": 50,
"max": 500
}
},
"max_results": 10
}'You are liveThe response comes from the configured Elasticsearch company index.