Service Name : |
Oryza Model API |
Spec : |
This is an API for running OryzaPlease prepare the model input data in compressed file format |
Service URL: |
https://oryza-api.camp.re.kr/Oryza/ |
You can try the getSample command by entering the api_key entry and clicking the "Run" button.
When using python, you can use it like this.
res = requests.post(url="https://oryza-api.camp.re.kr/Oryza/getSample", json={api_key = "your_api_key_here"})
You can try using the connect command by entering the api_key item and clicking the "Run" button.
When using python, you can use it like this.
res = requests.post(url="https://oryza-api.camp.re.kr/Oryza/connect", json={api_key = "your_api_key_here"})
Please enter the api_key and jobid items and attach the zipped input file.
You can try using the launch command by clicking the "Run" button.
When using python, you can use it like this.
res = requests.post(url="https://oryza-api.camp.re.kr/Oryza/launch",
json={api_key = "your_api_key_here", key="your_jobid", file="your_encoded_file"})
*Please encode the input file into base64 and add it to json.
You can try using the getStatus command by entering the api_key and jobid items and clicking the "Run" button.
When using python, you can use it like this.
res = requests.post(url="https://oryza-api.camp.re.kr/Oryza/getStatus",
json={api_key = "your_api_key_here", key="your_jobid"})
You can try using the getOutput command by entering the api_key and jobid items and clicking the "Run" button.
When using python, you can use it like this.
res = requests.post(url="https://oryza-api.camp.re.kr/Oryza/getOutput",
json={api_key = "your_api_key_here", key="your_jobid"})
You can try using the disconnect command by entering the api_key and jobid items and clicking the "Run" button.
When using python, you can use it like this.
res = requests.post(url="https://oryza-api.camp.re.kr/Oryza/disconnect",
json={api_key = "your_api_key_here", key="your_jobid"})