# Get Capture Download Signalling

## Download a generated Signaling PCAP file by filename

> Download a previously generated Signaling PCAP file by specifying its filename. The filename should be obtained from the /uepcap endpoint. The response will prompt a file download in most clients. If the file is not found, a 404 error will be returned.

```json
{"openapi":"3.0.0","info":{"title":"Monogoto Edge User API Configuration","version":"2.0"},"servers":[{"url":"https://api.monogoto.io/api"}],"security":[{"BearerAuth":[]}],"components":{"securitySchemes":{"BearerAuth":{"type":"http","scheme":"bearer","bearerFormat":"JWT"}},"parameters":{"edgeIp":{"name":"edgeIp","in":"path","required":true,"schema":{"type":"string","enum":["Monogoto Edge IP"]},"description":"The IP address of the edge"}},"schemas":{"PcapError":{"type":"object","properties":{"error":{"type":"string"}},"required":["error"]}}},"paths":{"/v1/edge/{edgeIp}/downloadpcap":{"get":{"tags":["Capture Signaling"],"summary":"Download a generated Signaling PCAP file by filename","description":"Download a previously generated Signaling PCAP file by specifying its filename. The filename should be obtained from the /uepcap endpoint. The response will prompt a file download in most clients. If the file is not found, a 404 error will be returned.","operationId":"downloadGeneratedPcap","parameters":[{"$ref":"#/components/parameters/edgeIp"},{"in":"query","name":"filename","required":true,"schema":{"type":"string"},"description":"The filename returned by the /uepcap endpoint."}],"responses":{"200":{"description":"The requested PCAP file","content":{"application/octet-stream":{"schema":{"type":"string","format":"binary"}}}},"400":{"description":"Invalid input parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PcapError"}}}},"404":{"description":"File not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PcapError"}}}}}}}}}
```
