# Cheminee::DefaultApi All URIs are relative to *http://localhost:3000/api/v1* | Method | HTTP request | Description | | ------ | ------------ | ----------- | | [**standardize_post**](DefaultApi.md#standardize_post) | **POST** /standardize | | ## standardize_post > > standardize_post(smile) ### Examples ```ruby require 'time' require 'cheminee' api_instance = Cheminee::DefaultApi.new smile = [Cheminee::Smile.new({smile: 'smile_example'})] # Array | begin result = api_instance.standardize_post(smile) p result rescue Cheminee::ApiError => e puts "Error when calling DefaultApi->standardize_post: #{e}" end ``` #### Using the standardize_post_with_http_info variant This returns an Array which contains the response data, status code and headers. > >, Integer, Hash)> standardize_post_with_http_info(smile) ```ruby begin data, status_code, headers = api_instance.standardize_post_with_http_info(smile) p status_code # => 2xx p headers # => { ... } p data # => > rescue Cheminee::ApiError => e puts "Error when calling DefaultApi->standardize_post_with_http_info: #{e}" end ``` ### Parameters | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **smile** | [**Array<Smile>**](Smile.md) | | | ### Return type [**Array<StandardizedSmile>**](StandardizedSmile.md) ### Authorization No authorization required ### HTTP request headers - **Content-Type**: application/json; charset=utf-8 - **Accept**: application/json; charset=utf-8