# fsNetworkHttpRequestGetHeaderSection The **fsNetworkHttpRequestGetHeaderSection** function is used to get the value of a specific header for the given request.   ##### Syntax ``` wasm char* fsNetworkHttpRequestGetHeaderSection( FsNetworkRequestId requestId const char* section ); ```   ##### Members {{< table-wrapper >}} | Parameters | Description | |-------------|----------------------------------------| | `requestId` | The request ID to get the data from. | | `section` | The header name to get the value from. | {{< /table-wrapper >}}   ##### Return Values This function will returns a valid pointer if it's successful (and this pointer must be freed). Otherwise it will returns a `nullptr` if the call failed.   ##### Remarks N/A