/api/v1/product_registrations/
Product Registrations Map
Resolve international cross-border complexities instantly. Provide a local registration number (e.g., a German PZN) and return all related registration codes across other markets, including the overarching EU-level code.
| Parameters | |
|---|---|
country |
Required |
reg_number |
Required |
page |
Optional |
page_size |
Optional |
{
"count": 123,
"next": "http://api.example.org/accounts/?page=4",
"previous": "http://api.example.org/accounts/?page=2",
"results": [
{
"count": 3,
"page_number": 1,
"next": null,
"previous": null,
"results": [
{
"code": "EU/1/97/031/026",
"country": {
"name": "European Union",
"code": "EU"
}
},
{
"code": "100125490",
"country": {
"name": "Poland",
"code": "PL"
}
},
{
"code": "003689",
"country": {
"name": "Slovenia",
"code": "SI"
}
}
]
}
]
}