Skip to main content
POST
/
api
/
zefix
/
companies
/
publications
/zefix/companies/publications
curl --request POST \
  --url https://api.anysite.io/api/zefix/companies/publications \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "company": "<string>",
  "timeout": 300
}
'
[
  {
    "@type": "@zefix_publication",
    "shab_id": 123,
    "shab_date": "<string>",
    "registry_office_id": 123,
    "registry_office_canton": "<string>",
    "registry_office_journal_id": 123,
    "registry_office_journal_date": "<string>",
    "message": "<string>",
    "mutation_types": [
      {
        "@type": "@zefix_mutation_type",
        "id": 123,
        "key": "<string>"
      }
    ]
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
company
string
required

Company EHRA ID (numeric) or Swiss UID (format CHE-NNN.NNN.NNN)

Examples:

"126286"

"CHE-105.909.036"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

@type
string
default:@zefix_publication
shab_id
integer | null
shab_date
string | null
registry_office_id
integer | null
registry_office_canton
string | null
registry_office_journal_id
integer | null
registry_office_journal_date
string | null
message
string | null
mutation_types
ZefixMutationType · object[]