{"openapi":"3.0.3","info":{"title":"Namaste America Search API","version":"1.0.0","description":"Read-only JSON search over a directory of Indian-American businesses, temples, and events across the USA. No auth. Agents that speak MCP should prefer the MCP server at https://namasteamerica.us/mcp (see https://namasteamerica.us/for-agents)."},"servers":[{"url":"https://namasteamerica.us"}],"paths":{"/api/v1/search":{"get":{"operationId":"searchDirectory","summary":"Search the Indian-American directory","parameters":[{"name":"q","in":"query","required":true,"schema":{"type":"string"},"description":"Free-text query, e.g. 'vegetarian thali' or 'hindu temple'"},{"name":"city","in":"query","schema":{"type":"string"}},{"name":"state","in":"query","schema":{"type":"string"},"description":"2-letter US state code, e.g. NJ"},{"name":"vertical","in":"query","description":"Scope to one category","schema":{"type":"string","enum":["restaurants","temples","groceries","professionals","salons","events","apparel","sweets","studios","services","community","legal","education","realestate","finance"]}},{"name":"lat","in":"query","schema":{"type":"number"}},{"name":"lng","in":"query","schema":{"type":"number"},"description":"With lat, enables proximity ranking + distance_miles"},{"name":"limit","in":"query","schema":{"type":"integer","default":20,"minimum":1,"maximum":50}}],"responses":{"200":{"description":"Matching listings","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SearchResult"}}}}}}},"/api/v1/verticals":{"get":{"operationId":"listVerticals","summary":"List the category keys","responses":{"200":{"description":"Category list"}}}}},"components":{"schemas":{"SearchResult":{"type":"object","properties":{"query":{"type":"string"},"count":{"type":"integer"},"ranking":{"type":"string"},"vertical":{"type":"string","nullable":true},"results":{"type":"array","items":{"$ref":"#/components/schemas/Listing"}}}},"Listing":{"type":"object","properties":{"vertical":{"type":"string"},"name":{"type":"string"},"city":{"type":"string"},"state":{"type":"string"},"address":{"type":"string"},"phone":{"type":"string"},"website":{"type":"string"},"latitude":{"type":"number"},"longitude":{"type":"number"},"rating":{"type":"number"},"tags":{"type":"array","items":{"type":"string"}},"description":{"type":"string"},"distance_miles":{"type":"number"},"open_now":{"type":"boolean","nullable":true}}}}}}