Searches French companies by name, SIREN, SIRET or optional location criteria and returns
Searches French companies by name, SIREN, SIRET or optional location criteria and returns structured matching company records.
2000 (raw units)
price
4
calls / 30d
4
unique payers
2026-09-17
updated
Provider
api.helpmyagent.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xEaB9543AcF710a24fe096913A428E7d066c88F59",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "2000",
"maxTimeoutSeconds": 60
},
{
"scheme": "exact",
"network": "xrpl:0",
"payTo": "rUXKCZetEbwQc1i5vkJL6SNXYK3hG7Fezy",
"asset": "524C555344000000000000000000000000000000",
"amount": "0.002",
"maxTimeoutSeconds": 600
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"limit": 5,
"query": "La Poste"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"results": [
{
"activity_code": "53.10Z",
"address": "DIRECTION GENERALE DE LA POSTE 9 RUE DU COLONEL PIERRE AVIA 75015 PARIS",
"city": "PARIS",
"name": "LA POSTE",
"postal_code": "75015",
"siren": "356000000",
"siret": "35600000000048",
"status": "active"
}
]
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"type": "object"
},
"bodyType": {
"enum": [
"json"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"type": "object"
}
},
"required": [
"input",
"output"
],
"type": "object"
}
}
}Use it
curl
curl "https://api.helpmyagent.com/v1/company/fr/search" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.helpmyagent.com/v1/company/fr/search");
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://api.helpmyagent.com/v1/company/fr/search")
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/8666.json, and this resource appears in /discovery/resources and /discovery/search.