Start with 5000 API credits for free

Logging

Enable logs to get notified when API's change.

Default logs

TypedAPI provides default logging. To enable default logs, pass true as the second parameter to the typedclient function when initializing.

1
api = typedclient.connect('API_KEY', True)

Now whenever TypedAPI detects changes in an API while processing a request, it automatically logs these changes to the console.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
library: 'typedapi'
domain: 'amazon'
api: 'product'
current: '1.1.0'
latest: '1.2.0'
changes:
"items": {
"properties": {
"top_review": {
"added": true
}
}
}
}
}

Custom logs

Instead of using the default logging behavior, you can provide your own function to write custom logs or execute specific logic.

1
api = typedclient.connect(
'API_KEY',
lambda log: (
...
)
)

The custom log function you provide will run whenever TypedAPI detects changes just like the default log function. You can enrich logs with metadata like timestamps or execute necessary logic. The log object conforms to the type definition detailed below

1
2
3
4
5
6
7
8
9
{
library: String
domain: String
api: String
current: String
latest: String
changes: Object
}