1**To retrieve a list of integrations**
2
3The following ``get-integrations`` example displays a list of all of an API's integrations. ::
4
5    aws apigatewayv2 get-integrations \
6        --api-id a1b2c3d4
7
8Output::
9
10    {
11        "Items": [
12            {
13                "ApiGatewayManaged": true,
14                "ConnectionType": "INTERNET",
15                "IntegrationId": "a1b2c3",
16                "IntegrationMethod": "POST",
17                "IntegrationType": "AWS_PROXY",
18                "IntegrationUri": "arn:aws:lambda:us-west-2:123456789012:function:my-function",
19                "PayloadFormatVersion": "2.0",
20                "TimeoutInMillis": 30000
21            },
22            {
23                "ConnectionType": "INTERNET",
24                "IntegrationId": "a1b2c4",
25                "IntegrationMethod": "ANY",
26                "IntegrationType": "HTTP_PROXY",
27                "IntegrationUri": "https://www.example.com",
28                "PayloadFormatVersion": "1.0",
29                "TimeoutInMillis": 30000
30            }
31        ]
32    }
33
34For more information, see `Configuring integrations for HTTP APIs <https://docs.aws.amazon.com/apigateway/latest/developerguide/http-api-develop-integrations.html>`__ and `Setting up WebSocket API integrations <https://docs.aws.amazon.com/apigateway/latest/developerguide/apigateway-websocket-api-integrations.html>`__ in the *Amazon API Gateway Developer Guide*.
35