Evrim profiles API

The profiles API from Evrim — 10 operation(s) for profiles.

Operations 15

GET /prod/v0/profiles/ #
POST /prod/v0/profiles/ #
GET /prod/v0/profiles/{id}/ #
PUT /prod/v0/profiles/{id}/ #
PATCH /prod/v0/profiles/{id}/ #
DELETE /prod/v0/profiles/{id}/ #
POST /prod/v0/profiles/{profile_id}/collections/ #
POST /prod/v0/profiles/{profile_id}/created-fields/ #
GET /prod/v0/profiles/{profile_id}/latest/ #
GET /prod/v0/profiles/{profile_id}/latest/relationships/ #
GET /prod/v0/profiles/{profile_id}/reports/ #
GET /prod/v0/profiles/{profile_id}/snapshots/ #
POST /prod/v0/profiles/{profile_id}/snapshots/ #
GET /prod/v0/profiles/{profile_id}/snapshots/{snapshot_id}/ #
POST /prod/v0/profiles/{profile_id}/tag/ #

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/evrim-profiles-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

evrim-profiles-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Evrim answers Profiles 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: profiles
paths:
  /prod/v0/profiles/:
    get:
      operationId: profiles_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
      - in: query
        name: specification
        schema:
          type: string
      tags:
      - profiles
      security:
      - knoxApiToken: []
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedProfileList'
          description: ''
    post:
      operationId: profiles_create
      tags:
      - profiles
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Profile'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/Profile'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/Profile'
        required: true
      security:
      - knoxApiToken: []
      responses:
        '201':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Profile'
          description: ''
  /prod/v0/profiles/{id}/:
    get:
      operationId: profiles_retrieve
      parameters:
      - in: path
        name: id
        schema:
          type: integer
        description: A unique integer value identifying this profile.
        required: true
      tags:
      - profiles
      security:
      - knoxApiToken: []
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Profile'
          description: ''
    put:
      operationId: profiles_update
      parameters:
      - in: path
        name: id
        schema:
          type: integer
        description: A unique integer value identifying this profile.
        required: true
      tags:
      - profiles
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Profile'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/Profile'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/Profile'
        required: true
      security:
      - knoxApiToken: []
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Profile'
          description: ''
    patch:
      operationId: profiles_partial_update
      parameters:
      - in: path
        name: id
        schema:
          type: integer
        description: A unique integer value identifying this profile.
        required: true
      tags:
      - profiles
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PatchedProfile'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/PatchedProfile'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/PatchedProfile'
      security:
      - knoxApiToken: []
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Profile'
          description: ''
    delete:
      operationId: profiles_destroy
      parameters:
      - in: path
        name: id
        schema:
          type: integer
        description: A unique integer value identifying this profile.
        required: true
      tags:
      - profiles
      security:
      - knoxApiToken: []
      responses:
        '204':
          description: No response body
  /prod/v0/profiles/{profile_id}/collections/:
    post:
      operationId: profiles_collections_create
      description: Add a profile to a collection
      parameters:
      - in: path
        name: profile_id
        schema:
          type: string
          pattern: ^\d+$
        required: true
      tags:
      - profiles
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ProfileToCollection'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/ProfileToCollection'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/ProfileToCollection'
        required: true
      security:
      - knoxApiToken: []
      responses:
        '201':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProfileToCollection'
          description: ''
  /prod/v0/profiles/{profile_id}/created-fields/:
    post:
      operationId: profiles_created_fields_create
      parameters:
      - in: path
        name: profile_id
        schema:
          type: string
          pattern: ^\d+$
        required: true
      tags:
      - profiles
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreatedFieldsToProfile'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/CreatedFieldsToProfile'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/CreatedFieldsToProfile'
        required: true
      security:
      - knoxApiToken: []
      responses:
        '201':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreatedFieldsToProfile'
          description: ''
  /prod/v0/profiles/{profile_id}/latest/:
    get:
      operationId: profiles_latest_list
      description: Get the latest snapshot for a profile based on the profile id and created date
      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
      - in: path
        name: profile_id
        schema:
          type: string
          pattern: ^\d+$
        required: true
      tags:
      - profiles
      security:
      - knoxApiToken: []
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedLatestSnapshotList'
          description: ''
  /prod/v0/profiles/{profile_id}/latest/relationships/:
    get:
      operationId: profiles_latest_relationships_retrieve
      description: Get relationships for a snapshot as records for easy usage
      parameters:
      - in: path
        name: profile_id
        schema:
          type: integer
        required: true
      tags:
      - profiles
      security:
      - knoxApiToken: []
      responses:
        '200':
          description: No response body
  /prod/v0/profiles/{profile_id}/reports/:
    get:
      operationId: profiles_reports_list
      description: Get all reports associated with a profile by looking up outlines and then reports
      parameters:
      - in: path
        name: profile_id
        schema:
          type: string
          pattern: ^\d+$
        required: true
      tags:
      - profiles
      security:
      - knoxApiToken: []
      responses:
        '200':
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Report'
          description: ''
  /prod/v0/profiles/{profile_id}/snapshots/:
    get:
      operationId: profiles_snapshots_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
      - in: path
        name: profile_id
        schema:
          type: string
          pattern: ^\d+$
        required: true
      tags:
      - profiles
      security:
      - knoxApiToken: []
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedCreateProfileSnapshotList'
          description: ''
    post:
      operationId: profiles_snapshots_create
      parameters:
      - in: path
        name: profile_id
        schema:
          type: string
          pattern: ^\d+$
        required: true
      tags:
      - profiles
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateProfileSnapshot'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/CreateProfileSnapshot'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/CreateProfileSnapshot'
      security:
      - knoxApiToken: []
      responses:
        '201':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreateProfileSnapshot'
          description: ''
  /prod/v0/profiles/{profile_id}/snapshots/{snapshot_id}/:
    get:
      operationId: profiles_snapshots_retrieve
      parameters:
      - in: path
        name: profile_id
        schema:
          type: string
          pattern: ^\d+$
        required: true
      - in: path
        name: snapshot_id
        schema:
          type: string
        required: true
      tags:
      - profiles
      security:
      - knoxApiToken: []
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreateProfileSnapshot'
          description: ''
  /prod/v0/profiles/{profile_id}/tag/:
    post:
      operationId: profiles_tag_create
      description: Tag a profile
      parameters:
      - in: path
        name: profile_id
        schema:
          type: string
          pattern: ^\d+$
        required: true
      tags:
      - profiles
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TagProfile'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/TagProfile'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/TagProfile'
        required: true
      security:
      - knoxApiToken: []
      responses:
        '201':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TagProfile'
          description: ''
