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

# Get organization information for an audit

> Retrieves organization information for an audit.

This endpoint returns a single record containing the organization's
business information visible to auditors during an audit engagement.

Sorting and pagination are not applicable.

Rate limit: 10 requests / minute.



## OpenAPI

````yaml https://spec.speakeasy.com/vanta/vanta/conduct-an-audit-with-code-samples get /audits/{auditId}/organization/information
openapi: 3.0.0
info:
  title: Conduct an audit
  version: 1.0.0
  description: >-
    The Auditor API lets audit firms conduct audits from a tool outside of
    Vanta. Unlock data syncing with Vanta through this API.


    **Note for Vanta Gov (FedRAMP) customers:** Select `Vanta Gov (FedRAMP)`
    from the server dropdown to issue requests against
    `https://api.vanta-gov.com`. The OAuth token URL shown below defaults to the
    commercial host — replace it with `https://api.vanta-gov.com/oauth/token`.
  termsOfService: https://www.vanta.com/terms
  license:
    name: UNLICENSED
  contact:
    name: API Support
    url: https://help.vanta.com/
    email: support@vanta.com
servers:
  - url: https://api.vanta.com/v1
    description: US Region API
  - url: https://api.vanta-gov.com/v1
    description: Vanta Gov (FedRAMP)
security: []
paths:
  /audits/{auditId}/organization/information:
    get:
      tags:
        - Audits
      summary: Get organization information for an audit
      description: |-
        Retrieves organization information for an audit.

        This endpoint returns a single record containing the organization's
        business information visible to auditors during an audit engagement.

        Sorting and pagination are not applicable.

        Rate limit: 10 requests / minute.
      operationId: GetOrganizationInformation
      parameters:
        - description: The audit ID
          in: path
          name: auditId
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Organization information record
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AuditOrganizationInformation'
              examples:
                Example 1:
                  value:
                    id: 5f2c939a52855e725c8d5824
                    displayName: Acme Corp
                    legalName: Acme Corporation Inc.
                    incorporation: Incorporated in the United States
                    url: https://acme.example.com
                    mailingAddress: 123 Main St, San Francisco, CA 94105
                    telephone: +1-555-123-4567
                    companyLogo:
                      url: https://storage.example.com/logos/acme.png
      security:
        - bearerAuth: []
      x-codeSamples:
        - lang: typescript
          label: GetOrganizationInformation
          source: |-
            import { Vanta } from "vanta-auditor-api-sdk";

            const vanta = new Vanta({
              bearerAuth: process.env["VANTA_BEARER_AUTH"] ?? "",
            });

            async function run() {
              const result = await vanta.audits.getOrganizationInformation({
                auditId: "<id>",
              });

              console.log(result);
            }

            run();
        - lang: java
          label: GetOrganizationInformation
          source: >-
            package hello.world;


            import com.vanta.vanta_auditor_api.Vanta;

            import
            com.vanta.vanta_auditor_api.models.operations.GetOrganizationInformationResponse;

            import java.lang.Exception;


            public class Application {

                public static void main(String[] args) throws Exception {

                    Vanta sdk = Vanta.builder()
                            .bearerAuth(System.getenv().getOrDefault("BEARER_AUTH", ""))
                        .build();

                    GetOrganizationInformationResponse res = sdk.audits().getOrganizationInformation()
                            .auditId("<id>")
                            .call();

                    if (res.auditOrganizationInformation().isPresent()) {
                        System.out.println(res.auditOrganizationInformation().get());
                    }
                }
            }
components:
  schemas:
    AuditOrganizationInformation:
      description: >-
        Organization information record returned by the auditor organization
        API.


        `id` and `displayName` are always present (primary fields). Other fields

        are optional to support controlled audits where only approved columns
        are

        returned.
      properties:
        id:
          type: string
          description: Business info document identifier.
          example: 5f2c939a52855e725c8d5824
        displayName:
          type: string
          description: Display name of the organization.
          example: Acme Corp
        legalName:
          type: string
          nullable: true
          description: Legal name of the organization.
          example: Acme Corporation Inc.
        incorporation:
          type: string
          nullable: true
          description: |-
            Incorporation status. Returns "Incorporated in the United States"
            when the organization is a US company, or null otherwise.
          example: Incorporated in the United States
        url:
          type: string
          nullable: true
          description: Organization URL.
          example: https://acme.example.com
        mailingAddress:
          type: string
          nullable: true
          description: Mailing address of the organization.
          example: 123 Main St, San Francisco, CA 94105
        telephone:
          type: string
          nullable: true
          description: Telephone number of the organization.
          example: +1-555-123-4567
        companyLogo:
          allOf:
            - $ref: '#/components/schemas/AuditOrganizationCompanyLogo'
          nullable: true
          description: >-
            Company logo reference (download URL), or null if no logo is
            uploaded.
      required:
        - id
        - displayName
      type: object
      additionalProperties: false
    AuditOrganizationCompanyLogo:
      description: Company logo reference for an organization.
      properties:
        url:
          type: string
          description: URL to download the company logo.
          example: https://storage.example.com/logos/acme.png
      required:
        - url
      type: object
      additionalProperties: false
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````