短链接 / V1 接口

API - 获取分组下的短链列表

吕遥
发布于 2024-08-10 14:00:00

接口地址

https://api.xiaomark.com/v1/link/get

请求方法

POST

请求参数说明

参数名类型是否必传描述
apikeystring用户的API密钥
group_sidstring链接分组的sid
offsetinteger起始位置,默认为0
limitinteger请求数量,不超过1000,默认为100

请求POST数据示例

{
    "apikey": "361f534e9897e75af4206ea820365fde",
    "url": "https://sourl.cn/HOHzsG",
    "group_sid": "w7ho5te8",
    "limit": 100
}

示例图

返回参数说明

名称类型描述
codeinteger返回码
messagestring返回信息
dataobject请求成功返回的数据
linksobject数组短链接列表
totalinteger总数
countinteger此次请求返回的数量

短链接信息 links

名称类型描述
namestring名称
urlstring短链接URL
origin_urlstring跳转链接URL,多个URL以换行符分隔
enabledbool是否可以访问(被封禁的链接不可访问)
webhookbool是否开启了Webhook推送
webhook_scenestringWebhook推送场景值

 

返回结果示例

{
    "code": 0,
    "data": {
        "total": 4,
        "count": 4,
        "links": [
            {
                "enabled": true,
                "name": "INTERVAL · GitHub",
                "origin_url": "https://github.com/interval-design",
                "url": "https://6url.cn/dHHEkW",
                "webhook": false,
                "webhook_scene": ""
            },
            {
                "enabled": true,
                "name": "短链接2dS3hK",
                "origin_url": "https://xiaomark.com/rule",
                "url": "https://sourl.cn/2dS3hK",
                "webhook": true,
                "webhook_scene": "rule"
            },
            {
                "enabled": true,
                "name": "短链接cb6eq6",
                "origin_url": "https://v.douyin.com/J8NjAx/",
                "url": "https://sourl.cn/cb6eq6",
                "webhook": false,
                "webhook_scene": ""
            },
            {
                "enabled": true,
                "name": "百度",
                "origin_url": "https://baidu.com",
                "url": "https://sourl.co/u7gZxM",
                "webhook": false,
                "webhook_scene": ""
            }
        ]
    },
    "message": "请求成功"
}
小码至营logo