Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Company management endpoints
/companies
/companies/search
/companies/{slug}
/companies/{id}
/companies/check-domain
GET /companies
{ "data": [ { "id": "uuid", "name": "Acme Corp", "slug": "acme-corp", "category": "Manufacturing", "city": "Mumbai", "verified": true } ], "total": 100, "page": 1, "limit": 20 }
GET /companies/search?q=jewelry+kolkata
GET /companies/acme-corp
POST /companies
{ "name": "Acme Corp", "category": "Manufacturing", "sub_category": "Textiles", "address_line1": "123 Main St", "city": "Mumbai", "state": "Maharashtra", "country": "India", "pincode": "400001", "gstin": "27ABCDE1234F1Z5", "phone": "+91-9876543210" }
PATCH /companies/{id}
{ "name": "Acme Corporation", "phone": "+91-9876543211" }
POST /companies/check-domain
{ "domain": "acme.com" }
{ "available": false, "company": { "id": "uuid", "name": "Acme Corp" } }