finance-query 2.5.0

A Rust library for querying financial data
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! CIK (Central Index Key) lookup models.

use serde::{Deserialize, Serialize};

/// An entry from the SEC ticker-to-CIK mapping.
///
/// Maps a stock ticker symbol to its SEC CIK number and company name.
#[derive(Debug, Clone, Serialize, Deserialize)]
#[non_exhaustive]
pub struct CikEntry {
    /// CIK number (unique SEC identifier)
    pub cik: u64,
    /// Ticker symbol
    pub ticker: String,
    /// Company name
    pub title: String,
}