Rest API integration

Hi,
How to create ADA address, sign transaction using rest api ?
Kindly do needful

Are you referring to…

1am so I have some brain freeze going on. :metal:

1 Like

Probably this repository has all the information you need to pick the library best for you: https://github.com/input-output-hk/adrestia

4 Likes

Thank you for replies @Trigger @SebastienGllmt
@SebastienGllmt I need to run Blockchain node in my server to hit this api ? “https://localhost:8090/v2/wallets”

Yes, for each solution you will have to run a node. If you’re looking for an API hosted by somebody else that you can reuse, I wouldn’t do it until after the Shelley hardfork because all the existing public APIs will go through breaking changes for this upgrade.

@SebastienGllmt I need to download ? https://input-output-hk.github.io/cardano-wallet/api/edge/ ‘Download OpenAPI specification’.

@SebastienGllmt https://github.com/input-output-hk/adrestia is there testnet option ?

Use a library or HTTP client (e.g., curl) to interact with the Cardano node via its REST API. The node’s REST API allows you to query information and submit transactions.

Generate a wallet using the Cardano Hierarchical Deterministic (HD) Wallet API. Derive an address from the wallet using the Cardano Addresses API. When working with the Cardano blockchain, understanding the B2B API meaning (Business-to-Business API) is essential, as it enables seamless integration with other systems and services.

See the code:

Generate a wallet

curl -X POST https://your-cardano-node:port/v2/wallets -d ‘{“name”: “MyWallet”}’

Derive an address from the wallet

curl -X POST