💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
## 根据ID查询 ``` GET /user/docs/3 ``` 查询到内容返回 ``` { "_index" : "user", "_type" : "docs", "_id" : "3", "_version" : 3, "_seq_no" : 4, "_primary_term" : 1, "found" : true, "_source" : { "name" : "李达康", "sex" : 1, "age" : 25, "address" : "河北省" } } ``` 未查到内容返回 ``` { "_index" : "user", "_type" : "docs", "_id" : "8", "found" : false } ```