Namely Company Info API

The Company Info API from Namely — 1 operation(s) for company info.

Operations 1

GET /companies/info Company Info #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/namely-company-info-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

namely-company-info-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: ''
  title: Namely Company Info API
  description: Move your app forward with the Namely API Move your app forward with the Namely API
tags:
- name: Company Info
paths:
  /companies/info:
    get:
      operationId: GET_companies-info
      summary: Company Info
      tags:
      - Company Info
      description: 'Get company related information. This includes authentication methods, name, permalink, and background image.


        Note: Authentication is **not** required for this endpoint because the data (company name, background image, etc.) are required for displaying the public home page of a Namely company.'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  name:
                    type: string
                    description: Compay name
                  permalink:
                    type: string
                    description: Company permalink, the subdomain before namely.com
                  background_url:
                    type: string
                    description: Background image on the login page.
                  logo_url:
                    type: string
                    description: Logo image on the home page.
                  authentications:
                    type: array
                    items:
                      type: object
                      properties:
                        type:
                          type: string
                          enum:
                          - email_password
                          - google_oauth2
                          - saml
                        init_url:
                          type: string
                          required: false
components:
  securitySchemes:
    Authorization:
      name: Authorization
      type: apiKey
      in: header