Evrim created-fields API
The created-fields API from Evrim — 3 operation(s) for created-fields.
The created-fields API from Evrim — 3 operation(s) for created-fields.
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/evrim-created-fields-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: Evrim answers Created Fields API
version: 0.5.18
description: Data when and how you want it.
servers:
- url: https://api.evrim.ai
description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: created-fields
paths:
/prod/v0/created-fields/:
get:
operationId: created_fields_list
parameters:
- name: limit
required: false
in: query
description: Number of results to return per page.
schema:
type: integer
- name: offset
required: false
in: query
description: The initial index from which to return the results.
schema:
type: integer
tags:
- created-fields
security:
- knoxApiToken: []
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/PaginatedCreatedFieldList'
description: ''
post:
operationId: created_fields_create
tags:
- created-fields
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/CreatedField'
application/x-www-form-urlencoded:
schema:
$ref: '#/components/schemas/CreatedField'
multipart/form-data:
schema:
$ref: '#/components/schemas/CreatedField'
required: true
security:
- knoxApiToken: []
responses:
'201':
content:
application/json:
schema:
$ref: '#/components/schemas/CreatedField'
description: ''
/prod/v0/created-fields/{field_id}/profile/:
post:
operationId: created_fields_profile_create
description: Attach a created field to a profile
parameters:
- in: path
name: field_id
schema:
type: string
pattern: ^\d+$
required: true
tags:
- created-fields
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/CreatedFieldToProfile'
application/x-www-form-urlencoded:
schema:
$ref: '#/components/schemas/CreatedFieldToProfile'
multipart/form-data:
schema:
$ref: '#/components/schemas/CreatedFieldToProfile'
required: true
security:
- knoxApiToken: []
responses:
'201':
description: No response body
/prod/v0/created-fields/{id}/:
get:
operationId: created_fields_retrieve
parameters:
- in: path
name: id
schema:
type: integer
description: A unique integer value identifying this created field.
required: true
tags:
- created-fields
security:
- knoxApiToken: []
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/CreatedField'
description: ''
put:
operationId: created_fields_update
parameters:
- in: path
name: id
schema:
type: integer
description: A unique integer value identifying this created field.
required: true
tags:
- created-fields
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/CreatedField'
application/x-www-form-urlencoded:
schema:
$ref: '#/components/schemas/CreatedField'
multipart/form-data:
schema:
$ref: '#/components/schemas/CreatedField'
required: true
security:
- knoxApiToken: []
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/CreatedField'
description: ''
patch:
operationId: created_fields_partial_update
parameters:
- in: path
name: id
schema:
type: integer
description: A unique integer value identifying this created field.
required: true
tags:
- created-fields
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/PatchedCreatedField'
application/x-www-form-urlencoded:
schema:
$ref: '#/components/schemas/PatchedCreatedField'
multipart/form-data:
schema:
$ref: '#/components/schemas/PatchedCreatedField'
security:
- knoxApiToken: []
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/CreatedField'
description: ''
delete:
operationId: created_fields_destroy
parameters:
- in: path
name: id
schema:
type: integer
description: A unique integer value identifying this created field.
required: true
tags:
- created-fields
security:
- knoxApiToken: []
responses:
'204':
description: No response body
components:
schemas:
CreatedFieldToProfile:
type: object
properties:
profile_id:
type: integer
writeOnly: true
required:
- profile_id
CreatedField:
type: object
properties:
id:
type: integer
readOnly: true
name:
type: string
writeOnly: true
maxLength: 255
specification:
type: string
writeOnly: true
maxLength: 255
source_entity_type:
type:
- string
- 'null'
writeOnly: true
maxLength: 255
description:
type: string
writeOnly: true
maxLength: 255
type:
type: string
writeOnly: true
maxLength: 3
enum_values:
type: array
items:
type: string
maxLength: 255
writeOnly: true
enum_many:
type: boolean
writeOnly: true
rel_template:
allOf:
- $ref: '#/components/schemas/Template'
writeOnly: true
field:
allOf:
- $ref: '#/components/schemas/Field'
readOnly: true
status:
type: string
readOnly: true
maxLength: 1
value:
readOnly: true
sources:
type:
- array
- 'null'
items:
type: string
maxLength: 255
writeOnly: true
directed_source:
type:
- string
- 'null'
writeOnly: true
maxLength: 255
keyword_search:
type:
- boolean
- 'null'
raw_documents:
type:
- boolean
- 'null'
required:
- description
- field
- id
- name
- specification
- status
- type
- value
PaginatedCreatedFieldList:
type: object
required:
- count
- results
properties:
count:
type: integer
example: 123
next:
type:
- string
- 'null'
format: uri
example: http://api.example.org/accounts/?offset=400&limit=100
previous:
type:
- string
- 'null'
format: uri
example: http://api.example.org/accounts/?offset=200&limit=100
results:
type: array
items:
$ref: '#/components/schemas/CreatedField'
Template:
type: object
properties:
id:
type: integer
readOnly: true
name:
type: string
maxLength: 255
description:
type:
- string
- 'null'
fields:
type: array
items:
$ref: '#/components/schemas/Field'
questions:
type: array
items:
type: string
maxLength: 255
required:
- fields
- id
- name
Field:
type: object
properties:
id:
type: integer
name:
type: string
maxLength: 255
description:
type: string
maxLength: 255
type:
type: string
maxLength: 3
rel_template_id:
type:
- integer
- 'null'
writeOnly: true
rel_template:
type:
- integer
- 'null'
readOnly: true
enum_values:
type: array
items:
type: string
maxLength: 255
enum_many:
type: boolean
sources:
type:
- array
- 'null'
items:
type: string
maxLength: 255
directed:
type: boolean
default: false
keyword_search:
type: boolean
default: true
raw_documents:
type: boolean
default: false
required:
- description
- name
- rel_template
- type
PatchedCreatedField:
type: object
properties:
id:
type: integer
readOnly: true
name:
type: string
writeOnly: true
maxLength: 255
specification:
type: string
writeOnly: true
maxLength: 255
source_entity_type:
type:
- string
- 'null'
writeOnly: true
maxLength: 255
description:
type: string
writeOnly: true
maxLength: 255
type:
type: string
writeOnly: true
maxLength: 3
enum_values:
type: array
items:
type: string
maxLength: 255
writeOnly: true
enum_many:
type: boolean
writeOnly: true
rel_template:
allOf:
- $ref: '#/components/schemas/Template'
writeOnly: true
field:
allOf:
- $ref: '#/components/schemas/Field'
readOnly: true
status:
type: string
readOnly: true
maxLength: 1
value:
readOnly: true
sources:
type:
- array
- 'null'
items:
type: string
maxLength: 255
writeOnly: true
directed_source:
type:
- string
- 'null'
writeOnly: true
maxLength: 255
keyword_search:
type:
- boolean
- 'null'
raw_documents:
type:
- boolean
- 'null'
securitySchemes:
knoxApiToken:
type: http
scheme: bearer