# AS2 (Agentic Secret Storage) AS2 is a simple, agent-friendly secret storage endpoint backed by Vestauth. ## Quickstart Install Vestauth and initialize your agent: ``` npm i -g vestauth vestauth agent init ``` ### Set secrets ``` vestauth agent curl -X POST https://as2.dotenvx.com/set -d '{"KEY":"value"}' ``` ### Get secrets ``` vestauth agent curl "https://as2.dotenvx.com/get?key=KEY" ``` You can fetch multiple keys with a comma-separated list: ``` vestauth agent curl "https://as2.dotenvx.com/get?key=KEY,TWILIO" ```