Supported versions:
Unsupported versions:
Now that you've configured Google Cloud and the Apigee UI, and installed and configured the runtime, you're ready to see how it all works together.
This section describes how to create a new API proxy in the UI by using the API Proxy Wizard.
To create a simple API proxy using the API Proxy Wizard:
The Proxy details view is displayed.
Your API proxy's details should look like the following:

Hybrid generates the proxy (sometimes referred to as the proxy bundle):

Apigee displays the Proxies view, which displays a list of API proxies. Your new proxy should display with a green status indicator, meaning that it has been deployed.
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 -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
For example:
curl -H Host:example.com --resolve example.com:443:233.252.0.123 https://example.com:443/myproxy -k
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.