# openapi.api.SearchApi ## Load the API package ```dart import 'package:openapi/api.dart'; ``` All URIs are relative to */api* Method | HTTP request | Description ------------- | ------------- | ------------- [**getExploreData**](SearchApi.md#getexploredata) | **GET** /search/explore | [**getSearchConfig**](SearchApi.md#getsearchconfig) | **GET** /search/config | [**search**](SearchApi.md#search) | **GET** /search | # **getExploreData** > List getExploreData() ### Example ```dart import 'package:openapi/api.dart'; // TODO Configure HTTP Bearer authorization: bearer // Case 1. Use String Token //defaultApiClient.getAuthentication('bearer').setAccessToken('YOUR_ACCESS_TOKEN'); // Case 2. Use Function which generate token. // String yourTokenGeneratorFunction() { ... } //defaultApiClient.getAuthentication('bearer').setAccessToken(yourTokenGeneratorFunction); // TODO Configure API key authorization: cookie //defaultApiClient.getAuthentication('cookie').apiKey = 'YOUR_API_KEY'; // uncomment below to setup prefix (e.g. Bearer) for API key, if needed //defaultApiClient.getAuthentication('cookie').apiKeyPrefix = 'Bearer'; final api_instance = SearchApi(); try { final result = api_instance.getExploreData(); print(result); } catch (e) { print('Exception when calling SearchApi->getExploreData: $e\n'); } ``` ### Parameters This endpoint does not need any parameter. ### Return type [**List**](SearchExploreResponseDto.md) ### Authorization [bearer](../README.md#bearer), [cookie](../README.md#cookie) ### HTTP request headers - **Content-Type**: Not defined - **Accept**: application/json [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **getSearchConfig** > SearchConfigResponseDto getSearchConfig() ### Example ```dart import 'package:openapi/api.dart'; // TODO Configure HTTP Bearer authorization: bearer // Case 1. Use String Token //defaultApiClient.getAuthentication('bearer').setAccessToken('YOUR_ACCESS_TOKEN'); // Case 2. Use Function which generate token. // String yourTokenGeneratorFunction() { ... } //defaultApiClient.getAuthentication('bearer').setAccessToken(yourTokenGeneratorFunction); // TODO Configure API key authorization: cookie //defaultApiClient.getAuthentication('cookie').apiKey = 'YOUR_API_KEY'; // uncomment below to setup prefix (e.g. Bearer) for API key, if needed //defaultApiClient.getAuthentication('cookie').apiKeyPrefix = 'Bearer'; final api_instance = SearchApi(); try { final result = api_instance.getSearchConfig(); print(result); } catch (e) { print('Exception when calling SearchApi->getSearchConfig: $e\n'); } ``` ### Parameters This endpoint does not need any parameter. ### Return type [**SearchConfigResponseDto**](SearchConfigResponseDto.md) ### Authorization [bearer](../README.md#bearer), [cookie](../README.md#cookie) ### HTTP request headers - **Content-Type**: Not defined - **Accept**: application/json [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **search** > SearchResponseDto search() ### Example ```dart import 'package:openapi/api.dart'; // TODO Configure HTTP Bearer authorization: bearer // Case 1. Use String Token //defaultApiClient.getAuthentication('bearer').setAccessToken('YOUR_ACCESS_TOKEN'); // Case 2. Use Function which generate token. // String yourTokenGeneratorFunction() { ... } //defaultApiClient.getAuthentication('bearer').setAccessToken(yourTokenGeneratorFunction); // TODO Configure API key authorization: cookie //defaultApiClient.getAuthentication('cookie').apiKey = 'YOUR_API_KEY'; // uncomment below to setup prefix (e.g. Bearer) for API key, if needed //defaultApiClient.getAuthentication('cookie').apiKeyPrefix = 'Bearer'; final api_instance = SearchApi(); try { final result = api_instance.search(); print(result); } catch (e) { print('Exception when calling SearchApi->search: $e\n'); } ``` ### Parameters This endpoint does not need any parameter. ### Return type [**SearchResponseDto**](SearchResponseDto.md) ### Authorization [bearer](../README.md#bearer), [cookie](../README.md#cookie) ### HTTP request headers - **Content-Type**: Not defined - **Accept**: application/json [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)