You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

 

Citation services provide methods for retrieving backward or forward citations for an individual or group of ucids.

/citations/backward

Method(s)GET

Path

/citations/backward

Parameter ValuesDescription
 @ucidString: ex. US-5551212-AOne or more space or comma-separate ucids

 

Example:

 

wget -O- -q \
  --header 'x-user:x' \
  --header 'x-password:y' \
'http://cdws.ificlaims.com/citations/backward?ucid=US-5551212-A'

 

Response JSON

 

{
   "status" : "success",
   "time" : "0.297",
   "citations" : [
      {
         "root" : "US-5551212-A",
         "ucids" : [
            "DE-3606826-A1",
            "US-4546875-A",
            "EP-0313721-A2",
            "US-3187480-A",
            "EP-0061805-A1",
            "US-2043419-A",
            "DE-8002686-U1",
            "DE-3138439-A1",
            "US-4905451-A",
            "US-4631900-A",
            "EP-0225665-A1",
            "US-4828110-A",
            "US-4534151-A"
         ]
      }
   ]
}


/citations/forward


Method(s)GET

Path

/citations/forward

Parameter ValuesDescription
 @ucidString: ex. US-5551212-AOne or more space or comma-separate ucids

 

Example:

 

wget -O- -q \
  --header 'x-user:x' \
  --header 'x-password:y' \
'http://cdws.ificlaims.com/citations/forward?ucid=US-5551212-A,EP-0700000-A2'

 


Response JSON

 

{
   "status" : "success",
   "time" : "0.143",
   "citations" : [
      {
         "root" : "US-5551212-A",
         "ucids" : [
            "US-5735104-A",
            "US-8516780-B2",
            "US-6223499-B1",
            "US-20110016831-A1",
            "US-20120186197-A1",
            "US-6338410-B1",
            "US-8448411-B2",
            "US-8216509-B2"
         ]
      },
      {
         "root" : "EP-0700000-A2",
         "ucids" : [
            "WO-2000048077-A1",
            "WO-2004107167-A1",
            "CN-102314514-A",
            "EP-1482406-A1",
            "US-6457019-B1",
            "US-6434685-B1",
            "WO-2013083935-A1",
            "US-6499095-B1",
            "US-6877161-B1"
         ]
      }
   ]
}

  • No labels