Candid Search API

Operations for searching the Candid nonprofit database.

Operations 4

POST /v4 Search Essentials v4 #
POST /v3 Search Essentials v3 #
POST /v2 Search Essentials v2 #
POST /v1 Search Essentials v1 #

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/candid-search-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

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

OpenAPI Specification

candid-search-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Candid Essentials Lookup Search API
  description: The Candid Essentials API provides core nonprofit search and lookup over Candid's database of U.S. nonprofits. It supports search by name, EIN, location, NTEE code, organization size, and other criteria, and returns summary records suitable for autocompletes, lookups, and basic-verification flows. Multiple versions (v1-v4) are available with POST search and GET lookup variants.
  version: v4
  contact:
    name: Candid Developer Support
    url: https://developer.candid.org/
  termsOfService: https://developer.candid.org/
servers:
- url: https://api.candid.org/essentials
  description: Candid Essentials API production server
security:
- apiKeyAuth: []
tags:
- name: Search
  description: Operations for searching the Candid nonprofit database.
paths:
  /v4:
    post:
      operationId: searchEssentialsV4
      summary: Search Essentials v4
      description: Search Candid's database of U.S. nonprofits using the v4 search endpoint, supporting flexible filters and faceted search.
      tags:
      - Search
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SearchRequest'
      responses:
        '200':
          description: Search results
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SearchResponse'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
  /v3:
    post:
      operationId: searchEssentialsV3
      summary: Search Essentials v3
      description: Search Candid's database of U.S. nonprofits using the v3 search endpoint.
      tags:
      - Search
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SearchRequest'
      responses:
        '200':
          description: Search results
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SearchResponse'
  /v2:
    post:
      operationId: searchEssentialsV2
      summary: Search Essentials v2
      description: Search Candid's database of U.S. nonprofits using the v2 search endpoint.
      tags:
      - Search
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SearchRequest'
      responses:
        '200':
          description: Search results
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SearchResponse'
  /v1:
    post:
      operationId: searchEssentialsV1
      summary: Search Essentials v1
      description: Search Candid's database of U.S. nonprofits using the v1 search endpoint.
      tags:
      - Search
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SearchRequest'
      responses:
        '200':
          description: Search results
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SearchResponse'
components:
  responses:
    BadRequest:
      description: The request was malformed or contained invalid parameters.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    Unauthorized:
      description: Authentication credentials are missing or invalid.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  schemas:
    Error:
      type: object
      description: Generic error response.
      properties:
        code:
          type: string
        message:
          type: string
      additionalProperties: true
    SearchResponse:
      type: object
      description: A generic search response object returned by Essentials endpoints.
      additionalProperties: true
    SearchRequest:
      type: object
      description: A generic search request object accepted by Essentials search endpoints.
      additionalProperties: true
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: Subscription-Key
      description: Candid subscription key required to call the Essentials API.
externalDocs:
  description: Candid Developer Documentation
  url: https://developer.candid.org/reference/welcome
x-generated-from: https://developer.candid.org/reference/welcome
x-generated-by: claude-crawl-2026-05-08