Skip to main content
GET
/
instruments
/
{symbol}
Get instrument
curl --request GET \
  --url https://api.halal.sh/v1/instruments/{symbol} \
  --header 'X-API-Key: <api-key>'
{
  "data": {
    "symbol": "NVDA",
    "company_name": "NVIDIA Corporation",
    "business_description": "<string>",
    "stock_status": "active",
    "delisted_at": "2023-11-07T05:31:56Z",
    "sector": "Technology",
    "industry": "Semiconductors",
    "current_price": 245.5,
    "change_24h": 3.25,
    "change_percent_24h": 1.34,
    "market_cap": 601200000000,
    "last_updated": "2023-11-07T05:31:56Z",
    "compliance": {
      "status": "compliant",
      "confidence": 0.94,
      "has_analysis": true
    },
    "has_health_analysis": true
  },
  "meta": {
    "request_id": "req_abc123",
    "methodology": "aaoifi-ss21@2024",
    "as_of": "2026-03-08T12:00:00Z",
    "retry_after": 120
  }
}

Authorizations

X-API-Key
string
header
required

Path Parameters

symbol
string
required

Stock ticker symbol (e.g., AAPL, NVDA, MSFT).

Required string length: 1 - 10
Example:

"NVDA"

Response

Instrument found

data
object
meta
object