Use a connectivity cloud designed for AI, APIs, and modern infrastructure to deliver powerful connectivity and uncompromising security for your applications and workloads.
The connectivity cloud is powered by AxisNow's two core products.
Running a unified control plane and distributed data plane across environments.
Providing security, performance, resiliency, observability, identity and access managment.
Build your own cloud edge in modern infrastructure. Connect, protect, and granular control your apps, AI, and APIs, simplifies application security and delivery.
See moreThe Non-Human IAM to replace manual and insecure access to service accounts, API keys, tokens and other NHIs across Cloud, On-Prem and SaaS environments.
See moreAxisNow is committed to building a first-class ecosystem, compatible with a range of heterogeneous environments, and seamlessly integrated with major IaaS, PaaS and SaaS, Trust and Credential Provider, IdP, EDR, SIEM, etc. We will continuously expand according to your use case needs.
Your Edge can be deployed flexibly in single cloud, multi-cloud, on-premises DC, or IaC environments. It runs in a variety of heterogeneous environments, providing you with complete control over your data, gateway visibility, and on-demand network coverage.
The Agent/Proxy support a range of operating systems and runtime environments, deploying alongside your apps(workloads). They enforce device restrictions and posture checks through integration with EDR.
Allows you to configure fully customized HTTP and TCP applications. Continuously integrate with modern APIs and services (such as third-party SaaS APIs, API gateways, databases, and data warehouses), enabling you to connect easily.
Based on plugins and DSL rule engines. Agile support for your business development needs, both foreseeable and unforeseen, like Lego.
Routing
SSL & TLS
AuthN/Z
AI / LLMs
Logs
More...
Trust Providers allow AxisNow to verify identities without the need for provisioning credentials or secrets.
Application (workload) identity verification is a core function. Only your own workloads — running in safe environments and communicating over secured connections — can use your APIs and backend resources.
AxisNow integrate with AWS metadata, GCP Workload Identity Federation, iOS App Attest / DeviceCheck and Google Play Integrity etc to provide the most comprehensive attestation
Credential providers (CPs) are systems that provide various types of access credentials, like OAuth tokens, API keys, or username and password pairs.
The credential providers delivers secrets “just-in-time” to the app only at the moment they are required to make an API call, and only when the app and its runtime environment has passed attestation. This ensures that sensitive secrets cannot be extracted from the app package or via MitM attacks. Developers also do not need to hardcode secrets. They can never be leaked.
AxisNow's API-first design easily integrates with your stack, no changes to infrastructure needed. Just choose your IaC, choose your VPC, and deploy.
1provider "http" {}
2resource "http_request" "post_request" {
3 url = "https://api.axisnow.io/client/v1/edges/deployment_configurations"
4 request {
5 method = "POST"
6 headers = {
7 "Content-Type" = "application/json"
8 "Accept" = "application/json"
9 "Authorization" = "Bearer 123"
10 }
11 body = jsonencode({
12 uuid = "d7b0d7a9-0e91-428f-a33d-1cf74218b341"
13 mode = "single"
14 type = "shell"
15 })
16 }
17 response {
18 body = true
19 }
20}
21output "response_status" {
22 value = http_request.post_request.response_status
23}
24output "response_body" {
25 value = http_request.post_request.response_body
26}
1package main
2import (
3 "fmt"
4 "strings"
5 "net/http"
6 "io"
7)
8func main() {
9 url := "https://api.axisnow.io/client/v1/edges/deployment_configurations"
10 payload := strings.NewReader("{\n \"uuid\": \"d7b0d7a9-0e91-428f-a33d-1cf74218b341\",\n \"mode\": \"single\",\n \"type\": \"shell\"\n}")
11 req, _ := http.NewRequest("POST", url, payload)
12 req.Header.Add("Content-Type", "application/json")
13 req.Header.Add("Accept", "application/json")
14 req.Header.Add("Authorization", "Bearer 123")
15 res, _ := http.DefaultClient.Do(req)
16 defer res.Body.Close()
17 body, _ := io.ReadAll(res.Body)
18 fmt.Println(res)
19 fmt.Println(string(body))
20}