qywok's picture
tebakaja_proxy_space-0
e99542f
{
"swagger": "2.0",
"info": {
"description": "TebakAja REST API Service",
"title": "TebakAja",
"termsOfService": "https://swagger.io/terms/",
"contact": {
"name": "Si Mimin",
"url": "https://www.tebakaja.com",
"email": "tebakaja@gmail.com"
},
"license": {
"name": "Apache 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0.html"
},
"version": "1.0"
},
"host": "qywok-tebakaja-proxy-space-0.hf.space",
"paths": {
"/crypto/lists": {
"get": {
"description": "Cryptocurrency List",
"produces": [
"application/json"
],
"tags": [
"Cryptocurrency"
],
"summary": "Cryptocurrency List",
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/crypto.ApiResponse"
}
}
}
}
},
"/crypto/prediction": {
"post": {
"description": "Cryptocurrency Prediction",
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"tags": [
"Cryptocurrency"
],
"summary": "Cryptocurrency Prediction",
"parameters": [
{
"description": "Request Body",
"name": "requestBody",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/crypto.PredictionRequest"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/crypto.PredictionResponse"
}
}
}
}
},
"/national-currency/lists": {
"get": {
"description": "National Currency List",
"produces": [
"application/json"
],
"tags": [
"National Currency"
],
"summary": "National Currency List",
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/national_currency.ApiResponse"
}
}
}
}
},
"/national-currency/prediction": {
"post": {
"description": "National Currency Prediction",
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"tags": [
"National Currency"
],
"summary": "National Currency Prediction",
"parameters": [
{
"description": "Request Body",
"name": "requestBody",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/national_currency.PredictionRequest"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/national_currency.PredictionResponse"
}
}
}
}
},
"/stock/lists": {
"get": {
"description": "Stock List",
"produces": [
"application/json"
],
"tags": [
"Stock"
],
"summary": "Stock List",
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/stock.ApiResponse"
}
}
}
}
},
"/stock/prediction": {
"post": {
"description": "Stock Prediction",
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"tags": [
"Stock"
],
"summary": "Stock Prediction",
"parameters": [
{
"description": "Request Body",
"name": "requestBody",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/stock.PredictionRequest"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/stock.PredictionResponse"
}
}
}
}
}
},
"definitions": {
"crypto.ApiResponse": {
"type": "object",
"properties": {
"data": {},
"message": {
"type": "string"
},
"status_code": {
"type": "integer"
}
}
},
"crypto.PredictionRequest": {
"type": "object",
"required": [
"currency"
],
"properties": {
"currency": {
"type": "string",
"maxLength": 16,
"minLength": 4
},
"days": {
"type": "integer",
"maximum": 31,
"minimum": 1
}
}
},
"crypto.PredictionResponse": {
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"currency": {
"type": "string"
},
"predictions": {
"type": "object",
"properties": {
"actuals": {
"type": "array",
"items": {
"type": "object",
"properties": {
"date": {
"type": "string"
},
"price": {
"type": "number"
}
}
}
},
"predictions": {
"type": "array",
"items": {
"type": "object",
"properties": {
"date": {
"type": "string"
},
"price": {
"type": "number"
}
}
}
}
}
}
}
},
"message": {
"type": "string"
},
"status_code": {
"type": "integer"
}
}
},
"national_currency.ApiResponse": {
"type": "object",
"properties": {
"data": {},
"message": {
"type": "string"
},
"status_code": {
"type": "integer"
}
}
},
"national_currency.PredictionRequest": {
"type": "object",
"required": [
"currency"
],
"properties": {
"currency": {
"type": "string",
"maxLength": 16,
"minLength": 4
},
"days": {
"type": "integer",
"maximum": 31,
"minimum": 1
}
}
},
"national_currency.PredictionResponse": {
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"currency": {
"type": "string"
},
"predictions": {
"type": "object",
"properties": {
"actuals": {
"type": "array",
"items": {
"type": "object",
"properties": {
"date": {
"type": "string"
},
"price": {
"type": "number"
}
}
}
},
"predictions": {
"type": "array",
"items": {
"type": "object",
"properties": {
"date": {
"type": "string"
},
"price": {
"type": "number"
}
}
}
}
}
}
}
},
"message": {
"type": "string"
},
"status_code": {
"type": "integer"
}
}
},
"stock.ApiResponse": {
"type": "object",
"properties": {
"data": {},
"message": {
"type": "string"
},
"status_code": {
"type": "integer"
}
}
},
"stock.PredictionRequest": {
"type": "object",
"required": [
"currency"
],
"properties": {
"currency": {
"type": "string",
"maxLength": 16,
"minLength": 4
},
"days": {
"type": "integer",
"maximum": 31,
"minimum": 1
}
}
},
"stock.PredictionResponse": {
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"currency": {
"type": "string"
},
"predictions": {
"type": "object",
"properties": {
"actuals": {
"type": "array",
"items": {
"type": "object",
"properties": {
"date": {
"type": "string"
},
"price": {
"type": "number"
}
}
}
},
"predictions": {
"type": "array",
"items": {
"type": "object",
"properties": {
"date": {
"type": "string"
},
"price": {
"type": "number"
}
}
}
}
}
}
}
},
"message": {
"type": "string"
},
"status_code": {
"type": "integer"
}
}
}
}
}