# Network

## Get egress IP addresses

> Get platform egress IP addresses for firewall allowlisting.\
> \
> Returns the static IP addresses used by all outbound traffic from the\
> platform. Customers should add these to their firewall allowlists to\
> enable data source connectivity (EHR, CRM, FHIR stores, etc.).\
> \
> Permissions: authenticated (any role).

```json
{"openapi":"3.1.0","info":{"title":"Platform API","version":"1.0.0"},"servers":[{"url":"https://api.platform.amigo.ai","description":"Production"}],"security":[{"BearerAuth":[]}],"components":{"securitySchemes":{"BearerAuth":{"type":"http","scheme":"bearer","description":"API key issued via `POST /v1/{workspace_id}/api-keys`. Pass the returned `api_key` value as a Bearer token."}},"schemas":{"EgressIpsResponse":{"properties":{"egress_ips":{"items":{"type":"string"},"type":"array","title":"Egress Ips"},"region":{"type":"string","title":"Region"},"note":{"type":"string","title":"Note"}},"type":"object","required":["egress_ips","region","note"],"title":"EgressIpsResponse"}}},"paths":{"/v1/{workspace_id}/network/egress-ips":{"get":{"tags":["Network"],"summary":"Get egress IP addresses","description":"Get platform egress IP addresses for firewall allowlisting.\n\nReturns the static IP addresses used by all outbound traffic from the\nplatform. Customers should add these to their firewall allowlists to\nenable data source connectivity (EHR, CRM, FHIR stores, etc.).\n\nPermissions: authenticated (any role).","operationId":"get-egress-ips","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EgressIpsResponse"}}}},"429":{"description":"Rate limited"}}}}}}
```
