Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagetext
{
   "time" : "0.100",
   "status" : "success",
   "content" : {
      "names" : [
         {
            "country" : "DE",
            "extract_status" : "V",
            "name" : "Eberhard Karls Universitaet Tuebingen",
            "parent_relationship" : "O",
            "category" : "Academic",
            "updated" : "2020-08-12T00:00:00Z",
            "name_type" : "N"
         },
         {
            "country" : "DE",
            "extract_status" : "V",
            "name" : "Eberhard Hoesch and Soehne GmbH",
            "parent_relationship" : "S",
            "name_type" : "N"
         },
; etc ...
         {
            "country" : "DE",
            "extract_status" : "V",
            "name" : "Eberhard Hoesch and Soehne GmbH Giesserei und Maschinenfabrik",
            "name_type" : "N"
         },
         {
            "country" : "DE",
            "extract_status" : "V",
            "name" : "Eberhard Hoesch and Soehne GmbH Verfahrens und Anlagentechnik",
            "name_type" : "N"
         },
         {
            "name" : "EBERHARD FABER",
            "updated" : "1976-12-31T00:00:00Z",
            "name_type" : "V"
         },
         {
            "name" : "DR. EBERHARD MOLL GMBH",
            "name_type" : "V"
         },

      ],
      "numFound" : 308,
      "QTime" : 87
   }
}

/names/ticker

This endpoint returns the name associated with a valid ticker symbol.

MethodGET
Path/names/ticker
Parameter
ValuesDescription

@qSearch expression, e.g., PFEA valid ticker symbol

Example

Code Block
languagetext
 wget -O- -q \
  --header 'x-user:x' \
  --header 'x-password:y' \
'http://cdws21.ificlaims.com/names/ticker?q=PFE'

Response

Code Block
languagetext
{
   "time" : "0.275",
   "status" : "success",
   "content" : {
      "names" : [
         {
            "country" : "US",
            "name" : "Pfizer Inc",
            "parent_relationship" : "O",
            "ticker" : [
               {
                  "symbol" : "PFE",
                  "exchange" : "XNYS"
               }
            ],
            "name_type" : "N",
            "extract_status" : "V",
            "updated" : "2018-05-08T00:00:00Z",
            "address" : "235 East 42nd Street, New York, NY, 10017, US",
            "category" : "Public"
         }
      ],
      "numFound" : 1,
      "QTime" : 233
   }
}

/names/ultimate

This endpoint returns the ultimate corporate parent for a given subsidiary.

...

Code Block
languagetext
wget -O- -q \
  --header 'x-user:x' \
  --header 'x-password:y' \
'http://cdws21.ificlaims.com/names/subsidiaries?nameq=Alphabet Inc'

Response (abbreviated)

...