跳转到主要内容
GET
https://api.aisa.one/apis/v1
/
instagram
/
reels
/
trending
热门 Reels
curl --request GET \
  --url https://api.aisa.one/apis/v1/instagram/reels/trending \
  --header 'Authorization: Bearer <token>'
import requests

url = "https://api.aisa.one/apis/v1/instagram/reels/trending"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api.aisa.one/apis/v1/instagram/reels/trending', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://api.aisa.one/apis/v1/instagram/reels/trending",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://api.aisa.one/apis/v1/instagram/reels/trending"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("Authorization", "Bearer <token>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://api.aisa.one/apis/v1/instagram/reels/trending")
.header("Authorization", "Bearer <token>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.aisa.one/apis/v1/instagram/reels/trending")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'

response = http.request(request)
puts response.read_body
{
  "success": true,
  "credits_remaining": 100,
  "data": {
    "reels": [
      {
        "id": "3659267353687104516",
        "pk": "3659267353687104516",
        "shortcode": "DYt13O8gLoE",
        "url": "https://www.instagram.com/reel/DYt13O8gLoE/",
        "caption": "Funny clip from today",
        "taken_at": "2026-01-02T18:32:11.000Z",
        "media_type": 2,
        "product_type": "clips",
        "video_url": "https://scontent.cdninstagram.com/o1/v/t16/f2/m86/example.mp4",
        "video_versions": [
          {
            "type": 101,
            "width": 720,
            "height": 1280,
            "url": "https://scontent.cdninstagram.com/o1/v/t16/f2/m86/example.mp4"
          }
        ],
        "image_url": "https://scontent.cdninstagram.com/v/t51.2885-15/example.jpg",
        "image_versions2": {
          "candidates": [
            {
              "width": 720,
              "height": 1280,
              "url": "https://scontent.cdninstagram.com/v/t51.2885-15/example.jpg"
            }
          ]
        },
        "original_width": 720,
        "original_height": 1280,
        "has_audio": true,
        "like_count": 12345,
        "comment_count": 123,
        "play_count": 456789,
        "ig_play_count": 456789,
        "clips_metadata": {},
        "user": {
          "id": "123456789",
          "pk": "123456789",
          "username": "creator",
          "full_name": "Creator",
          "profile_pic_url": "https://scontent.cdninstagram.com/v/t51.2885-19/example.jpg",
          "is_verified": true,
          "is_private": false
        }
      }
    ]
  }
}
获取当前热门 Reels。

示例

curl "https://api.aisa.one/apis/v1/instagram/reels/trending" \
  -H "Authorization: Bearer YOUR_API_KEY"

授权

Authorization
string
header
必填

AIsa API 密钥。前往 https://aisa.one 获取

响应

200 - application/json

成功响应

success
boolean
credits_remaining
integer
reels
object[]
cursor
string | null