Financial Data
Ortex — Short Interest + Cost-to-Borrow + Fails-to-Deliver
premiumOrtex — Short Interest + Cost-to-Borrow + Fails-to-Deliver is an enterprise-grade financial data provider offering Short Interest, Cost to Borrow, Squeeze Detection through Aweb's unified API. It features none streaming support with standard-tier latency.
Specifications
Capabilities (3)
Quick start
Use Ortex — Short Interest + Cost-to-Borrow + Fails-to-Deliver through Aweb's unified API — no provider-specific SDK needed.
cURL
curl -X POST https://api.aweb.studio/v1/execute \
-H "Authorization: Bearer $AWEB_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"provider": "ortex",
"capability": "finance.short-interest",
"input": { "prompt": "Hello from Ortex — Short Interest + Cost-to-Borrow + Fails-to-Deliver!" }
}'TypeScript
import { Aweb } from '@aweb/core';
const aweb = new Aweb({ apiKey: process.env.AWEB_API_KEY });
const result = await aweb.execute({
provider: 'ortex',
capability: 'finance.short-interest',
input: { prompt: 'Hello from Ortex — Short Interest + Cost-to-Borrow + Fails-to-Deliver!' },
});
console.log(result.output);