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

# Get company profile

> Returns the cadastral data of the authenticated x-api-key and x-client-id company.



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/company
openapi: 3.0.0
info:
  title: PlugToPay API
  description: API to make payments easy in multiple gateways.
  version: 1.0.0
servers:
  - url: http://localhost:7701
    description: Test Server
security: []
paths:
  /api/v1/company:
    get:
      tags:
        - Company
      summary: Get company profile
      description: >-
        Returns the cadastral data of the authenticated x-api-key and
        x-client-id company.
      operationId: e89a72716e4ead482b836b5e98a7d0bf
      responses:
        '200':
          description: Company profile
          content:
            application/json:
              schema:
                properties:
                  id:
                    type: integer
                    example: 1
                  name:
                    type: string
                    example: Empresa LTDA
                  cnpj:
                    type: string
                    example: '12345678000190'
                    nullable: true
                  financial_email:
                    type: string
                    example: fin@empresa.com
                    nullable: true
                  phone:
                    type: string
                    example: '11900000000'
                    nullable: true
                  created_at:
                    type: string
                    format: date-time
                type: object
        '401':
          description: Unauthorized
      security:
        - BearerAuth: []
components:
  securitySchemes:
    BearerAuth:
      type: http
      description: >-
        User JWT token — obtained from /api/v1/auth/login or
        /api/v1/auth/register.
      bearerFormat: JWT
      scheme: bearer

````