Passer au contenu

📘 Directory

Directory operations

📘 Get directory entries for SIREN

Requête

Get all directory/routing entries for a given SIREN.

Returns routing information for a company, including establishment details and routing configurations for electronic invoicing.

Sécurité
APIKeyHeader
Chemin
sirenstring(Siren)^\d{9}$obligatoire

Company SIREN number

curl -i -X GET \
  'https://pdp.seqino.dev/api/directory/{siren}' \
  -H 'Authorization: YOUR_API_KEY_HERE'

Réponses

Directory entries details

Corpsapplication/json
Array [
sirenstring(Siren)^(\d{9}|([A-Z]{2})?\d{10})$obligatoire

Company identification number (SIREN or BCE number)

namestring, non-empty(Name)obligatoire

Company name

suffixstring or null(Suffix)
Any of:

Service suffix - when using simple SIREN+suffix nomenclature

string
siretstring or null(Siret)
Any of:

Establishment identification number (SIRET)

string
routing_identifierstring or null(Routing Identifier)
Any of:

Routing identifier

string
routing_identifier_typeRoutingIdentifierType (string) or null
Any of:

Type of routing identifier.

string(RoutingIdentifierType)
Enum:"0224""0088""0060""Internal"
routing_code_labelstring or null(Routing Code Label)
Any of:

Label for the routing code

[ 1 .. 100 ] characters
string
establishment_natureEstablishmentNature (string) or null
Any of:

Nature of the establishment.

string(EstablishmentNature)
Enum:"Private""Public"
legal_commitment_managementboolean or null(Legal Commitment Management)
Any of:

Legal commitment management status

boolean
administrative_statusAdministrativeStatus (string) or null
Any of:

Administrative status of the establishment.

string(AdministrativeStatus)
Enum:"A""F"
addressableboolean or null(Addressable)
Any of:

Whether the company is addressable

boolean
addressAddress (object) or null
Any of:

Address information for the establishment.

peppol_addressstring(Peppol Address)obligatoire

Peppol electronic address

]
Response
[ { "siren": "123456789", "name": "string", "suffix": "Administration", "siret": "12345678901234", "routing_identifier": "GLN_987654321", "routing_identifier_type": "0224", "routing_code_label": "string", "establishment_nature": "Private", "legal_commitment_management": true, "administrative_status": "A", "addressable": true, "address": {}, "peppol_address": "string" } ]