> ## Documentation Index
> Fetch the complete documentation index at: https://docs.ceibo.me/llms.txt
> Use this file to discover all available pages before exploring further.

# List entry requirements

> Paginated list of entry requirements. Filterable by destination country, origin country, country group, and staleness.



## OpenAPI

````yaml GET /entry-requirements
openapi: 3.1.0
info:
  title: Ceibo API
  description: >-
    Travel platform data API: countries, cities, points of interest, walking
    tours, and entry requirements.
  version: 1.0.0
  contact:
    name: Ceibo Support
    email: support@ceibo.me
    url: https://developer.ceibo.me
servers:
  - url: https://api.ceibo.me/v1
    description: Production
security:
  - apiKey: []
paths:
  /entry-requirements:
    get:
      summary: List entry requirements
      description: >-
        Paginated list of entry requirements. Filterable by destination country,
        origin country, country group, and staleness.
      parameters:
        - name: toCountryId
          in: query
          required: false
          schema:
            type: integer
        - name: fromCountryId
          in: query
          required: false
          schema:
            type: integer
        - name: toCountryGroupId
          in: query
          required: false
          schema:
            type: integer
        - name: fromCountryGroupId
          in: query
          required: false
          schema:
            type: integer
        - name: stale
          in: query
          description: Restrict to records whose `lastVerifiedAt` is older than 6 months.
          required: false
          schema:
            type: boolean
        - name: languageId
          in: query
          description: >-
            Translate textual fields to this language id (falls back to
            default).
          required: false
          schema:
            type: integer
        - name: locale
          in: query
          description: Alternative to `languageId`; e.g. `es`, `en`.
          required: false
          schema:
            type: string
        - name: page
          in: query
          required: false
          schema:
            type: integer
            minimum: 1
            default: 1
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            minimum: 1
            maximum: 100
            default: 10
      responses:
        '200':
          description: Paginated list of entry requirements.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedEntryRequirements'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '429':
          $ref: '#/components/responses/RateLimited'
components:
  schemas:
    PaginatedEntryRequirements:
      type: object
      required:
        - data
        - meta
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/EntryRequirement'
        meta:
          $ref: '#/components/schemas/PaginationMeta'
    EntryRequirement:
      type: object
      required:
        - id
        - priority
        - customsDeclarationRequired
        - createdAt
        - updatedAt
      properties:
        id:
          type: integer
          example: 1
        fromCountryId:
          type:
            - integer
            - 'null'
          description: >-
            Origin country. `null` means the rule applies to all travelers
            (general).
        fromCountryGroupId:
          type:
            - integer
            - 'null'
        toCountryId:
          type:
            - integer
            - 'null'
        toCountryGroupId:
          type:
            - integer
            - 'null'
        priority:
          type: integer
          minimum: 0
          description: Higher = more specific. Used to resolve overlapping rules.
        documentValidity:
          anyOf:
            - $ref: '#/components/schemas/DocumentValidity'
            - type: 'null'
        proofOfFunds:
          anyOf:
            - $ref: '#/components/schemas/EnforcementLevel'
            - type: 'null'
        proofOfFundsDetails:
          type:
            - string
            - 'null'
        proofOfFundsAmountUsd:
          type:
            - number
            - 'null'
        proofOfFundsSourceUrl:
          type:
            - string
            - 'null'
        proofOfFundsAmountLocal:
          type:
            - number
            - 'null'
        proofOfFundsCurrencyId:
          type:
            - integer
            - 'null'
        returnTicket:
          anyOf:
            - $ref: '#/components/schemas/EnforcementLevel'
            - type: 'null'
        returnTicketDetails:
          type:
            - string
            - 'null'
        returnTicketSourceUrl:
          type:
            - string
            - 'null'
        healthInsurance:
          anyOf:
            - $ref: '#/components/schemas/EnforcementLevel'
            - type: 'null'
        healthInsuranceDetails:
          type:
            - string
            - 'null'
        healthInsuranceCoverageUsd:
          type:
            - number
            - 'null'
        healthInsuranceSourceUrl:
          type:
            - string
            - 'null'
        customsDeclarationRequired:
          type: boolean
        customsDeclarationDetails:
          type:
            - string
            - 'null'
        customsDeclarationUrl:
          type:
            - string
            - 'null'
        proofOfAccommodation:
          anyOf:
            - $ref: '#/components/schemas/EnforcementLevel'
            - type: 'null'
        proofOfAccommodationDetails:
          type:
            - string
            - 'null'
        proofOfAccommodationSourceUrl:
          type:
            - string
            - 'null'
        visaRequirementType:
          anyOf:
            - $ref: '#/components/schemas/VisaRequirementType'
            - type: 'null'
        maxStayDays:
          type:
            - integer
            - 'null'
          example: 90
        generalNotes:
          type:
            - string
            - 'null'
        sourceUrl:
          type:
            - string
            - 'null'
        officialWebsiteUrl:
          type:
            - string
            - 'null'
        visaApplicationUrl:
          type:
            - string
            - 'null'
        visaProcessingDays:
          type:
            - integer
            - 'null'
          minimum: 1
          maximum: 365
        lastVerifiedAt:
          type:
            - string
            - 'null'
          format: date-time
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
    PaginationMeta:
      type: object
      required:
        - page
        - limit
        - total
        - totalPages
      properties:
        page:
          type: integer
          example: 1
        limit:
          type: integer
          example: 20
        total:
          type: integer
          example: 195
        totalPages:
          type: integer
          example: 10
    Error:
      type: object
      required:
        - statusCode
        - code
        - message
        - timestamp
        - path
      properties:
        statusCode:
          type: integer
          example: 404
        code:
          type: string
          example: NOT_FOUND
        message:
          type: string
          example: Country with id 9999 not found
        timestamp:
          type: string
          format: date-time
          example: '2026-04-30T10:00:00.000Z'
        path:
          type: string
          example: /v1/countries/9999
    DocumentValidity:
      type: object
      properties:
        minimumDays:
          type: integer
          example: 180
    EnforcementLevel:
      type: string
      enum:
        - required
        - recommended
        - may_be_asked
        - not_required
      description: >-
        Captures both whether a requirement exists and how strictly it is
        enforced at the border.
    VisaRequirementType:
      type: string
      enum:
        - visa_free
        - visa_on_arrival
        - e_visa
        - visa_required
        - eta
        - not_allowed
  responses:
    Unauthorized:
      description: Missing, malformed, revoked, or unknown API key.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    RateLimited:
      description: Tier quota or burst limit exceeded.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: API key minted at developer.ceibo.me. Send on every request.

````