Identity
fr
#siren
#france
#company
#business
French SIREN Number
Matches a French SIREN (Système d'Identification du Répertoire des ENtreprises) number — 9 digits.
✓ French business identification✓ Trade register lookups✓ Tax forms
✓ Valid Examples
- 732829320
- 404833048
- 123456789
✗ Invalid Examples
- 73282932
- 7328293200
- 73282932A
Usage & Integration
Validate French SIREN Number natively in your backend or frontend without copying regex strings.
Node / Edge
import { validate } from '@regexto/validators';
validate('fr-siren', '...');Python
from regexto_validators import validate
validate("fr-siren", "...")Go
import "github.com/regex-to/validators-go"
valid, err := validators.Validate("fr-siren", "...")PHP
use RegexTo\Validators\Validator;
Validator::validate('fr-siren', '...');Rust
use regexto_validators::validate;
let is_valid = validate("fr-siren", "...").unwrap();