网页SEO分析

AI企业级网页seo分析

请求信息

http://api.tinise.cn/api/seo
总调用次数
0 次
添加时间
2025-10-01

请求参数

参数名 类型 必填 说明
url string 需要进行分析的网址
type string 默认返回text,可选html

返回示例

JSON
暂无返回示例

调用示例

PHP
<?php
$url = 'http://api.tinise.cn/api/seo';
$params = [
    'url' => 'YOUR_VALUE',
    'type' => 'YOUR_VALUE',
];
$url .= '?' . http_build_query($params);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>
Python
import requests

url = "http://api.tinise.cn/api/seo"
params = {
    'url': 'YOUR_VALUE',
    'type': 'YOUR_VALUE',
}
response = requests.get(url, params=params)
print(response.text)
JavaScript
const url = new URL('http://api.tinise.cn/api/seo');
const params = {
    'url': 'YOUR_VALUE',
    'type': 'YOUR_VALUE',
};
Object.keys(params).forEach(key => url.searchParams.append(key, params[key]));

fetch(url)
    .then(response => response.text())
    .then(data => console.log(data))
    .catch(error => console.error('Error:', error));