# getInflationGovernor

## getInflationGovernor RPC Method

> Returns the current inflation governor, which contains the parameters that control Solana's inflation schedule including initial rates, taper rates, terminal rates, and foundation allocation.<br>

````json
{"openapi":"3.0.3","info":{"title":"Solana RPC API - getInflationGovernor Method","version":"1.0.0"},"tags":[{"name":"Economic Data","description":"Methods related to economic parameters and monetary policy of the Solana network.\nThese methods provide information about inflation, rewards, and economic incentives.\n"}],"servers":[{"url":"https://public.rpc.solanavibestation.com"},{"url":"https://basic.rpc.solanavibestation.com"},{"url":"https://ultra.rpc.solanavibestation.com"},{"url":"https://elite.rpc.solanavibestation.com"},{"url":"https://epic.rpc.solanavibestation.com"},{"url":"https://basic.swqos.solanavibestation.com"},{"url":"https://ultra.swqos.solanavibestation.com"},{"url":"https://elite.swqos.solanavibestation.com"}],"security":[{},{"AuthHeader":[]},{"URLParameter":[]}],"components":{"securitySchemes":{"AuthHeader":{"type":"apiKey","in":"header","name":"Authorization","description":"Authorization header for API key authentication.\n\n**Example:**\n```\nAuthorization: your-api-key-here\n```\n"},"URLParameter":{"type":"apiKey","in":"query","name":"api_key","description":"API key passed as a URL parameter for authentication.\n\n**Example:**\n```\nhttps://public.rpc.solanavibestation.com/?api_key=your-api-key-here\n```\n"}},"schemas":{"GetInflationGovernorRequest":{"type":"object","required":["jsonrpc","id","method"],"properties":{"jsonrpc":{"type":"string","description":"JSON-RPC protocol version","enum":["2.0"]},"id":{"oneOf":[{"type":"string"},{"type":"number"}],"description":"Request identifier that will be returned in the response"},"method":{"type":"string","description":"The RPC method name","enum":["getInflationGovernor"]},"params":{"type":"array","description":"Method parameters (optional):\n\n1. Configuration object (optional) - Configuration options for the request\n","minItems":0,"maxItems":1,"items":{"$ref":"#/components/schemas/InflationGovernorConfig"}}}},"InflationGovernorConfig":{"type":"object","description":"Configuration object for getInflationGovernor request","properties":{"commitment":{"type":"string","description":"The commitment describes how finalized a block is at that point in time. Options include: processed, confirmed, finalized\n","enum":["processed","confirmed","finalized"]}}},"GetInflationGovernorResponse":{"type":"object","description":"RPC response containing inflation governor information","required":["jsonrpc","id"],"properties":{"jsonrpc":{"type":"string","description":"JSON-RPC protocol version","enum":["2.0"]},"id":{"oneOf":[{"type":"string"},{"type":"number"}],"description":"Request identifier matching the original request"},"result":{"$ref":"#/components/schemas/InflationGovernor"},"error":{"$ref":"#/components/schemas/RpcError"}}},"InflationGovernor":{"type":"object","description":"Information about the current inflation governor parameters","required":["foundation","foundationTerm","initial","taper","terminal"],"properties":{"foundation":{"type":"number","format":"double","description":"Percentage of total inflation allocated to the foundation","minimum":0,"maximum":1},"foundationTerm":{"type":"number","format":"double","description":"Duration of foundation pool inflation in years","minimum":0},"initial":{"type":"number","format":"double","description":"Initial inflation percentage from time 0","minimum":0,"maximum":1},"taper":{"type":"number","format":"double","description":"Rate per year at which inflation is lowered. Rate reduction is derived  using the target slot time in genesis config.\n","minimum":0,"maximum":1},"terminal":{"type":"number","format":"double","description":"Terminal inflation percentage","minimum":0,"maximum":1}}},"RpcError":{"type":"object","description":"Standard JSON-RPC error object","required":["code","message"],"properties":{"code":{"type":"integer","description":"Numeric error code following JSON-RPC 2.0 specification:\n- `-32700`: Parse error\n- `-32600`: Invalid request  \n- `-32601`: Method not found\n- `-32602`: Invalid params\n- `-32603`: Internal error\n- `-32005`: Too Many Requests\n- `-32003`: Unauthorized\n"},"message":{"type":"string","description":"Human-readable error message"},"data":{"type":"object","description":"Additional structured error information (optional)","additionalProperties":true}}}}},"paths":{"/":{"post":{"summary":"getInflationGovernor RPC Method","description":"Returns the current inflation governor, which contains the parameters that control Solana's inflation schedule including initial rates, taper rates, terminal rates, and foundation allocation.\n","operationId":"getInflationGovernor","tags":["Economic Data"],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GetInflationGovernorRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/GetInflationGovernorResponse"}}}},"401":{"description":"Unauthorized","content":{"text/plain":{"schema":{"type":"string"}}}},"403":{"description":"Forbidden","content":{"text/plain":{"schema":{"type":"string"}}}},"429":{"description":"Too Many Requests","content":{"text/plain":{"schema":{"type":"string"}}}},"500":{"description":"Internal Server Error","content":{"text/plain":{"schema":{"type":"string"}}}}}}}}}
````
