API Security

Download OpenAPI specification:Download

Discover and monitor application APIs to protect your services against cybersecurity attacks and prevent sensitive data exposure.

Get all events

Retrieves a list of requests processed by your endpoints.

SecurityHTTP: bearer
Request
query Parameters
endpoint
string

Allows filtering endpoints by path. Supports regex and partial search.

Example: endpoint=example.com
start_date
string

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
end_date
string

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
limit
number
Default: 100

Limits the number of events in the response.

Example: limit=500
order
string
Default: "DESC"

Orders events by their 'publish_time' in descending (DESC) or ascending order (ASC).

Example: order=ASC
host
string

Searches events by the Host request header.

Example: host=api.transmitsecurity.io
user_agent
string

Searches events by the User-Agent request header.

Responses
200

Array of events containing the request and response data

400

Bad request in case of invalid query parameters

401

Unauthorized access

get/v1/api/events
Request samples
Response samples
application/json
{
  • "events": [
    ]
}

Get endpoints

Retrieves all endpoint URIs with their occurrences in the descending order.

SecurityHTTP: bearer
Request
query Parameters
endpoint
string

Allows filtering endpoints by path. Supports subpath and partial search.

Example: endpoint=example.com
limit
number
Default: 100

Limits the number of endpoints in the response.

Example: limit=500
Responses
200

Array of endpoints

400

Bad request in case of invalid query parameters

401

Unauthorized access

get/v1/api/events/endpoints
Request samples
Response samples
application/json
[
  • {
    }
]