Skip to content

Latest commit

 

History

History
34 lines (27 loc) · 2.19 KB

File metadata and controls

34 lines (27 loc) · 2.19 KB

api_info

get

Gets general information about the Connect API.

Sample

factom_client.api_info.get()

Parameters

Name Type Description SDK Error Message & Description
app_id optional string
This is the override parameter that allows user to specify a different API Application ID (which you can see by clicking on any of the applications in the application list that you see upon logging into https://account.factom.com).
app_key optional string
This is the override parameter that allows user to specify a different API Application Key (which you can see by clicking on any of the applications in the application list that you see upon logging into https://account.factom.com).
base_url optional string
This is the override parameter that allows user to specify a different API Base URL for your application (which you can see by clicking on any of the applications in the application list the you see upon logging into https://account.factom.com).

Returns

Response: OK

  • version: string
    Current version of the Connect API.
  • links: object
    Links to internal paths of the application.
    • links.chains: string
      The link to chain API.
{
   'version':'1.0.17',
   'links':{
      'chains':'/v1/chains'
   }
}