> ## Documentation Index
> Fetch the complete documentation index at: https://docs.registercheck.de/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Company Contact

> Get online presence and social media information about a company by its id.

- AI-generated company description
- Social media profiles (LinkedIn, Instagram, Facebook, Twitter, etc.)
- Website information
- Stock exchange listings and ticker symbols
- Contact details (phone numbers, email addresses)
- Brand name



## OpenAPI

````yaml get /companies/{company_id}/contact
openapi: 3.1.0
info:
  title: Registercheck API
  version: 1.0.0
servers:
  - url: https://jobs-api.registercheck.de/api/v2
security: []
paths:
  /companies/{company_id}/contact:
    get:
      tags:
        - Companies
      summary: Get Company Contact
      description: >-
        Get online presence and social media information about a company by its
        id.


        - AI-generated company description

        - Social media profiles (LinkedIn, Instagram, Facebook, Twitter, etc.)

        - Website information

        - Stock exchange listings and ticker symbols

        - Contact details (phone numbers, email addresses)

        - Brand name
      operationId: get_company_contact_companies__company_id__contact_get
      parameters:
        - name: company_id
          in: path
          required: true
          schema:
            type: string
            title: Company Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CompanyContactResponse'
        '404':
          description: Company not found
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
        '500':
          description: Internal server error
      security:
        - HTTPBearer: []
components:
  schemas:
    CompanyContactResponse:
      properties:
        id:
          type: string
          title: Id
          description: Unique company identifier
        online_presence:
          anyOf:
            - $ref: '#/components/schemas/OnlinePresence'
            - type: 'null'
          description: Company's online presence and social media information
      type: object
      required:
        - id
      title: CompanyContactResponse
      description: Response model for company contact/social media information
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    OnlinePresence:
      properties:
        linkedin_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Linkedin Url
          description: LinkedIn company page URL
        instagram_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Instagram Url
          description: Instagram profile URL
        facebook_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Facebook Url
          description: Facebook page URL
        twitter_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Twitter Url
          description: Twitter/X profile URL
        crunchbase_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Crunchbase Url
          description: Crunchbase company profile URL
        website_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Website Url
          description: Official company website URL
        stock_ticker:
          anyOf:
            - type: string
            - type: 'null'
          title: Stock Ticker
          description: Stock exchange ticker symbol
        phone_number:
          anyOf:
            - type: string
            - type: 'null'
          title: Phone Number
          description: Primary phone number
        email_address:
          anyOf:
            - type: string
            - type: 'null'
          title: Email Address
          description: Primary email address
        email:
          anyOf:
            - type: string
            - type: 'null'
          title: Email
          description: Alternative email field
        summary:
          anyOf:
            - type: string
            - type: 'null'
          title: Summary
          description: Brief company description or summary
        favicon:
          anyOf:
            - type: string
            - type: 'null'
          title: Favicon
          description: Company favicon URL
      type: object
      title: OnlinePresence
      description: Model for online presence/social media information
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      description: Enter your API key
      scheme: bearer

````