Add or subtract from a timecode, either another timecode (b) or a raw frame count (frames)
Add or subtract from a timecode, either another timecode (b) or a raw frame count (frames), at a given frame rate. Uses frame-exact SMPTE math (including drop-frame). A result below zero is rejected as a clean 400.
2000 (raw units)
price
3
calls / 30d
1
unique payers
2026-09-06
updated
Provider
timecode.openverbs.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xb3f4de103F34b99f0Da19B4F16D6B53a14C2194A",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "2000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"a": "example",
"b": "example",
"dropFrame": false,
"frameRate": 24
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"a": {
"description": "The base timecode.",
"maxLength": 20,
"minLength": 1,
"type": "string"
},
"b": {
"description": "A timecode to add/subtract (use instead of frames).",
"maxLength": 20,
"minLength": 1,
"type": "string"
},
"dropFrame": {
"description": "Drop-frame counting (auto-detected from a's separator if omitted).",
"type": "boolean"
},
"frameRate": {
"description": "Frame rate for both operands.",
"enum": [
24,
25,
30,
48,
50,
60,
23.976,
29.97,
47.952,
59.94
],
"type": "number"
},
"frames": {
"description": "A frame count to add/subtract (use instead of b).",
"maximum": 1000000000000,
"minimum": -1000000000000,
"type": "integer"
},
"operation": {
"description": "Operation. Default add.",
"enum": [
"add",
"subtract"
],
"type": "string"
}
},
"required": [
"frameRate",
"a"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://timecode.openverbs.com/v1/add" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://timecode.openverbs.com/v1/add");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://timecode.openverbs.com/v1/add")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/13749.json, and this resource appears in /discovery/resources and /discovery/search.