components:
  schemas:
    PaginatedLatestSnapshotList:
      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/LatestSnapshot'
    CreateProfileSnapshot:
      type: object
      properties:
        id:
          type: integer
          readOnly: true
        answers:
          type: array
          items:
            $ref: '#/components/schemas/Answer'
          readOnly: true
        fields:
          type: array
          items:
            $ref: '#/components/schemas/CreatedField'
          readOnly: true
        reports:
          type: array
          items:
            $ref: '#/components/schemas/Report'
          readOnly: true
      required:
      - answers
      - fields
      - id
      - reports
    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
    PatchedProfile:
      type: object
      properties:
        id:
          type: integer
          readOnly: true
        template_id:
          type: integer
          writeOnly: true
        tags:
          type: array
          items:
            $ref: '#/components/schemas/Tag'
        specification:
          type: string
          maxLength: 510
        source_map:
          writeOnly: true
        source:
          type: string
          writeOnly: true
          maxLength: 255
        template:
          allOf:
          - $ref: '#/components/schemas/Template'
          readOnly: true
        snapshots:
          type: array
          items:
            $ref: '#/components/schemas/Snapshot'
          readOnly: true
    TagProfile:
      type: object
      properties:
        tag_id:
          type: integer
          writeOnly: true
      required:
      - tag_id
    Tag:
      type: object
      properties:
        id:
          type: integer
          readOnly: true
        name:
          type: string
          maxLength: 255
        description:
          type:
          - string
          - 'null'
      required:
      - id
      - name
    Snapshot:
      type: object
      properties:
        id:
          type: integer
          readOnly: true
        status:
          type: string
          readOnly: true
          maxLength: 1
        answers:
          type: array
          items:
            $ref: '#/components/schemas/Answer'
          readOnly: true
        fields:
          type: array
          items:
            $ref: '#/components/schemas/CreatedField'
          readOnly: true
        reports:
          type: array
          items:
            $ref: '#/components/schemas/Report'
          readOnly: true
      required:
      - answers
      - fields
      - id
      - reports
      - status
    Answer:
      type: object
      properties:
        id:
          type: integer
          readOnly: true
        answer:
          readOnly: true
        question:
          type: string
          readOnly: true
          maxLength: 510
        source:
          type:
          - string
          - 'null'
          maxLength: 510
      required:
      - answer
      - id
      - question
    CreatedFieldsToProfile:
      type: object
      properties:
        field_ids:
          type: array
          items:
            type: integer
          writeOnly: true
      required:
      - field_ids
    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
    PaginatedCreateProfileSnapshotList:
      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/CreateProfileSnapshot'
    Outline:
      type: object
      properties:
        id:
          type: integer
          readOnly: true
        profile_id:
          type: integer
          writeOnly: true
        report_title:
          type: string
          writeOnly: true
          maxLength: 255
        section_titles:
          type: array
          items:
            type: string
            maxLength: 255
          writeOnly: true
        outline: {}
        perspective:
          type: string
          maxLength: 255
      required:
      - id
      - perspective
      - profile_id
      - report_title
      - section_titles
    ProfileToCollection:
      type: object
      properties:
        collection_id:
          type: integer
          writeOnly: true
      required:
      - collection_id
    PaginatedProfileList:
      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/Profile'
    Report:
      type: object
      properties:
        id:
          type: integer
          readOnly: true
        profile_id:
          type: integer
          writeOnly: true
        outline_id:
          type: integer
          writeOnly: true
        outline:
          allOf:
          - $ref: '#/components/schemas/Outline'
          readOnly: true
        report:
          readOnly: true
      required:
      - id
      - outline
      - outline_id
      - profile_id
      - report
    LatestSnapshot:
      type: object
      properties:
        specification:
          type: string
          readOnly: true
          maxLength: 255
        fields:
          type: array
          items:
            $ref: '#/components/schemas/CreatedField'
          readOnly: true
        answers:
          type: array
          items:
            $ref: '#/components/schemas/Answer'
          readOnly: true
      required:
      - answers
      - fields
      - specification
    Profile:
      type: object
      properties:
        id:
          type: integer
          readOnly: true
        template_id:
          type: integer
          writeOnly: true
        tags:
          type: array
          items:
            $ref: '#/components/schemas/Tag'
        specification:
          type: string
          maxLength: 510
        source_map:
          writeOnly: true
        source:
          type: string
          writeOnly: true
          maxLength: 255
        template:
          allOf:
          - $ref: '#/components/schemas/Template'
          readOnly: true
        snapshots:
          type: array
          items:
            $ref: '#/components/schemas/Snapshot'
          readOnly: true
      required:
      - id
      - snapshots
      - specification
      - template
      - template_id
  securitySchemes:
    knoxApiToken:
      type: http
      scheme: bearer