Back to Mem0

Get All Apps

embedchain/docs/examples/rest-api/get-all-apps.mdx

2.0.1361 B
Original Source
<RequestExample>
bash
curl --request GET \
  --url http://localhost:8080/apps
</RequestExample> <ResponseExample>
json
{
  "results": [
    {
      "config": "config1.yaml",
      "id": 1,
      "app_id": "app1"
    },
    {
      "config": "config2.yaml",
      "id": 2,
      "app_id": "app2"
    }
  ]
}
</ResponseExample>