near_me
开始使用
keyboard_arrow_down

games
文档-游戏
keyboard_arrow_down

local_mall
资源
keyboard_arrow_down
class
关于
menu UAPI 文档

UAPI

此API已被调用 318 次

接口: https://uapis.cn/api/sjsz

GET 随机数字
  • 请求参数
  • 返回结果
  • 返回数据结构
  • GET 随机数字

    GET /api/sjsz

    请求参数

    名称 参数范围 调用示例 必选 说明
    min -无限~无限 https://uapis.cn/api/sjsz?min=-100 生成的最小值(不填则为0)
    max -无限~无限 https://uapis.cn/api/sjsz?max=1000 生成的最大值(不填则为100)
    count -无限~无限 https://uapis.cn/api/sjsz?count=100 指定生成的数量(不填则为1)
    allowRepeat true or false https://uapis.cn/api/sjsz?allowRepeat=true 允许重复(不填则为false)
    allowDecimal true or false https://uapis.cn/api/sjsz?allowDecimal=true 允许小数点(不填则为false)
    decimalPlaces true or false https://uapis.cn/api/sjsz?decimalPlaces=3 小数点位数(不填则为2位)注!allowDecimal参数必须为true,否则无效

    成功-返回示例

    示例参数:https://uapis.cn/api/sjsz?min=-100&max=100&count=10&decimalPlaces=3&allowDecimal=true

    {
        "code": 200,
        "numbers": [
            "84.173",
            "99.860",
            "38.230",
            "-59.624",
            "62.298",
            "10.364",
            "-29.824",
            "54.486",
            "99.611",
            "-92.129"
        ]
    }

    400 Response

    {
        "code": 400,
        "msg": "min should be less than or equal to max"
    }

    返回结果

    状态码 状态码含义 说明 数据模型
    200 OK 成功 Inline
    400 min should be less than or equal to max 最小值不能大于最大值 Inline
    400 count should be greater than or equal to 1 生成的数量应大于或等于1 Inline
    400 decimalPlaces should be greater than or equal to 0 生成的小数点位数值应大于或等于0 Inline

    返回数据结构

    状态码 200

    名称 类型 必选 约束 中文名 说明
    » code number true none 返回码 none
    » numbers number true none 随机生成的数字 none

    状态码 400

    名称 类型 必选 约束 中文名 说明
    » code number true none 返回码 none
    » msg number true none 错误说明 none