Evrim extract API

The extract API from Evrim — 8 operation(s) for extract.

Operations 12

GET /prod/v0/extract/command/ #
POST /prod/v0/extract/command/ #
GET /prod/v0/extract/command/{id}/ #
GET /prod/v0/extract/raw/ #
POST /prod/v0/extract/raw/ #
GET /prod/v0/extract/raw/{id}/ #
GET /prod/v0/extract/relationship/ #
POST /prod/v0/extract/relationship/ #
GET /prod/v0/extract/relationship/{id}/ #
GET /prod/v0/extract/value/ #
POST /prod/v0/extract/value/ #
GET /prod/v0/extract/value/{id}/ #

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-extract-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-extract-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Evrim answers Extract 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: extract
paths:
  /prod/v0/extract/command/:
    get:
      operationId: extract_command_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:
      - extract
      security:
      - knoxApiToken: []
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedExtractionCommandList'
          description: ''
    post:
      operationId: extract_command_create
      tags:
      - extract
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ExtractionCommand'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/ExtractionCommand'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/ExtractionCommand'
        required: true
      security:
      - knoxApiToken: []
      responses:
        '201':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ExtractionCommand'
          description: ''
  /prod/v0/extract/command/{id}/:
    get:
      operationId: extract_command_retrieve
      parameters:
      - in: path
        name: id
        schema:
          type: integer
        description: A unique integer value identifying this extraction.
        required: true
      tags:
      - extract
      security:
      - knoxApiToken: []
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ExtractionCommand'
          description: ''
  /prod/v0/extract/raw/:
    get:
      operationId: extract_raw_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:
      - extract
      security:
      - knoxApiToken: []
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedExtractionList'
          description: ''
    post:
      operationId: extract_raw_create
      tags:
      - extract
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Extraction'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/Extraction'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/Extraction'
        required: true
      security:
      - knoxApiToken: []
      responses:
        '201':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Extraction'
          description: ''
  /prod/v0/extract/raw/{id}/:
    get:
      operationId: extract_raw_retrieve
      parameters:
      - in: path
        name: id
        schema:
          type: integer
        description: A unique integer value identifying this extraction.
        required: true
      tags:
      - extract
      security:
      - knoxApiToken: []
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Extraction'
          description: ''
  /prod/v0/extract/relationship/:
    get:
      operationId: extract_relationship_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:
      - extract
      security:
      - knoxApiToken: []
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedExtractRelationshipList'
          description: ''
    post:
      operationId: extract_relationship_create
      tags:
      - extract
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ExtractRelationship'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/ExtractRelationship'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/ExtractRelationship'
        required: true
      security:
      - knoxApiToken: []
      responses:
        '201':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ExtractRelationship'
          description: ''
  /prod/v0/extract/relationship/{id}/:
    get:
      operationId: extract_relationship_retrieve
      parameters:
      - in: path
        name: id
        schema:
          type: integer
        description: A unique integer value identifying this extract relationship.
        required: true
      tags:
      - extract
      security:
      - knoxApiToken: []
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ExtractRelationship'
          description: ''
  /prod/v0/extract/value/:
    get:
      operationId: extract_value_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:
      - extract
      security:
      - knoxApiToken: []
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedExtractValueList'
          description: ''
    post:
      operationId: extract_value_create
      tags:
      - extract
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ExtractValue'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/ExtractValue'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/ExtractValue'
        required: true
      security:
      - knoxApiToken: []
      responses:
        '201':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ExtractValue'
          description: ''
  /prod/v0/extract/value/{id}/:
    get:
      operationId: extract_value_retrieve
      parameters:
      - in: path
        name: id
        schema:
          type: integer
        description: A unique integer value identifying this extract value.
        required: true
      tags:
      - extract
      security:
      - knoxApiToken: []
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ExtractValue'
          description: ''
components:
  schemas:
    ExtractRelationship:
      type: object
      properties:
        id:
          type: integer
          readOnly: true
        specification:
          type: string
          maxLength: 510
        source:
          type: string
          maxLength: 510
        relationship:
          type: string
          maxLength: 510
        target:
          type: string
          maxLength: 510
        url:
          type: string
          maxLength: 510
        extraction:
          readOnly: true
        status:
          type: string
          readOnly: true
          maxLength: 1
      required:
      - extraction
      - id
      - relationship
      - source
      - specification
      - status
      - target
      - url
    PaginatedExtractionCommandList:
      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/ExtractionCommand'
    ExtractValue:
      type: object
      properties:
        id:
          type: integer
          readOnly: true
        status:
          type: string
          readOnly: true
          maxLength: 1
        name:
          type: string
          maxLength: 510
        type:
          type: string
          maxLength: 510
        description:
          type: string
          maxLength: 510
        specification:
          type: string
          maxLength: 510
        rerank:
          type: boolean
          default: true
        source:
          type: string
          maxLength: 510
        raw_documents:
          type: boolean
          default: false
        keyword_search:
          type: boolean
          default: true
        urls:
          type:
          - array
          - 'null'
          items:
            type: string
            maxLength: 510
        extraction:
          readOnly: true
      required:
      - description
      - extraction
      - id
      - name
      - source
      - specification
      - status
      - type
    PaginatedExtractRelationshipList:
      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/ExtractRelationship'
    Extraction:
      type: object
      properties:
        id:
          type: integer
          readOnly: true
        query:
          type: string
          maxLength: 510
        source:
          type: string
          maxLength: 510
        extraction:
          readOnly: true
        status:
          type: string
          readOnly: true
          maxLength: 1
        error:
          type: string
          readOnly: true
          maxLength: 1000
      required:
      - error
      - extraction
      - id
      - query
      - source
      - status
    PaginatedExtractionList:
      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/Extraction'
    PaginatedExtractValueList:
      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/ExtractValue'
    ExtractionCommand:
      type: object
      properties:
        id:
          type: integer
          readOnly: true
        query:
          type: string
          maxLength: 510
        extraction:
          readOnly: true
        status:
          type: string
          readOnly: true
          maxLength: 1
        error:
          type: string
          readOnly: true
          maxLength: 1000
      required:
      - error
      - extraction
      - id
      - query
      - status
  securitySchemes:
    knoxApiToken:
      type: http
      scheme: bearer