difference between admin api & dashboard #6180
-
Hi, I want to know the difference between apisix admin api and apisix-dashboard. If I need to add route dynamically, which way should I choose? Calling admin API directly or calling dashboard api? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Hi, @caibirdme The Apache APISIX Dashboard is designed to make it as easy as possible for users to operate Apache APISIX through a frontend interface : refer: https://github.com/apache/apisix-dashboard#whats-apache-apisix-dashboard |
Beta Was this translation helpful? Give feedback.
-
Hello there,
Admin API do the jsonschema check via a plugin-defined schema,
Not supported yet. |
Beta Was this translation helpful? Give feedback.
Hello there,
Admin API
is the build-in REST API of APISIX, Normally, It's recommended to useAdmin API
instead ofapisix-dashboard
according to your scenario. Both connect directly to the etcd, then distribute the change to the APISIX cluster.Admin API do the jsonschema check via a plugin-defined schema,
apisix-dashboard
do the jsonschema check with schema.jsonNot supported yet.