All URIs are relative to https://api.odin.io/
Method | HTTP request | Description |
---|---|---|
v1_exposed_files_count_post | POST /v1/exposed/files/count | Get file count |
v1_exposed_files_search_post | POST /v1/exposed/files/search | Search exposed files |
v1_exposed_files_summary_post | POST /v1/exposed/files/summary | Get file summary |
InlineResponse2009 v1_exposed_files_count_post(body)
Get file count
Returns overall count of exposed bucket files according to filters
from __future__ import print_function
import time
import odin
from odin.rest import ApiException
from pprint import pprint
# Configure API key authorization: ApiKeyAuth
configuration = odin.Configuration()
configuration.api_key['X-API-Key'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['X-API-Key'] = 'Bearer'
# create an instance of the API class
api_instance = odin.ExposedFilesApi(odin.ApiClient(configuration))
body = odin.ExposedCountRequest() # ExposedCountRequest | Count Request
try:
# Get file count
api_response = api_instance.v1_exposed_files_count_post(body)
pprint(api_response)
except ApiException as e:
print("Exception when calling ExposedFilesApi->v1_exposed_files_count_post: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
body | ExposedCountRequest | Count Request |
- Content-Type: /
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
ExposedFileAPIResponse v1_exposed_files_search_post(body)
Search exposed files
Search exposed files using advanved filters Search across categories {img, aud, vid, font, txt, doc, src, db, march, arch, 3d, exec, key, cert} Search across labels {credential, financial, pii, legal, ip, medical, hr, report, confidential, backup, compromised, vulnerable} Search across providers {aws, gcp, do, linode}
from __future__ import print_function
import time
import odin
from odin.rest import ApiException
from pprint import pprint
# Configure API key authorization: ApiKeyAuth
configuration = odin.Configuration()
configuration.api_key['X-API-Key'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['X-API-Key'] = 'Bearer'
# create an instance of the API class
api_instance = odin.ExposedFilesApi(odin.ApiClient(configuration))
body = odin.ExposedSearchRequest() # ExposedSearchRequest | Search Query
try:
# Search exposed files
api_response = api_instance.v1_exposed_files_search_post(body)
pprint(api_response)
except ApiException as e:
print("Exception when calling ExposedFilesApi->v1_exposed_files_search_post: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
body | ExposedSearchRequest | Search Query |
- Content-Type: /
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
InlineResponse20010 v1_exposed_files_summary_post(body)
Get file summary
Returns a summary of exposed bucket files according to provided filters
from __future__ import print_function
import time
import odin
from odin.rest import ApiException
from pprint import pprint
# Configure API key authorization: ApiKeyAuth
configuration = odin.Configuration()
configuration.api_key['X-API-Key'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['X-API-Key'] = 'Bearer'
# create an instance of the API class
api_instance = odin.ExposedFilesApi(odin.ApiClient(configuration))
body = odin.ExposedSummaryRequest() # ExposedSummaryRequest | Summary Request
try:
# Get file summary
api_response = api_instance.v1_exposed_files_summary_post(body)
pprint(api_response)
except ApiException as e:
print("Exception when calling ExposedFilesApi->v1_exposed_files_summary_post: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
body | ExposedSummaryRequest | Summary Request |
- Content-Type: /
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]