Evrim answers API

The answers API from Evrim — 2 operation(s) for answers.

Operations 3

GET /prod/v0/answers/ #
POST /prod/v0/answers/ #
GET /prod/v0/answers/{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-answers-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-answers-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Evrim Answers 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: answers
paths:
  /prod/v0/answers/:
    get:
      operationId: answers_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:
      - answers
      security:
      - knoxApiToken: []
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedCreateAnswerList'
          description: ''
    post:
      operationId: answers_create
      tags:
      - answers
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateAnswer'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/CreateAnswer'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/CreateAnswer'
        required: true
      security:
      - knoxApiToken: []
      responses:
        '201':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreateAnswer'
          description: ''
  /prod/v0/answers/{id}/:
    get:
      operationId: answers_retrieve
      parameters:
      - in: path
        name: id
        schema:
          type: integer
        description: A unique integer value identifying this answer.
        required: true
      tags:
      - answers
      security:
      - knoxApiToken: []
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreateAnswer'
          description: ''
components:
  schemas:
    CreateAnswer:
      type: object
      properties:
        id:
          type: integer
          readOnly: true
        status:
          type: string
          readOnly: true
          maxLength: 1
        question:
          type:
          - string
          - 'null'
        specification:
          type: string
          writeOnly: true
          maxLength: 255
        answer:
          readOnly: true
      required:
      - answer
      - id
      - specification
      - status
    PaginatedCreateAnswerList:
      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/CreateAnswer'
  securitySchemes:
    knoxApiToken:
      type: http
      scheme: bearer