HIX.AI
  1. Obtain
HIX.AI
  • Obtain
    • Obtain the response of your submitted task.
      GET
  • Submit
    • Create and submit a humanization task.
      POST
  1. Obtain

Obtain the response of your submitted task.

开发环境
http://dev-cn.your-api-server.com
开发环境
http://dev-cn.your-api-server.com
GET
/obtain
Obtain
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET 'http://dev-cn.your-api-server.com/obtain?task_id' \
--header 'api-key;'
响应示例响应示例
{
  "err_code": 0,
  "err_msg": "Success",
  "data": {
    "input": "How to Give a Great Gift to Someone\n\n\nChoosing the perfect gift for someone can be a delightful experience when you consider their preferences and interests. Here's a guide on how to give a great gift that will be appreciated and cherished:\n\n\n1. Know the Recipient: Take the time to understand the person you're buying for. Consider their hobbies, interests, and personality. What makes them happy?\n\n\n2. Listen and Observe: Pay attention to any hints or mentions of things they want or need. Sometimes, people drop subtle hints about what they'd like as a gift.\n\n\n3. Consider Practicality: A useful gift can be just as thoughtful as a sentimental one. Think about what would make the recipient's life easier or more enjoyable.",
    "input_words": 122,
    "task_id": "2c451bac-c5ea-4e77-a21a-23ebc14ba47f",
    "words_used": 97,
    "output": "How to Give a Great Gift to Someone\n\nChoosing the perfect present for another requires deep reflection on their passions and pursuits. A guide for bestowing a gift certain to be cherished:\n\n1. Fathoming the recipient entails comprehending their diversions, interests, and persona. What lifts their spirit? \n\n2. Heed hints and allusions to objects they covet or necessities they require, whether oblique or overt. Subtle signposts sometimes indicate coveted offerings.\n\n3. Pondering usefulness alongside sentiment, a present easing life or amplifying joy merits equal thought. Consider how your selection may delight through facilitating pleasure or alleviating burden.",
    "subtask_status": "completed",
    "task_status": true,
    "detection_result": "human",
    "detection_score": 100,
    "mode": "Fast"
  }
}

请求参数

Query 参数
task_id
string 
必需
Unique identifier for the task to be retrieved.
Header 参数
api-key
string 
必需
Authentication API key to access the endpoint.

返回响应

🟢200Successfully retrieved task details.
application/json
Body
err_code
integer 
可选
The response code. 0 indicates success.
err_msg
string 
可选
The error message, providing details in case of an error.
data
object 
可选
input
string 
可选
The content to be inputted. Minimum 50 words required.
input_words
integer 
可选
The number of words in the input.
task_id
string 
可选
A unique identifier for the task to be retrieved.
output
string 
可选
The output content.
words_used
integer 
可选
The number of words used.
subtask_status
enum<string> 
可选
The status of a single subtask. It can be 'running' for a subtask in progress, 'completed' for a successful subtask, and 'failed' for a failed subtask.
枚举值:
runningcompletedfailed
task_status
boolean 
可选
A boolean indicating whether the whole task is completed. 'true' means the task is completed, 'false' means it is not.
detection_result
enum<string> 
可选
The detection result of whether the content was generated by AI. It can be 'uncertain' for possibly AI-generated, 'human' for not AI-generated, and 'ai' for AI-generated.
枚举值:
uncertainaihuman
detection_score
integer 
可选
The detection result measured as a score within the range of [0-100]. 0 indicates that the content is entirely AI-generated, while 100 indicates that it is entirely human-written.
mode
enum<string> 
可选
The mode you choose to humanize the text. It can be 'Fast', 'Balanced', 'Aggressive', or 'Latest'. Fast: Offer fast text humanization to bypass AI detectors easily. Balanced: Provides a moderate level of rewriting to bypass more detectors. Aggressive: Applies extensive changes to bypass advanced detectors. Latest: Humanizes AI text with our latest, most effective technology.
枚举值:
FastBalancedAggressiveLatest
下一页
Create and submit a humanization task.
Built with