finance

Fetch Saudi TASI company daily data and market summaries via REST endpoints.

Updated Apr 12, 2025
One-click install
npx skills add https://github.com/DavidKk/vercel-openapi --skill finance-davidkk
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: finance
Source: https://github.com/DavidKk/vercel-openapi/tree/main/app/finance
Command: npx skills add https://github.com/DavidKk/vercel-openapi --skill finance-davidkk

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Users need quick, reliable access to Saudi TASI company daily data and market summaries without building custom data fetchers or maintaining separate data sources.

Core Features & Use Cases

  • REST endpoints for company daily data and market summaries: /api/finance/tasi/company/daily and /api/finance/tasi/summary/daily.
  • Supports date-based queries and K-line ranges (from/to) to cover today, specific dates, or ranges for analysis.
  • Enables AI agents and data pipelines to fetch OHLC-like fields and volume/turnover data for dashboards, reports, or decision-making.

Quick Start

Call the REST endpoints with appropriate query parameters for a date or a date range to retrieve TASI data.

Frequently Asked Questions about finance

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I fetch Saudi TASI market data via REST endpoints?

Fetch Saudi TASI market data by calling the /api/finance/tasi/summary/daily or company daily REST endpoints with required query parameters. You provide a specific date or a from/to K-line range to receive structured JSON payloads containing market summaries and OHLC fields.

Can I retrieve historical K-line ranges for TASI company data?

Yes, you can retrieve historical K-line ranges for TASI company data by supplying the from and to query parameters to the /api/finance/tasi/company/daily endpoint. The API enforces YYYY-MM-DD date formats and returns JSON payloads with volume and turnover data for the specified range.

What query parameters are required for TASI daily data lookups?

Required query parameters for TASI daily data lookups include date for single-date queries, and from plus to for K-line ranges. For company-specific data, the code parameter is also required. All dates must strictly follow the YYYY-MM-DD format to return valid JSON results.

Does the TASI API return OHLC and volume fields for market summaries?

Yes, the TASI API returns OHLC-like fields and volume/turnover data for both market summaries and company daily data. Calling the summary or company daily REST endpoints with valid date parameters yields structured JSON payloads containing these financial metrics for analysis.

What is the best way to integrate Saudi TASI data into an AI agent pipeline?

Integrate Saudi TASI data into an AI agent pipeline by calling the REST endpoints with date or range parameters to fetch structured JSON. Agents can parse the returned OHLC fields and market summaries directly for dashboards, reports, or automated decision-making without custom data fetchers.

Why does my TASI API request fail when querying specific dates?

Your TASI API request fails when querying specific dates if the date format deviates from the required YYYY-MM-DD standard or if required parameters like code, from, and to are missing. The endpoints strictly enforce these formats and parameters to generate valid JSON payloads.