VOOZH about

URL: https://apify.com/alixocracy/fiboflow-pro

⇱ FiboFlow Pro Β· Apify


Pricing

$1.00 / 1,000 results

Go to Apify Store

FiboFlow generates Fibonacci sequences on demand and makes them available via API or datasets. Customize sequence length, starting numbers, and output format. Ideal for math enthusiasts, developers testing algorithms, or any workflow that needs quick access to Fibonacci patterns at scale

Pricing

$1.00 / 1,000 results

Rating

5.0

(1)

Developer

πŸ‘ Ali Moghadam

Ali Moghadam

Maintained by Community

Actor stats

0

Bookmarked

4

Total users

4

Monthly active users

4 months ago

Last modified

Share

FiboFlow Pro - Fibonacci API

A powerful Fibonacci sequence calculation API using Apify SDK 3.

Features

  • Calculate the n-th Fibonacci number
  • Returns the complete Fibonacci sequence up to the n-th position
  • Input validation and error handling
  • Optimized iterative algorithm for better performance
  • Structured dataset output with friendly user interface
  • Multiple data views (Overview, Detailed, Sequence)

Usage

Input

The actor expects a JSON input with the following structure:

{
"n":10
}

Where n is the position in the Fibonacci sequence (0-100).

Output

The actor returns:

{
"input":10,
"fibonacci_number":55,
"sequence":[0,1,1,2,3,5,8,13,21,34,55],
"timestamp":"2025-09-07T...",
"message":"The 10-th Fibonacci number is 55"
}

Local Development

  1. Install dependencies:
$npminstall
  1. Test the Fibonacci logic:
$npm run test
  1. Test the actor logic locally:
$npm run test-local
  1. Run the actor (uses default input n=10):
$npm start
  1. Test with Apify CLI (recommended for full testing):
# Option A: Using npx (no global install needed)
npx apify-cli run --input'{"n": 15}'
# Option B: If you have Apify CLI installed globally
apify run --input'{"n": 15}'

Deployment to Apify

  1. Login to Apify:
# Using npx (recommended)
npx apify-cli login
# Or if globally installed
apify login
  1. Deploy the actor:
# Using npx
npx apify-cli push
# Or if globally installed
apify push

API Endpoints

Once deployed, you can access the actor via:

  • Apify API: https://api.apify.com/v2/acts/[ACTOR_ID]/runs
  • Web Interface: https://console.apify.com/actors/[ACTOR_ID]

Examples

Calculate 10th Fibonacci number

curl-X POST https://api.apify.com/v2/acts/[ACTOR_ID]/runs \
-H"Authorization: Bearer [API_TOKEN]"\
-H"Content-Type: application/json"\
-d'{"n": 10}'

Using Apify Client

const{ ApifyApi }=require('apify-client');
const client =newApifyApi({
token:'YOUR_API_TOKEN',
});
const run =await client.actor('[ACTOR_ID]').call({
n:15
});
console.log(run.defaultDatasetItems);

You might also like

OEIS Integer Sequences Scraper

parseforge/oeis-integer-sequences-scraper

Export integer sequences from the Online Encyclopedia of Integer Sequences (OEIS) with 370k+ entries. Search by A-number, keyword, or sequence values. Pull sequence terms, formulas, references, authors, cross-references, and program code.

Facebook Photos Scraper

api-empire/facebook-photos-scraper

Scrape public Facebook images at scale from albums, pages, events, and timelines. Perfect for building datasets, analyzing trends, or backing up visual content. Fast, stable, and metadata-rich output makes it ideal for SEO, research, and automation tools.

Tradingview Mcp

deadheadt/tradingview-mcp

Real-time TradingView market data via MCP. Screen stocks & crypto, technical analysis (RSI, MACD, BB, Ichimoku), Fibonacci levels, S/R zones, pivot points, VWAP, volume profile, earnings & IPO calendars, correlation. No API key needed.

3

Numbers API

shahidirfan/Number-API

Fetch fascinating math facts, historic anecdotes, date insights, and trivia for any number with the Numbers API Actor. Designed for speed and reliability, it supports batch queries, customizable outputs, and robust error handlingβ€”perfect for educators, developers, and creators.

22

5.0

Dryad Research Datasets Scraper

parseforge/datadryad-datasets-scraper

Gather structured records from Datadryad Datasets with names, identifiers, dates, descriptions, status flags and source links. Loved by research, intelligence and operational dashboards. Run on demand or on a recurring schedule and feed every row into your favourite analytics or workflow stack.

Excel to Markdown/Text

wowo51/xlsx-to-md

Perfect for AI that needs to save on expensive LLM costs.

πŸ‘ User avatar

Warren Harding

1

YouTube Transcript Scraper Pro (Captions + AI Fallback)

codepoetry/youtube-transcript-ai-scraper

Extract YouTube transcripts at scale without burning through your budget. It starts with free captions whenever they're available, then switches to AI only for videos that don't have them. You stay in control of costs, and the output β€” JSON, SRT, VTT, plain text, or LLM-ready format

PDF to Markdown/Text

wowo51/pdf-to-md

Perfect for AI that needs to save on expensive LLM costs.

πŸ‘ User avatar

Warren Harding

1

Related articles

Best web scraping APIs
Read more
What is an API?
Read more
The 12 best web scraping tools for 2026
Read more