DLF agent API key — $0
DLF agent API key — $0.10 unlocks 10,000 mcents (1:1 starter) + $0.05 activation bonus unlockable by labeling 5 images
100000 (raw units)
price
1
calls / 30d
1
unique payers
2026-08-24
updated
Provider
dlf-gateway.agentlabel.workers.dev · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "base",
"payTo": "0x20Fb0619b6D23F8463d41C938Fc92115cC89406E",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "100000",
"maxTimeoutSeconds": 60
},
{
"scheme": "exact",
"network": "base",
"payTo": "0x20Fb0619b6D23F8463d41C938Fc92115cC89406E",
"asset": "0x9250532be90cc24e77a7cb160c4092c607242ba3",
"amount": "393356643357000000000000",
"maxTimeoutSeconds": 60
},
{
"scheme": "exact",
"network": "eip155:4663",
"payTo": "0x20Fb0619b6D23F8463d41C938Fc92115cC89406E",
"asset": "0xbA221e393645901C962Ad21E4e7FA097d550B67c",
"amount": "393356643357000000000000",
"maxTimeoutSeconds": 60
},
{
"scheme": "exact",
"network": "eip155:4663",
"payTo": "0x20Fb0619b6D23F8463d41C938Fc92115cC89406E",
"asset": "0x5fc5360d0400a0fd4f2af552add042d716f1d168",
"amount": "100000",
"maxTimeoutSeconds": 60
},
{
"scheme": "exact",
"network": "polygon",
"payTo": "0x20Fb0619b6D23F8463d41C938Fc92115cC89406E",
"asset": "0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359",
"amount": "100000",
"maxTimeoutSeconds": 60
},
{
"scheme": "exact",
"network": "arbitrum",
"payTo": "0x20Fb0619b6D23F8463d41C938Fc92115cC89406E",
"asset": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831",
"amount": "100000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"type": "object"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"properties": {
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://dlf-gateway.agentlabel.workers.dev/v1/signup" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://dlf-gateway.agentlabel.workers.dev/v1/signup");
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://dlf-gateway.agentlabel.workers.dev/v1/signup")
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/13627.json, and this resource appears in /discovery/resources and /discovery/search.