Skip to content
GET /v1/created

Applications created by an account

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/algorandapp-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

curl "https://api.oanor.com/algorandapp-api/v1/created" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/algorandapp-api/v1/created", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/algorandapp-api/v1/created");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
    "https://api.oanor.com/algorandapp-api/v1/created",
    headers={"x-oanor-key": "oanor_test_..."}
)

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "next": "1385499515",
        "note": "Every application this account has created, with each one's decoded global state and schema.",
        "count": 3,
        "source": "Algonode indexer",
        "address": "4HIR5U2J4FCIEAG6WMBJ4BS3VBTT6S7PLXXERVR2SQIOKZGZZZF2ZV27U4",
        "applications": [
            {
                "id": 1002541853,
                "creator": "4HIR5U2J4FCIEAG6WMBJ4BS3VBTT6S7PLXXERVR2SQIOKZGZZZF2ZV27U4",
                "deleted": false,
                "global_state": [
                    {
                        "key": "fee_manager",
                        "type": "bytes",
                        "value": "0xe1d11ed349e1448200deb3029e065ba8673f4bef5dee48d63a9410e564d9ce4b"
                    },
                    {
                        "key": "fee_setter",
                        "type": "bytes",
                        "value": "0xce4d03aa42bebc0165b9947f850c39b96cc487a9d7bf78f168d5b2fdcdb255ef"
                    },
                    {
                        "key": "fee_collector",
                        "type": "bytes",
                        "value": "0x15a8068d0ba40347267fd6a83d7765d906b1391c2ba8e20995d4ada3c84fe932"
                    }
                ],
                "created_at_round": 26051045,
                "clear_program_size": 8,
                "global_state_count": 3,
                "local_state_schema": {
                    "num-uint": 12,
                    "num-byte-slice": 2
                },
                "extra_program_pages": 3,
                "global_state_schema": {
                    "num-uint": 0,
                    "num-byte-slice": 3
                },
                "approval_program_size": 10308
            },
            {
                "id": 1083651166,
                "creator": "4HIR5U2J4FCIEAG6WMBJ4BS3VBTT6S7PLXXERVR2SQIOKZGZZZF2ZV27U4",
                "deleted": false,
                "global_state": [
                    {
                        "key": "manager",
                        "type": "bytes",
                        "value": "0xe1d11ed349e1448200deb3029e065ba8673f4bef5dee48d63a9410e564d9ce4b"
                    },
                    {
                        "key": "extra_collector",
                        "type": "bytes",
                        "value": "0xe1d11ed349e1448200deb3029e065ba8673f4bef5dee48d63a9410e564d9ce4b"
                    },
                    {
                        "key": "tinyman_app_id",
                        "type": "uint",
                        "value": 1002541853
                    }
                ],
                "created_at_round": 28340270,
                "clear_program_size": 8,
                "global_state_count": 3,
                "local_state_schema": {
                    "num-uint": 0,
                    "num-byte-slice": 0
                },
                "extra_program_pages": 0,
                "global_state_schema": {
                    "num-uint": 1,

…