@getanyapi/sdk 0.43.0 → 0.44.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +4 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +110 -47
- package/dist/index.d.ts +110 -47
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -3658,7 +3658,7 @@ var InstagramNamespace = class {
|
|
|
3658
3658
|
*
|
|
3659
3659
|
* Fetch a single Instagram post or reel by URL (media URLs, like count, owner, type) as normalized JSON.
|
|
3660
3660
|
*
|
|
3661
|
-
* Price: $0.
|
|
3661
|
+
* Price: $0.0005 per request.
|
|
3662
3662
|
*
|
|
3663
3663
|
* @example
|
|
3664
3664
|
* const res = await client.instagram.post({ url: "https://www.instagram.com/reel/DWzrfE2kaY8/" });
|
|
@@ -3737,12 +3737,12 @@ var InstagramNamespace = class {
|
|
|
3737
3737
|
/**
|
|
3738
3738
|
* Instagram Reel Transcript
|
|
3739
3739
|
*
|
|
3740
|
-
*
|
|
3740
|
+
* Download any public Instagram reel or video post to a hosted MP4 link, with an optional full speech transcript, speaker labels, and word-level timestamps. Transcription runs on MAI-Transcribe-2, chosen for its accuracy and its speaker labels. If you only want the text and not the video file, instagram.media_transcript is the cheaper transcript-only option.
|
|
3741
3741
|
*
|
|
3742
|
-
* Price: $0.
|
|
3742
|
+
* Price: $0.005 per request plus $0.006 per audio minute (maximum $0.05).
|
|
3743
3743
|
*
|
|
3744
3744
|
* @example
|
|
3745
|
-
* const res = await client.instagram.reelTranscript({ url: "https://www.instagram.com/reel/
|
|
3745
|
+
* const res = await client.instagram.reelTranscript({ url: "https://www.instagram.com/reel/CfY6jCIgH-P/", includeTranscript: true, wordTimestamps: false });
|
|
3746
3746
|
*/
|
|
3747
3747
|
reelTranscript(input, options) {
|
|
3748
3748
|
return this._core.run("instagram.reel_transcript", input, options);
|