Discover and monitor application APIs to protect your services against cybersecurity attacks and prevent sensitive data exposure.
API Security
Download OpenAPI description
Languages
Servers
Production environment (US)
https://api.transmitsecurity.io/apisec/
Query
Allows filtering endpoints by path. Supports regex and partial search.
Example: endpoint=example.com
Allows filtering events within a specific time interval. Defines the start date to filter events that occurred after this timestamp. If not specified, treated as 7 days ago. Maximum 90 days from 'end_date'.
Example: start_date=2024-01-01T00:00:00Z
Allows filtering events within a specific time interval. Defines the end of the period. If not specified, treated as now.
Example: end_date=2024-01-07T00:00:00Z
Orders events by their 'publish_time' in descending (DESC) or ascending order (ASC).
Default "DESC"
Example: order=ASC
- Production environment (US)https://api.transmitsecurity.io/apisec/v1/api/events
- cURL
- Node.js
- Go
- JavaScript
- Java
- Python
curl -i -X GET \
'https://api.transmitsecurity.io/apisec/v1/api/events?endpoint=example.com&start_date=2024-01-01T00%3A00%3A00Z&end_date=2024-01-07T00%3A00%3A00Z&limit=500&order=ASC&host=api.transmitsecurity.io&user_agent=string' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'Response
application/json
{ "events": [ { … } ] }
- Production environment (US)https://api.transmitsecurity.io/apisec/v1/api/events/endpoints
- cURL
- Node.js
- Go
- JavaScript
- Java
- Python
curl -i -X GET \
'https://api.transmitsecurity.io/apisec/v1/api/events/endpoints?endpoint=example.com&limit=500' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'Response
application/json
[ { "occurrences": 0, "uri": "string" } ]