{"openapi":"3.1.0","info":{"title":"Mappedo API","version":"0.1.0","description":"EU company data, ownership graphs, and buying committees from official registers. HTTP Basic auth: empty username, API key as password (lemlist convention)."},"servers":[{"url":"https://api.mappedo.com"}],"components":{"securitySchemes":{"basicAuth":{"type":"http","scheme":"basic"}},"schemas":{"Company":{"type":"object","properties":{"_id":{"type":"string","example":"CZ-26185610"},"name":{"type":"string"},"country":{"type":"string"},"registry_id":{"type":"string"},"legal_form_canonical":{"type":"string"},"domain":{"type":"string","nullable":true},"linkedin_url":{"type":"string","nullable":true},"people":{"type":"array","items":{"type":"object"}},"owners":{"type":"array","items":{"type":"object"}},"source":{"type":"string","example":"registry"},"as_of":{"type":"string","format":"date-time"}}}}},"security":[{"basicAuth":[]}],"paths":{"/api/database/companies":{"get":{"summary":"Search companies","parameters":[{"name":"q","in":"query","required":true,"schema":{"type":"string"}},{"name":"limit","in":"query","schema":{"type":"integer","default":25}},{"name":"offset","in":"query","schema":{"type":"integer","default":0}}],"responses":{"200":{"description":"matching companies","content":{"application/json":{"schema":{"type":"object","properties":{"companies":{"type":"array","items":{"$ref":"#/components/schemas/Company"}},"count":{"type":"integer"}}}}}}}}},"/api/database/companies/{id}":{"get":{"summary":"Company profile","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"CZ-26185610 or a bare registry number"}],"responses":{"200":{"description":"full profile","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Company"}}}},"404":{"description":"not found"}}}},"/api/database/companies/{id}/group":{"get":{"summary":"Group structure","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"parent chain and subsidiaries"}}}}}}