メインコンテンツへスキップ
GET
/
api
/
v2.1
/
fundamentals
/
operationRatios
جلب نسب التشغيل V2.1
curl --request GET \
  --url 'https://api.benzinga.com/api/v2.1/fundamentals/operationRatios?token='
import requests

url = "https://api.benzinga.com/api/v2.1/fundamentals/operationRatios?token="

response = requests.get(url)

print(response.text)
const options = {method: 'GET'};

fetch('https://api.benzinga.com/api/v2.1/fundamentals/operationRatios?token=', 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.benzinga.com/api/v2.1/fundamentals/operationRatios?token=",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);

$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.benzinga.com/api/v2.1/fundamentals/operationRatios?token="

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

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.benzinga.com/api/v2.1/fundamentals/operationRatios?token=")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.benzinga.com/api/v2.1/fundamentals/operationRatios?token=")

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

request = Net::HTTP::Get.new(url)

response = http.request(request)
puts response.read_body
{
  "result": [
    {
      "company": {
        "primarySymbol": "AAPL",
        "primaryExchange": "NAS",
        "cik": "320193",
        "isin": "CA03785Y1007",
        "cusip": "03785Y100",
        "standardName": "Apple",
        "countryId": "USA",
        "isReit": false,
        "industryTemplateCode": "N",
        "businessCountryId": "USA",
        "isLimitedPartnership": false,
        "yearofEstablishment": 1977,
        "isLimitedLiabilityCompany": false
      },
      "operationRatios": [
        {
          "id": {
            "companyId": "0C00000ADA",
            "asOf": "2025-12-31",
            "reportType": "R",
            "period": "3M",
            "aorOrRestate": "RESTATE"
          },
          "fiscalYearEnd": 9,
          "isCalculated": false,
          "revenueGrowth": 0.156525,
          "operationIncomeGrowth": 0.187243,
          "netIncomeGrowth": 0.158739,
          "netIncomeContOpsGrowth": 0.158739,
          "operationRevenueGrowth3MonthAvg": 0.156525,
          "grossMargin": 0.481587,
          "operationMargin": 0.353738,
          "pretaxMargin": 0.354782,
          "netMargin": 0.292836,
          "taxRate": 0.174601,
          "ebitMargin": 0.353738,
          "ebitdaMargin": 0.376096,
          "salesPerEmployee": 866000.000000,
          "currentRatio": 0.973745,
          "quickRatio": 0.845166,
          "longTermDebtTotalCapitalRatio": 0.465110,
          "longTermDebtEquityRatio": 0.869543,
          "financialLeverage": 4.300907,
          "totalDebtEquityRatio": 1.026295,
          "normalizedNetProfitMargin": 0.292836,
          "daysInSales": 25.294396,
          "daysInInventory": 7.097358,
          "daysInPayment": 85.983152,
          "cashConversionCycle": -53.591397,
          "receivableTurnover": 3.607518,
          "inventoryTurnover": 12.856896,
          "paymentTurnover": 1.061254,
          "fixAssetsTuronver": 2.875321,
          "assetsTurnover": 0.389299,
          "roe": 0.519963,
          "roa": 0.114001,
          "roic": 0.239808,
          "debttoAssets": 0.238623,
          "commonEquityToAssets": 0.232509,
          "normalizedRoic": 0.239808,
          "cashRatio": 0.412073,
          "cashToTotalAssets": 0.176397,
          "netIncomePerEmployee": 253596.385542
        }
      ],
      "symbol": "AAPL",
      "idType": "SYMBOL",
      "id": "AAPL"
    }
  ]
}
{
  "result": [
    {
      "company": {
        "primarySymbol": "AAPL",
        "primaryExchange": "NAS",
        "cik": "320193",
        "isin": "CA03785Y1007",
        "cusip": "03785Y100",
        "standardName": "Apple",
        "countryId": "USA",
        "isReit": false,
        "industryTemplateCode": "N",
        "businessCountryId": "USA",
        "isLimitedPartnership": false,
        "yearofEstablishment": 1977,
        "isLimitedLiabilityCompany": false
      },
      "operationRatios": [
        {
          "id": {
            "companyId": "0C00000ADA",
            "asOf": "2025-12-31",
            "reportType": "R",
            "period": "3M",
            "aorOrRestate": "RESTATE"
          },
          "fiscalYearEnd": 9,
          "isCalculated": false,
          "revenueGrowth": 0.156525,
          "operationIncomeGrowth": 0.187243,
          "netIncomeGrowth": 0.158739,
          "netIncomeContOpsGrowth": 0.158739,
          "operationRevenueGrowth3MonthAvg": 0.156525,
          "grossMargin": 0.481587,
          "operationMargin": 0.353738,
          "pretaxMargin": 0.354782,
          "netMargin": 0.292836,
          "taxRate": 0.174601,
          "ebitMargin": 0.353738,
          "ebitdaMargin": 0.376096,
          "salesPerEmployee": 866000.000000,
          "currentRatio": 0.973745,
          "quickRatio": 0.845166,
          "longTermDebtTotalCapitalRatio": 0.465110,
          "longTermDebtEquityRatio": 0.869543,
          "financialLeverage": 4.300907,
          "totalDebtEquityRatio": 1.026295,
          "normalizedNetProfitMargin": 0.292836,
          "daysInSales": 25.294396,
          "daysInInventory": 7.097358,
          "daysInPayment": 85.983152,
          "cashConversionCycle": -53.591397,
          "receivableTurnover": 3.607518,
          "inventoryTurnover": 12.856896,
          "paymentTurnover": 1.061254,
          "fixAssetsTuronver": 2.875321,
          "assetsTurnover": 0.389299,
          "roe": 0.519963,
          "roa": 0.114001,
          "roic": 0.239808,
          "debttoAssets": 0.238623,
          "commonEquityToAssets": 0.232509,
          "normalizedRoic": 0.239808,
          "cashRatio": 0.412073,
          "cashToTotalAssets": 0.176397,
          "netIncomePerEmployee": 253596.385542
        }
      ],
      "symbol": "AAPL",
      "idType": "SYMBOL",
      "id": "AAPL"
    }
  ]
}

承認

token
string
query
必須

クエリパラメータ

symbols
string
必須

قائمة من الرموز مفصولة بفواصل (مثال: AAPL, MSFT)

asOf
string

إرجاع النتائج للتواريخ اللاحقة أو الموافقة للتاريخ المحدد في هذه المعلمة (YYYY-MM-DD)

period
string

يحدّد الفترة الزمنية للنتائج الناتجة (مثل Q1, 2023)

reportType
string

نوع التقرير: TTM (آخر اثني عشر شهرًا)، A (كما أُبلِغ عنه في الأصل)، R (مُعاد بيانه)، P (أولي)

レスポンス

بيانات نسب التشغيل

The response is of type string.