> ## Documentation Index
> Fetch the complete documentation index at: https://hedera-0c6e0218-test-standard-runner.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# ScheduleGetInfo

Gets information about a schedule in the network's action queue. Responds with INVALID\_SCHEDULE\_ID if the requested schedule doesn't exist.

## ScheduleGetInfoQuery

| Field        | Type                                                           | Description                                                                                                                                         |
| ------------ | -------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- |
| `header`     | ​[QueryHeader](/reference/protobuf/miscellaneous/queryheader)​ | Standard info sent from client to node, including the signed payment, and what kind of response is requested (cost, state proof, both, or neither). |
| `scheduleID` | ​[ScheduleID](/reference/protobuf/basic-types/scheduleid)      | The ID of the Scheduled Entity                                                                                                                      |

## ScheduleInfo

Information summarizing schedule state.

| Field                      | Type                                                                                  | Description                                                                                                                                                                          |
| -------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| `scheduleID`               | [ScheduleID](/reference/protobuf/basic-types/scheduleid)                              | The id of the schedule                                                                                                                                                               |
| `creatorAccountID`         | [AccountID](/reference/protobuf/basic-types/accountid)                                | The id of the account responsible for the service fee of the scheduled transaction                                                                                                   |
| `payerAccountIDAccountID`  | [AccountID](/reference/protobuf/basic-types/accountid)                                | The account which is going to pay for the execution of the scheduled transaction                                                                                                     |
| `scheduledTransactionBody` | [SchedulableTransactionBody](/reference/protobuf/schedule/schedulabletransactionbody) | The scheduled transaction                                                                                                                                                            |
| `signers`                  | [KeyList](/reference/protobuf/basic-types/keylist)                                    | The Ed25519 keys the network deems to have signed the scheduled transaction                                                                                                          |
| `adminKey`                 | [Key](/reference/protobuf/basic-types/key)                                            | The key used to delete the schedule from state                                                                                                                                       |
| `memo`                     | string                                                                                | The publicly visible memo of the schedule                                                                                                                                            |
| `expirationTime`           | [TimeStamp](/reference/protobuf/miscellaneous/timestamp)                              | The epoch second at which the schedule will expire                                                                                                                                   |
| `scheduledTransactionID`   | [TransactionID](/reference/protobuf/basic-types/transactionid)                        | The transaction id that will be used in the record of the scheduled transaction (if it executes)                                                                                     |
| `ledger_id`                | bytes                                                                                 | The ledger ID the response was returned from; please see [HIP-198](https://github.com/hashgraph/hedera-improvement-proposal/blob/master/HIP/hip-198.md) for the network-specific IDs |
| **`oneof data`** :         |                                                                                       |                                                                                                                                                                                      |
| `deletion_time`            | [TimeStamp](/reference/protobuf/miscellaneous/timestamp)                              | If the schedule has been deleted, the consensus time when this occurred                                                                                                              |
| `execution_time`           | [TimeStamp](/reference/protobuf/miscellaneous/timestamp)                              | If the schedule has been executed, the consensus time when this occurred                                                                                                             |

‌

## ScheduleGetInfoResponse <a href="#consensusgettopicinforesponse" id="consensusgettopicinforesponse" />

Response wrapper for the ScheduleInfo.

| Field          | Type                                                                 | Description                                                                                                       |
| -------------- | -------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------- |
| `header`       | ​[ResponseHeader](/reference/protobuf/miscellaneous/responseheader)​ | Standard response from node to client, including the requested fields: cost, or state proof, or both, or neither. |
| `scheduleInfo` | [ScheduleInfo](#scheduleinfo)                                        | The information requested about this schedule instance                                                            |
