Not sure, if you mean out of the C-code or the SWCs software component description (SWCD).
The RTE interfaces in C-code are described in the AUTOSAR_SWS_RTE.pdf in the RTE API Function reference.
In the end, all official interface usage of an SWC is coming out of the contract of the SWCD, they all start with Rte_*.
Keep in mind, that some interfaces also call down into BSW modules, like Rte_Read/Write to Com (Com_Send/ReceiveSignal, Com_Send/ReceiveSignalGroup, ...), which might depend on the system descriptions definition, if the SWCs are mapped on the same ECU (Intra-ECU-comm.) or different ECUs (Inter-ECU-comm.). And even Intra-ECU-comm. might depend on, if they are on the same partition or not (Inter-OS-application comm.), if you have multiple cores in the ECU/processor.
In the SWCD, each SWC has its Client/Server and Sender/Receiver Ports. Each Runnable Entity (RE) describes the access to ports and the triggering of the RE due to an Event (e.g. dataReveivedEvent, TimingEvent, Internal/ExternalTriggerOccuredEvent, OperationInvokedEvent, ..).
These Events are then mapped by RTE.
Exceptions to this are library calls, here the SWCs are only required to specify the dependency to a specific library and its version (for AUTOSAR Standard libs like BFX, EFX, IFL/X, MFL/X the version is implicitly the same as the AUTOSAR version used). The actual library functions called from the SWC are not described by SWCD, due to how AUTOSAR defines libraries.