Supported versions:
Unsupported versions:
Now that you've installed and configured the Apigee hybrid runtime and ingress gateway, you're ready to see how it all works together.
This section describes how to create a new API proxy in the UI using the API Proxy Wizard.
The Proxy details view is displayed.
Your API proxy's details should look like the following:
Apigee displays the Proxy summary view. If you chose to deploy the proxy, the Deployments section displays the Revision number, which is 1 when you first deploy. The Status column displays the environments in which the proxy is deployed with a green status indicator.
Below that, the Revisions section shows all revisions made to this proxy. By clicking on one of the VIEW items in the Endpoint summary column, the Endpoint section displays:
/myproxy.
https://mocktarget.apigee.net.
When the UI indicates your proxy is deployed, you can try calling it using cURL or the REST client of your choice. For example:
DOMAIN environment variable is set to the domain name you used for
the hostname for your environment group in Project and org
setup - Step 3: Create an environment group.
echo $DOMAIN
Find the external IP address and port of the Apigee ingress gateway with the following command:
kubectl get svc -n APIGEE_NAMESPACE -l app=apigee-ingressgateway
Your output should look something like:
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE apigee-ingressgateway-prod-hybrid-37a39bd LoadBalancer 192.0.2.123 233.252.0.123 15021:32049/TCP,80:31624/TCP,443:30723/TCP 16h
export INGRESS_IP_ADDRESS=EXTERNAL_IP_ADDRESS
export INGRESS_PORT=PORT_NUMBERcurl -H Host:$DOMAIN --resolve \ $DOMAIN:$INGRESS_PORT:$INGRESS_IP_ADDRESS \ https://$DOMAIN:$INGRESS_PORT/myproxy -k -v
For example:
curl -v -H Host:example.com --resolve example.com:443:233.252.0.123 https://example.com:443/myproxy -k -v
Hello, Guest!
To learn more about building and deploying API proxies, see Build your first proxy overview.
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2026-06-09 UTC.