Create a sandbox key, quote, evaluate policy, open an intent.
Sandbox mode. AgentiCoins does not hold customer funds in this demo. Payment, verification and capital functions depend on partners and product configuration.
sk_sandbox_7f3a…
const quote = await agenticoins.quotes.create({
agent_id: "agt_atlas_kyb",
service_id: "svc_uk_company_kyb",
input: {
company_name: "Example Renewables Ltd",
jurisdiction: "GB"
},
budget_cap: { amount: 95, currency: "GBP" }
});
const decision = await agenticoins.policy.evaluate({
policy_id: "pol_research_team_standard",
quote_id: quote.id
});
if (decision.status === "approved") {
const intent = await agenticoins.paymentIntents.create({
quote_id: quote.id,
route: "sandbox_stablecoin_partner"
});
}