Access Type
Access types can be public, internal or partner.
Access Type
Akto provides visibility into your APIs, regardless of whether they're accessed from a public network or internally via microservices. This feature enables you to monitor and ensure that internal APIs aren't exposed to the public network, thus enhancing your security measures.
Learn here how to configure Access Type CIDRs.
Possible Access Types
None
How it works?
Akto uses X-Forwarded-For
header to understand the list of IPs through which API call was routed. The evaluation rules are in the following order -
If any 1 IP is present which is not in
Private
orPartner
IP list, it is marked asPublic
.If any 1 IP in the header is from
Partner
and rest of the IPs are inPrivate
list, it is marked asPartner
If all IPs are in
Private
IPs list, then API is marked asPrivate
If header is absent, then we mark it as
None
What is Public API?
Public APIs refer to the specific API endpoints that are exposed to the public network. These APIs are typically used by the web dashboard or mobile app or directly via client-SDKs. These are openly available and accessible over the Internet. For example, a public API endpoint for a weather service might give access to weather data such as current weather, forecasts, or past weather details. Login APIs for Netflix are "public" APIs, because they can be hit from a public domain.
What is Internal API?
Internal APIs refer to the specific API endpoints that are used strictly internal and are NOT exposed to public network. These APIs are typically used by the other microservices and internal tools. For example, a /api/v1/send-welcome-email
API endpoint to send email notification for new users. This API is used by another microservice (register.company.io
) to send a welcome message to new users. Many times, specifically /health
endpoints are internal because they are accessed only internally.
What is Partner API?
Partner APIs refer to the specific API endpoints that can be used by IPs outside your VPC, but the access is limited to a small set of IPs. For example, a bank might open some of its APIs to VISA and MasterCard APIs only. Companies might setup VPC peering or whitelist only the NAT gateway of the Partners.
Detect Access Types
In the demonstration below, let's check out all the public APIs present in the juices-ALBTa-ME7JZNNWLKCF
collection.
Go to the API Discovery > API Collection. Select an API Collection and check the Access type to Public.
In the above demonstration, we discovered the presence of 53 public APIs in the juices-ALBTa-ME7JZNNWLKCF
collection and viewed the details of one of the endpoint, which is js/{param_STRING}
Last updated