Explorium Custom Enrichments API
Run a customer-specific custom enrichment, single-record or in bulk, by custom enrichment ID.
Run a customer-specific custom enrichment, single-record or in bulk, by custom enrichment ID.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
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.curl "https://apis.io/api/v1/apis/explorium-customenrichments-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
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: 3.2.0
info:
title: Partner Service Custom Enrichments API
version: 0.3.19
servers:
- url: https://api.explorium.ai
description: AgentSource Server
tags:
- name: CustomEnrichments
paths:
/v1/custom_enrichments/{custom_enrichment_id}/enrich:
post:
tags:
- CustomEnrichments
summary: Enrich With Custom Enrichment
description: 'Enrich a business using a custom enrichment.
Returns enriched data with the results from the custom enrichment.'
operationId: enrich_with_custom_enrichment
parameters:
- required: true
schema:
type: string
title: Custom Enrichment Id
name: custom_enrichment_id
in: path
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/BusinessesEnrichRequest'
required: true
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/CustomEnrichmentEnrichResponse'
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
security:
- APIKeyHeader: []
- APIKeyHeader: []
/v1/custom_enrichments/{enrichment_id}/bulk_enrich:
post:
tags:
- CustomEnrichments
summary: Bulk Enrich With Custom Enrichment
description: 'Enrich businesses using a custom enrichment.
Returns enriched data with the results from the custom enrichment.'
operationId: bulk_enrich_with_custom_enrichment
parameters:
- required: true
schema:
type: string
title: Enrichment Id
name: enrichment_id
in: path
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/BusinessesBulkEnrichRequest'
required: true
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/CustomEnrichmentEnrichResponse'
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
security:
- APIKeyHeader: []
- APIKeyHeader: []
components:
schemas:
BusinessesBulkEnrichRequest:
properties:
request_context:
type: object
title: Request Context
marked_for_null_replacement: true
nullable: true
parameters:
type: object
title: Parameters
nullable: true
business_ids:
items:
type: string
pattern: ^[a-f0-9]{32}$
type: array
maxItems: 50
minItems: 1
title: Business Ids
additionalProperties: false
type: object
required:
- business_ids
title: BusinessesBulkEnrichRequest
CustomEnrichmentResponseRow:
properties:
business_id:
type: string
pattern: ^[a-f0-9]{32}$
title: Business Id
data:
type: object
title: Data
description: The enriched data from the custom enrichment
type: object
required:
- business_id
- data
title: CustomEnrichmentResponseRow
HTTPValidationError:
properties:
detail:
items:
$ref: '#/components/schemas/ValidationError'
type: array
title: Detail
type: object
title: HTTPValidationError
CustomEnrichmentEnrichResponse:
properties:
response_context:
$ref: '#/components/schemas/ResponseContext'
data:
items:
$ref: '#/components/schemas/CustomEnrichmentResponseRow'
type: array
title: Data
total_results:
type: integer
title: Total Results
type: object
required:
- response_context
- data
- total_results
title: CustomEnrichmentEnrichResponse
description: Response model for enriched data from a custom enrichment.
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
ResponseContext:
properties:
correlation_id:
type: string
title: Correlation Id
request_status:
$ref: '#/components/schemas/RequestStatus'
time_took_in_seconds:
type: number
title: Time Took In Seconds
type: object
required:
- correlation_id
- request_status
- time_took_in_seconds
title: ResponseContext
RequestStatus:
type: string
enum:
- success
- miss
- failure
title: RequestStatus
description: "The `RequestStatus` class is an enumeration that defines the possible statuses of a request.\n\nThis enum is used to indicate whether a request was successful, missed, or failed. It ensures\nconsistent handling of request statuses across the application.\n\nAttributes:\n SUCCESS: Indicates that the request was successfully processed.\n MISS: Indicates that the request did not find any matching data.\n FAILURE: Indicates that the request encountered an error or failure."
BusinessesEnrichRequest:
properties:
request_context:
type: object
title: Request Context
marked_for_null_replacement: true
nullable: true
parameters:
type: object
title: Parameters
nullable: true
business_id:
type: string
pattern: ^[a-f0-9]{32}$
title: Business Id
additionalProperties: false
type: object
required:
- business_id
title: BusinessesEnrichRequest
securitySchemes:
APIKeyHeader:
type: apiKey
in: header
name: api_key